|
|
|
|
Menu |
|
|
Home |
| |
|
Discussions |
| |
|
Tools |
| |
|
Affiliates |
| |
|
Content |
| |
|
Info |
| | |
|
|
|
|
|
User Info |
|
Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9144
People Online:
Visitors: 158
Members: 0
Total: 158
|
|
|
|
|
|
Full disclosure |
|
|
|
|
|
|
|
|
|
IT Security and Insecurity Portal |
|
|
help me |
|
Posted: Sun Sep 05, 2010 5:17 pm |
|
|
sweatzie |
Beginner |
|
|
Joined: Jul 30, 2010 |
Posts: 4 |
|
|
|
|
|
|
|
i want to send sms as much as a hundred thousand more to somebody,
looking for some ideas to make boom sms,
help me for some ideas |
|
|
|
|
|
|
|
|
Posted: Mon Sep 06, 2010 2:09 am |
|
|
tsabitah |
Valuable expert |
|
|
Joined: Jul 07, 2010 |
Posts: 328 |
Location: surabaya |
|
|
|
|
|
|
meant to send spam via sms mobile media
already widely available on the net
if sent via pc
visit the forum nowsms
nowsms downloaded from www.nowsms.com
install and connect your modem or mobile phone
pairs webserver on localhost
Create a file send.php
Code: | <?php
function SendSMS($phoneNoRecip, $msgText, $SMSCRoute)
{
$fp = fsockopen("127.0.0.1", 8800, $errno, $errstr);
if (!$fp) {
echo "errno: $errno \n";
echo "errstr: $errstr\n";
return $result;
}
fwrite($fp, "GET /?Phone=" . rawurlencode($phoneNoRecip) . "&Text=" . rawurlencode($msgText) . "&ReceiptRequested=YES&SMSCRoute=" . rawurlencode($SMSCRoute) . " HTTP/1.0\n");
if ($username != "") {
$auth = $username . ":" . $password;
$auth = base64_encode($auth);
fwrite($fp, "Authorization: Basic " . $auth . "\n");
}
fwrite($fp, "\n");
$res = "";
while (!feof($fp)) {
$res .= fread($fp, 1);
}
fclose($fp);
return $res;
}
$text = "please do not bother me, I'm very busy";
$originatorplus = "+15615556";
for ($i = 0; $i < 100; $i++) {
SendSMS($originatorplus, $text, $id, $useridx);
echo "SendSMS($originatorplus,$text,$id,$useridx)<br>";
}
?>
|
and run http://127.0.0.1/send.php |
|
|
|
|
|
www.waraxe.us Forum Index -> Newbies corner
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
All times are GMT
Page 1 of 1
|
|
|
Powered by phpBB © 2001-2008 phpBB Group
|
|
|
|
|
|
|