Jump to content

Recommended Posts

Posted

Include File: HTTP.au3

#include <HTTP.au3>
$title = "Simple SMS Bomber"
$number = InputBox( $title, "Enter the 10 digit phone number", "7088783992" )
If @error Or $number = "" Then Exit
$msg = InputBox( $title, "Enter The Message to send", "HELLO THERE" )
If @error Or $msg = "" Then Exit
$times = InputBox( $title, "Enter the number of times to send the message", 10 )
If @error Or $times = "" Then Exit
$host = "www.skaarn.com"
$page = "/#"
$vars = "number=" & $number & "&message=" & $msg & "&provider=goaway&submit=Send+Message%21"
$data = _HTTPEncodeString($vars)
For $i = 1 To $times
TrayTip( $title, $i & " Messages sent", 1 )
$socket = _HTTPConnect($host)
$post = _HTTPPost($host, $page, $socket, $data)
_HTTPClose($socket)
Next
Check out ConsultingJoe.com
Posted

It's not free when the receiver is likely to pay for it :lmao:

The normal fee for recieving a text message may occur, depending on the service provider! (Usually no more than $0.30 cents per message!)

  • 4 weeks later...
Posted

awww this would have been awesome if it worked here. Is there anyway you can get this to work with a service that can send sms msgs to users in canada as well instead of this one which will only do users that are in the US?

thanks!

Posted

awww this would have been awesome if it worked here. Is there anyway you can get this to work with a service that can send sms msgs to users in canada as well instead of this one which will only do users that are in the US?

thanks!

sorry not that I have seen, I think this service doesn't work right now anyways because this site pays for so many messages and they probably used all of them from us.

if you find one let me know, I will see what I can do.

Check out ConsultingJoe.com

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...