File transfer
Introduction
Linux
Folders with write permissions
/tmp/
/dev/shm/nc
# Listening for the file to be transfered
nc -nlvp 4444 > file
# Transfer the file
nc -w 3 <DST_IP> 4444 < file scp
# Download a file
scp [-r] <USER>@<IP>:<SRC_PATH> <DST_PATH>
# Upload a file
scp <SRC_PATH> <USER>@<IP>:<DST_PATH> base64
Windows
Folders with write permissions
Certutil
Powershell
SMB
Last updated