Tagged Questions

6
votes
1answer
466 views

PAM Authentication for a Legacy Application

I have a legacy app that receives a username/password request asynchronously over the wire. Since I already have the username and password stored as variables, what would be the best way to ...
4
votes
2answers
134 views

C program to call pam_passwdqc.so and report password strength, pass/fail

Is it possible (and where would I find the interface documentation) to write a simple C program to use pam_passwdqc.so to determine if a potential password will be strong enough to pass muster under ...
4
votes
3answers
195 views

stat() function doesnt seem to be working in test PAM module

I'm trying to write a PAM module. The PAM module creates a directory on first log in. Very similar to the pam_mkhomedir. Here is the code. PAM_EXTERN int pam_sm_open_session (pam_handle_t *pamh, ...
2
votes
3answers
294 views

Different access levels with PAM

Currently I have a graphical application that has two levels of access, operator and administrator. The login and authentication is all homebrewed and I'd like to switch the application to use PAM ...
1
vote
1answer
359 views

Simple PAM example

I want to develop an authentication module using PAM, but I'm having trouble getting a simple example working. For starters, I would like to do a simple SSH login system where if the user enters the ...
0
votes
1answer
46 views

PAM: how do I change someone else's password?

What PAM call do I have to make to reset a user's password? I cannot figure it out. Background: I'm working on an embedded linux device. Customers install this device, and create user accounts. ...
0
votes
2answers
75 views

Keeping a native (C) pointer into an object instance — and cleaning it up afterwards

For one of my projects, I want to implement a complete PAM implementation for Java (application side and module side as well). Right now, I'm on the application side. I took jpam as a base but I ...
0
votes
2answers
96 views

How to retrieve user password in cleartext using PAM?

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 ...
0
votes
1answer
92 views

how to get current PAM user in pam_ldap?

how can I get the user name that auth by pam_ldap in C/c++? I found "pam_get_user" API, but how can I get the pam_handle_t for this function? Thanks Dma
0
votes
0answers
79 views

PAM - find the control flag (required, sufficient)

I'm patching an OTP module (yubico_pam) and I'm trying to access the control-flag selected by the administrator (e.g. required, sufficient, etc). Any idea? Is this feasible at all (without parsing ...