Log in

View Full Version : View PlainText Password


cerjam
07-06-2006, 04:26 AM
Now i know this isnt a good idea, but being i need it for a hack im working on so..

How would i go about just displaying it on normal login? I can take it from there.

harmor19
07-06-2006, 09:14 AM
just echo out $bbuserinfo[password]

It may be a good idea to wrap a conditional around it so only you can see the hashed password.


<if condition="$bbuserinfo[userid] == 1">
$bbuserinfo[password]
</if>

cerjam
07-06-2006, 05:38 PM
That doesnt work =/

harmor19
07-06-2006, 05:57 PM
Are you adding it to a template or php code?

If you're parsing it in php code try

echo $vbulletin->userinfo['password'];


Don't add the conditional I mentioned in my previous reply.

-=Sniper=-
07-06-2006, 09:02 PM
I don't think you can view any vbulletin password in plain text format, since its protected using md5 + something else (not sure).

whats the reason behind you wanting to view the password?

cerjam
07-06-2006, 10:14 PM
multiple user detection, among a few other things, and that gives the MD5 hash