> Yeah, I feel kinda silly asking this, but how do you decrypt passwords and > such? I'm trying to add it to finger, because, I can't just simply look it > up in the pfiles, heh. I would add the -DNOCRYPT to my make file, but that > would cause all the passwords to be screwy, so I'd rather just find a way to > decrypt them and send them to a character online.
There isn't any convenient way to "decrypt" them (at least if talking about passwords made by crypt() function), basically you have to either know the password beforehand or bruteforce each and every possible character/letter combo... which takes ages. --- M.S.

