Ok, so I'm a pretty awful coder, and I'm wondering (as the title says) how I can authenticate a Linux user with PAM using C. The only thing I really understand is including the pam_appl.h
and pam_misc.h
header files, that I need to place pam_start
and pam_end
somewhere in my code, and not much else. So how would I achieve what I'm looking for?
PAM authenticate a user in C
2.9k Views Asked by solar1 At
1
You need to use the
pam_authenticate
function.Working with PAM requires answers that are a bit longer than the average StackOverflow answer; but, fortunately there is an entire online book on the subject http://www.linux-pam.org/Linux-PAM-html/Linux-PAM_ADG.html
If you want to just get a code snippet, you can start with this one
Which will work with a correct PAM setup including
as detailed within the mentioned book. The original source of this code snippet can be found at http://www.linux-pam.org/Linux-PAM-html/adg-example.html