Tagged Questions

5
votes
1answer
413 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
3answers
187 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, ...
4
votes
4answers
2k views

PHP/PAM to change user password?

Are there any working packages to change a linux user passwords using PHP? I've tried using PECL:PAM but theres an error when it tries to change the password. Edit: PHP code: echo ...
2
votes
2answers
61 views

GNU Autotools: install binaries into /bin, /sbin, /usr/bin and /usr/sbin, interactions with --prefix and DESTDIR

Most packages using autotools are user-level utilities or at least high-enough level to be completely under /usr, or low enough to be entirely below /usr. I'm writing a package that would need to ...
2
votes
3answers
335 views

How can I add custom two-factor authentication with C++, Pam & Ubuntu?

I am looking to add my own 2-factor authentication to my ubuntu linux server with c++. I am going to have my asterisk box call my cell phone with a unique ID, which must be entered at the linux login ...
2
votes
1answer
656 views

OpenID PAM module

I am looking for a PAM module that can use OpenID to do the authentication. My idea is that I want to logon my Linux box using my gmail account and password. I found there is a open source project ...
2
votes
2answers
230 views

Authenticate user in linux with python 3

I wrote the program that would need to authenticate users using their Linux usernames and passwords. I think it should do with PAM. I have tried searching from google PAM module for python3, but I did ...
2
votes
3answers
504 views

Linux PAM module in Java

I do have a custom authentication mechanism which is written in Java. I was wondering what would be the best way to implement a Linux PAM module without rewriting the code in C? I am aware of this ...
2
votes
1answer
270 views

Using pam_python in a script running with mod_python

I would like to develop a web interface to allow users of a Linux system to do certain tasks related to their account. I decided to write the backend of the site using Python and mod_python on Apache. ...
2
votes
3answers
281 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
321 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 ...
1
vote
2answers
613 views

how to create a pam module?

Can anyone tell me about this... I want to create a pam module similar to the login module in /etc/pam.d
1
vote
2answers
1k views

Hudson fails to use unix user/group to do authentication

I'm trying to use unix user/group database as security realm of hudson. The linux server is using NIS for user management. My account could login the hudson server via ssh. And the hudson server is ...
1
vote
3answers
663 views

Escalating privileges on linux programmatically

I am creating a graphical installer that should run on Linux. Installing should consist of copying files to some places in /usr. Currently the installer is written in Python. How can I escalate the ...
0
votes
0answers
10 views

Can't su root after editing PAM confiugration on Rackspace Linux box [migrated]

I've just hosed a system. Working on pam-ldap on an Ubuntu box, I've run pam-auth-update and told it to override local modifications (which had previously allowed for sudo su, but I was having issues ...
0
votes
2answers
39 views

Writing PAM Module that Will Read Password From File and Log the User In

I am trying to write a pam module that will read password from a file then let the user log in without entering password. [EDIT: File will be stored in a external device. (Trying to satisfy ...
0
votes
1answer
52 views

Know the username of a user trying to logged

I've a debian system, when a user try to login, a pam module exec a bash script as root. I need this script to know who is trying to login. But the user isn't already connected so basic command as ...
0
votes
2answers
20 views

Authentication using PAM in Linux. Why it may fail running from some users?

I have written a simple application to authenticate user using PAM the common way: pam_start(), pam_authenticate() + my own conversation function + pam_end(). If application is run under the user ...
0
votes
1answer
107 views

How are variables passed through the PAM authentication system

If application A calls a PAM service "myapp", and the PAM service "myapp" is configured to use the pam module pam_exec.so (auth required pam_exec.so myscript) to call an external shell script: Q: How ...
0
votes
1answer
422 views

Custom PAM config: How can I pass username/password parameters to an pam_exec.so module?

I'm using openvpn, a PAM aware app. It has the following useful documentation: For example: plugin openvpn-auth-pam.so "login login USERNAME password PASSWORD" tells auth-pam to (a) use the ...
0
votes
0answers
76 views

PAM authentication using a hashed password

I would like to authenticate a user for which I have their username and hashed password. Is this possible using PAM? Do I need to write my own PAM module? I have the freedom to select any hashing ...
0
votes
0answers
93 views

How to configure pam in linux such that the login id and password should not be same?

How to configure pam in linux such that the login id and password should not be same?
0
votes
1answer
625 views

PHP pam_auth and cookies

Long story short, I'm developing an in-house report engine. It is entirely web based (utilising PHP and various AJAX techniques) and interprets data stored in a MySQL database by our production ...
0
votes
1answer
1k views

Using a hardware token for login

I am new to the topic of cryptography and am studying PKI and PKCS etc. I understand the basic concept of PKI and how it is used for encryption/decryption. I am confused however about how a hardware ...