File Transfer
Integrity check
HTTP/PHP
HTTP Server
Download
wget <url>
curl -s <url> -o <output>
(New-Object Net.WebClient).DownloadString('<url>') > <output>
certutil -urlcache -split -f <url> <output>
SMB
SMB Server
smbserver.py <share> $(pwd) -smb2support [-username user -password pass]
Download
smbclient -U 'user[%pass]' //<ip>/<share> -c "get <file> <output>"
# mount smb Share to drive
net use z: \\<ip>\<share> [/user:user pass]
# copy from share
copy \\<ip>\<share>\<file> <output>
Netcat
Bash
Last updated