From what I can tell when you submit your password on the login form from vbulletin it will md5 the password value right in the html form, before it gets passed to the php scripts.
Is there anyway to access the pre-md5 so I can get the plaintext value in php?
For example, to get the username submitted by the form I can use:
PHP Code:
$vbulletin->GPC['vb_login_username'];
So I tried
PHP Code:
$vbulletin->GPC['vb_login_password'];
but it never returns anything
Is there a way to get the plaintext password submitted?
Thank you in advance,
Jordan