Nope its not the failed login hack but that inspired it
I will make the admin part of this hack in the super near future, but you can start the logging now.
create the following table
CREATE TABLE userlog (
userlogid int(10) unsigned NOT NULL auto_increment,
userid int(10) unsigned NOT NULL default '0',
ip varchar(20) NOT NULL default '',
atime int(10) unsigned NOT NULL default '0',
KEY id (userlogid)
) TYPE=MyISAM;
open /admin/sessions.php the following code will need to be placed somewhere in that file, maybe even multiple times, i'm still trying to work out where to put it o_O
PHP Code:
//the creation of a new session lets log the IP and userid as we may need to trace them :D
if($bbuserinfo['userid']) {
//they have a userid so there logged in
$DB_site->query("INSERT INTO userlog (userlogid, userid, ip, atime) VALUES (NULL, '$bbuserinfo[userid]', '$session[host]', '".time()."')");
}