├── ftool-image.png
├── ftool-image2.png
├── README.md
└── ftool.py
/ftool-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Nafsun/ftool/HEAD/ftool-image.png
--------------------------------------------------------------------------------
/ftool-image2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Nafsun/ftool/HEAD/ftool-image2.png
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # ftool
2 | This is a hacking script created with python that you can use to hack into any Facebook Account. You just have to input the users email address and the cracking will begins.
3 |
4 |
5 | Here is the program:
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ftool.py:
--------------------------------------------------------------------------------
1 | import time
2 | import subprocess
3 | import random
4 |
5 | subprocess.run("color a", shell=True)
6 | subprocess.run("mode con cols=100 lines=30", shell=True)
7 |
8 | print("==============================================================")
9 | print("[+] Created By Muhammad Aliyu")
10 | print("[+] Hack into Facebook account")
11 | print("[+] This program is not created to harm anyone")
12 | print("[+] It is created for fun")
13 | print("[+] I will not be responsible for any harm you cost script kiddies")
14 | print("==============================================================")
15 | print("")
16 | email = input("Enter your Facebook Email:")
17 | time.sleep(2)
18 | print("")
19 | print("[-] Entering Facebook Server.............")
20 | time.sleep(2)
21 | print("")
22 | print("[-] Inserting", email, "to the login page")
23 | time.sleep(3)
24 | print("")
25 | print("[-] Creating a backdoor in there server.........")
26 | print("[-] Pls be patient")
27 | time.sleep(2)
28 | print("")
29 | print("[-] Making my way into their server...........")
30 | print("[-] Bruteforcing server starting soon........")
31 | print("[-] Creating a meterpreter in", email , "Facebook Account.........")
32 | time.sleep(4)
33 | print("")
34 | print("[-] Hacking will start in 5 seconds")
35 | time.sleep(5)
36 | print("")
37 | print("[-] Pls wait hacking into the facebook profile")
38 | time.sleep(2)
39 | print("")
40 |
41 | while True:
42 | time.sleep(1)
43 | print("Email:__[", email ,"]__Password:__[", random.randrange(10000000, 100000000000) , "]__Trying__Random_Passcode")
44 |
--------------------------------------------------------------------------------