ok, today i helped
ptbyjason to take control again over his hacked board.
https://vborg.vbsupport.ru/showthrea...threadid=35339
while playing, i discovered a way to add myself as admin to any VB board, if i'm able to call the path from the server. FireFly, i want to email you the php file i made. email me so i can send you the file and you can look at it.
the solution is to change the permissions for the admin folder in a way that if any file is called from outside of the server, to display a show_nopermission error message.
UPDATE:
in
/admin/config.php add this code, at the top:
PHP Code:
if(!strstr("$_SERVER[PATH_TRANSLATED]", "$_SERVER[DOCUMENT_ROOT]")) {
die();
}
that should prevent to run a script from outside your server. thanks PPN.