Created
July 28, 2016 18:36
-
-
Save gelias/d6b3edee1302ca7d589c5d4eebf848c7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| host=<URL_HOST> | |
| port=<PORT> | |
| cmd="GET http://<URL_DESTINY> HTTP/1.1 Host: www.<URL_HOST>" | |
| ( echo open ${host} ${port} | |
| sleep 1 | |
| echo -e "\r" | |
| sleep 1 | |
| echo ${cmd} | |
| sleep 1 | |
| echo -e "\r" | |
| sleep 1 | |
| echo exit ) | telnet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment