Archive for 'General' Category

Dockerfile for custom Blue Team container

By technese - Last updated: Monday, November 11, 2024

To build a Docker container designed for a complete Security Operations Center (SOC) blue team defense cycle, based on a Kali Linux image, you can use the following Dockerfile. This setup focuses on installing tools widely used for threat detection, incident response, and defense. The tools are selected to cover different aspects of the SOC […]

Dockerfile for custom Red Team container

By technese - Last updated: Monday, November 11, 2024

To update and install the best Kali Linux tools for a complete penetration testing (Red Team) attack cycle in a Docker container, you can follow these steps. This setup ensures the tools are installed for each phase: reconnaissance, scanning, exploitation, post-exploitation, and reporting. This Dockerfile installs essential tools across each phase of the attack cycle […]

Kali Docker tools install

By technese - Last updated: Monday, November 11, 2024

apt update && apt install -y \nmap \nikto \theharvester \dnsenum \dnsmap \maltego \recon-ng \openvas \wapiti \wpscan \metasploit-framework \beef-xss \sqlmap \aircrack-ng \kismet \reaver \john \hydra \hashcat \medusa \autopsy \sleuthkit \binwalk \burpsuite \zaproxy \wireshark \ettercap-text-only \mitmproxy \empire \responder \faraday \set \radare2 \ghidra \weevely \netcat-traditional 1.10-47 \proxychains4 \tor \macchanger Source: https://www.kali.org/tools

Parrot Security: tool categories

By technese - Last updated: Monday, November 11, 2024

parrot-tools-automotive/parrot6 6.2.0 allPentest tools for vehicle hacking parrot-tools-cloud/parrot6 6.2.0 amd64Pentest tools for cloud environments parrot-tools-forensics/parrot6 6.2.0 allPentest tools for forensics parrot-tools-full/parrot6 6.2.0 amd64Metapackage that installs a full penetration testing environment parrot-tools-infogathering/parrot6 6.2.0 allPentest tools for information gathering parrot-tools-maintain/parrot6 6.2.0 allPentest tools for maintaining access parrot-tools-password/parrot6 6.2.0 allPentest tools for password attack parrot-tools-postexploit/parrot6 6.2.0 allPentest tools […]

Configure a separate PHP-FPM pool for each vhost. This allows each vhost to have its own isolated PHP-FPM process, which communicates over its own unique socket

By technese - Last updated: Monday, November 11, 2024

To create a separate FastCGI socket for each virtual host (vhost), you’ll typically need to configure a separate PHP-FPM pool for each vhost. This allows each vhost to have its own isolated PHP-FPM process, which communicates over its own unique socket. Here’s how you can set it up: 1. Configure Separate PHP-FPM Pools PHP-FPM allows […]

Disable monitor blanking on Debian with LXDE for remote access using NoMachine and VNC

By technese - Last updated: Sunday, November 11, 2018

Edit file: /etc/xdg/lxsession/LXDE/autostart Remove: @xscreensaver -no-splash Append: @xset s noblank @xset s off @xset -dpms Sources: https://raspberrypi.stackexchange.com/questions/752/how-do-i-prevent-the-screen-from-going-blank

Patch vSphere 5.5 Updates

By technese - Last updated: Saturday, September 22, 2018

https://kb.vmware.com/s/article/2008939 (OLD: http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2008939) http://www.v-front.de/2014/09/vmware-releases-vsphere-55-update-2.html

Search for string in file system in Linux

By technese - Last updated: Thursday, October 22, 2015

Search for the string ‘root’ in the entire filesystem Source: http://www.cyberciti.biz/faq/howto-search-find-file-for-text-string

Shrink qemu qcow2 files

By technese - Last updated: Thursday, October 22, 2015

Excerpt from source: Windows Guest 1.Delete all unnecessary files, empty recycle bin 2.Defragment drive (you might need to do this several times, until you see it “compacted” well) 3.Use sdelete to zero free disk space. Please note that this operation will cause that all drive free space will be filled by zero, so the virtual […]

Find files larger than 50 megabytes in Linux

By technese - Last updated: Thursday, October 22, 2015

Find files larger than 50 megabytes $ find . -type f -size +50000k -exec ls -lh {} \; | awk ‘{ print $9 “: ” $5 }’ Reference: http://www.cyberciti.biz/faq/find-large-files-linux