Linux
Wget
wget http://192.168.1.5/linpeas.sh -o linpeas.shcURL
curl http://192.168.1.5/hello.txt -o hello.txtNetcat
Sender
nc -lvp 1234 < test.txtReceiver
nc -nv 127.0.0.1 1234 > test.txtSCP
Copies files between two hosts over SSH
Copy local file to remote system -
scp file.txt [email protected]:/remote/directoryCopy remote file to local system -
scp [email protected]:/remote/file.txt /local/directoryImprove scp performance by using blowfish
scp -c blowfish [email protected]:/remote/directoryLast updated