Can someone help with this.
I had a look at the guys script, I cant find any documention to help, so its resorting to not loading VB core.
PHP Code:
db connect
$username = filter_var($_GET['username'], FILTER_SANITIZE_STRING);
$password = filter_var($_GET['password'], FILTER_SANITIZE_STRING);
$value = mysql_fetch_array(mysql_query("SELECT * FROM vb_user WHERE username ='".$username."'"), 0);
$pass = $value['password'];
$vb_hash = md5($password . $value['salt']);
if ($vb_hash==$pass)
{
check subscription.....
}
The pass and hash dont match, whats the new method?
Thanks