Skip to content

Instantly share code, notes, and snippets.

@devhug
Created September 19, 2021 18:49
Show Gist options
  • Save devhug/409c28aa5941e6f625f13a647d80ed63 to your computer and use it in GitHub Desktop.
Save devhug/409c28aa5941e6f625f13a647d80ed63 to your computer and use it in GitHub Desktop.
#!/bin/bash
while true
do
printf 'GET /?file=127.0.0.1 HTTP/1.1\r\n'\
'Host: redacted.com\r\n'\
'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0\r\n'\
'Accept: */*\r\n'\
'Accept-Language: en-US,en;q=0.5\r\n'\
'Accept-Encoding: gzip, deflate\r\n'\
'X-CF-APP-INSTANCE: xxx:1\r\n'\
'Connection: close\r\n'\
'\r\n'\
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment