packetpunks


SUBMITTED BY: Guest

DATE: Aug. 22, 2013, 5:47 a.m.

FORMAT: Text only

SIZE: 1.8 kB

HITS: 1463

  1. index.php code
  2. ---------------------------
  3. <tr>
  4. <td valign="top" class="text">
  5. <p><span class="title">Anonymous Mailer + Flooder - By ur name</span></p>
  6. <p>
  7. <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>
  8. <form action="mailed.php" method="post">
  9. Mail To: <input name="mailto" class='input_login' type="text" /><br>
  10. From: <input name="from" class='input_login' type="text" /> <br>
  11. Subject: <input name="subject" class='input_login' type="text" /><br>
  12. Body: <textarea name='body' class='input_body' rows='5' cols='55'></textarea><br>
  13. No of mails to send: <input name="number" class='input_login' type="number" value="1"/><br>
  14. <input type="submit" class='input_login' value="Mail" />
  15. </form>
  16. <p>
  17. mailed.php
  18. ----------------------------------
  19. <tr>
  20. <td valign="top" class="text">
  21. <p><span class="title">Anonymous Mailer + Bomber - By ur name</span></p><?php
  22. $mailto = $_POST['mailto'];
  23. $subject = $_POST['subject'];
  24. $body = $_POST['body'];
  25. $from = $_POST['from'];
  26. $number= $_POST['number'];
  27. if($number!=0){
  28. $hack = 1;
  29. while($hack <= $number && $hack <=20){
  30. mail("$mailto","$subject","$body\n","From: $from\n");
  31. $hack++;}
  32. $hack--;
  33. echo "<p>Mailed succesfully to <b>$mailto</b>, <b>$hack</b> times, just remember this script is made for testing purposes only.<br><p>";
  34. }
  35. else
  36. echo "<p>Mailed succesfully to <b>$mailto</b>, <b>$number</b> times, just remember this script is made for testing purposes only.<br><p>";
  37. ?>

comments powered by Disqus