Common services I start for data exfiltration, hosting payloads, or anonymizing traffic.
The following are common useful services that I frequently use for data exfiltration, hosting payloads, or anonymizing traffic.
SSH
# Start serviceservice ssh start# Confirm withnetstat -antp | grep sshdHTTP (Apache Web Server)
# Start serviceservice apache2 start# Confirm by checking http://127.0.0.1 in your browserPostgreSQL
# Start serviceservice postgresql startTOR
# Anonymize traffic through the onion networkservice tor startMetasploit Database
# Initialize the databasemsfdb initservice postgresql startNFS (Network File System)
# Useful for creating shared folders for exfiltrationservice nfs-kernel-server startSamba (SMB)
# Share files with Windows targetsservice smbd startI usually run these after a fresh install of Kali Linux, Parrot OS, etc. To make them persistent:
# To start the above services persistently at bootsystemctl enable sshsystemctl enable apache2systemctl enable postgresqlsystemctl enable torsystemctl enable nfs-kernel-serversystemctl enable smbd



