I am writing a PAM module which writes the username/password in a file for further transaction by an other application. I only saw the PAM_AUTHTOK item but I'm not sure from which type is it. Anybody knows that or another way to get the cleartext password?
|
Have you read the Linux-PAM Application Developer's Guide? On a RHEL-type system this will be in Take a look at the Getting PAM items section, which documents the
|
|||
|
|
|
How about just printing the contents of PAM_AUTHTOK when you're debugging? To make a meaningful use of it you must have some sort of a contract or convention between modules anyway. By the way: there is a difference between keeping a cleartext password in memory and erasing it from there as soon as possible (or better: locking that region in RAM, or having encrypted swap), and writing that cleartext password to disk. The latter is just sooo insecure, don't do that. |
|||
|
|
use_first_passoption on many PAM modules to work). – larsks Oct 11 '11 at 13:36