Hey guys,
I'm registering users in the DB from our own application when the user chooses to activate their forum account.
What I need, is an either redirection page to login or a way to POST via jQuery to login the user with their username and password hash.
I tried using...
Code:
jQuery.post("http://forum..com/auth/login", { 'vb_login_username': log, 'password': '', 'vb_login_md5password': pwd, 'vb_login_md5password_utf': pwd, 'url': "aHR0cDovL2ZvcnVtLmdhbWluZ2dyaWRzLmNvbQ==" });
setTimeout(function(){
window.open("http://forum..com/");
}, 1000);
The Password hash I'm sending is not with any salt; just the MD5 of the password itself. I did add the salt when inserting into the DB, so logging in works fine.