-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBruh.php
179 lines (174 loc) · 4.05 KB
/
Bruh.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!--
###############################
* CREATED BY NetSecNow *
* xNetSecNowx *
###############################
-->
<?php
if (isset($_POST['ajax'])) {
$to = $_POST['to'];
$subject = $_POST['sub'];
$msg = $_POST['msg'];
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
$headers .= "From: ".$_POST['name']."<".$_POST['from'].">";
$send = mail($to,$subject,$msg,$headers);
if ($send) {
echo "<p id='success'>✔️ $to</p>";
}else{
echo "<p id='error'>❌ $to</p>";
}
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Roboto" rel="stylesheet">
<link rel="icon" href="https://image.ibb.co/mZSaWK/AE_Hackers2.png">
<title>Email Spoofer - NetSecNow</title>
<style>
body{
margin: 0;
padding: 0;
background-color: #080808;
}
::placeholder {
color: red;
opacity: .9;
font-size: 15px!important;
}
.main{
max-width: 768px;
margin: 0 auto;
}
#title{
color: lime;
text-shadow: 0 0 20px lime;
text-align: center;
font-family: Montserrat;
}
input[type="text"]{
background-color: #000;
box-shadow: 0 0 11px 0px lime;
height: 40px;
width: 47%;
border: none;
border-radius: 4px;
padding: 15px;
margin: 1%;
box-sizing: border-box;
outline: none;
transition: .5s ease-in;
color: red;
font-family: Montserrat;
font-size: 14px;
}
input[type="text"]:hover{
box-shadow: 0 0 11px 0px red;
}
#sub{
width: 96.5%;
}
textarea{
background-color: #000;
box-shadow: 0 0 11px 0px lime;
height: 300px;
width: 47%;
max-width: 49%;
border: none;
border-radius: 4px;
padding: 15px;
margin: 1%;
box-sizing: border-box;
outline: none;
transition: .5s ease-in;
color: red;
font-family: Montserrat;
font-size: 14px;
}
textarea:hover{
box-shadow: 0 0 11px 0px red;
}
#btn{
background-color: #000;
box-shadow: 0 0 11px 0px lime;
width: 96.5%;
height: 40px;
margin-left: 5px;
margin-bottom: 40px;
color: lime;
border: none;
border-radius: 4px;
font-family: Montserrat;
font-size: 18px;
font-weight: bold;
letter-spacing: 1px;
box-sizing: border-box;
outline: none;
transition: .5s ease-in;
cursor: pointer;
}
#btn:hover{
color: red;
}
#success{
font-family: Montserrat;
color: green;
}
#error{
font-family: Montserrat;
color: red;
}
</style>
</head>
<body>
<form action="" method="post">
<div class="main" style="margin-top: 100px;">
<h1 id="title">Email Spoofer - NetSecNow</h1>
<div>
<input type="text" name="from" id="from" placeholder="From Email">
<input type="text" name="name" id="name" placeholder="From Name">
</div><br>
<div>
<input type="text" name="sub" id="sub" placeholder="Subject">
</div><br>
<div>
<textarea name="msg" id="msg" placeholder="Message Text or HTML code"></textarea>
<textarea name="to" id="to" placeholder="Mailist"></textarea>
</div>
<div><br><br>
<button id="btn" onclick="return false">SEND</button>
</div>
<div id="result"></div>
</div>
</form>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#btn").on('click',function(){
var mailist = $("#to").val().split("\n");
var tmailist = mailist.length;
for (var current = 0; current < tmailist; current++) {
var from = $("#from").val();
var name = $("#name").val();
var sub = $("#sub").val();
var msg = $("#msg").val();
var to = mailist[current];
var data = "ajax=1&from=" + from + "&name=" + name + "&sub=" + sub + "&msg=" + msg + "&to=" + to;
$.ajax({
type : 'POST',
data: data,
success: function(data) {
$("#result").append(data);
}
});
}
});
});
</script>
</body>
</html>