get paid to paste

mail soof

index.php code
---------------------------

        <tr> 
          <td valign="top" class="text"> 
            <p><span class="title">Anonymous Mailer + Flooder - By ur name</span></p>
<p>
<b>(No spam, or any other innapropriate stuff) - For Testing Purposes Only. You are yourself responsible for your actions.<br>Maximum flooding of 20 in single attempt<br>
<form action="mailed.php" method="post"> 
Mail To: <input name="mailto" class='input_login' type="text" /><br>
From: <input name="from" class='input_login' type="text" /> <br>
Subject: <input name="subject" class='input_login' type="text" /><br>
Body: <textarea name='body' class='input_body' rows='5' cols='55'></textarea><br>
No of mails to send: <input name="number" class='input_login' type="number"  value="1"/><br>
<input type="submit" class='input_login' value="Mail" />
</form>
<p>

mailed.php
----------------------------------

        <tr> 
          <td valign="top" class="text"> 
            <p><span class="title">Anonymous Mailer + Bomber - By ur name</span></p><?php
$mailto = $_POST['mailto'];
$subject = $_POST['subject'];
$body = $_POST['body'];
$from = $_POST['from'];
$number= $_POST['number'];
if($number!=0){
$hack = 1;
while($hack <= $number && $hack <=20){
mail("$mailto","$subject","$body\n","From: $from\n");  
$hack++;}
$hack--;
echo "<p>Mailed succesfully to <b>$mailto</b>, <b>$hack</b> times, just remember this script is made for testing purposes only.<br><p>";
}
else
echo "<p>Mailed succesfully to <b>$mailto</b>, <b>$number</b> times, just remember this script is made for testing purposes only.<br><p>";
?>

Pasted: Aug 10, 2010, 11:49:40 am
Views: 569