Tagged Questions

Pluggable authentication modules, a flexible framework for configuring authentication, most commonly the login component of Linux systems, but used in other components and operating systems.

learn more… | top users | synonyms

5
votes
1answer
410 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
126 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
186 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
2answers
951 views

Resident Set Size (RSS) limit has no effect

The following problem occurs on a machine running Ubuntu 10.04 with the 2.6.32-22-generic kernel: Setting a limit for the Resident Set Size (RSS) of a process does not seem to have any effect. I ...
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 ...
4
votes
1answer
872 views

Security concerns with a Python PAM module?

I'm interested in writing a PAM module that would make use of a popular authentication mechanism for Unix logins. Most of my past programming experience has been in Python, and the system I'm ...
4
votes
4answers
2k views

bind Linux to Active Directory using kerberos

We are trying to bind a Linux machine (debian 4.0) to W2k3 AD. We have configured kerberos properly so that we can get TGTs. And users authenticate properly. However, PAM seems to be the sticky ...
3
votes
2answers
479 views

python script does not run from cron

I have a python script "start.py" that executes well from the command line. There is only one statement in it (print "hello"). EDIT: start.py contains also a working interpreter directive in the first ...
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
334 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
223 views

How to authenticate a user using PAM?

I've read through this page, but I'm a little confused... pam_start What is struct pam_conv and how should it be filled in? What on earth is service_name and what does it mean? Is there an ...
2
votes
1answer
653 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
1answer
85 views

return supported hash algorithms

i need a command or a script returning supported hashing algorithms (for hashing passwords) on a system, i mean algorithms can be used with pam.d configuration files or login.defs . generally ...
2
votes
3answers
1k views

PHP: authenticate local unix user (without direct access to /etc/shadow)

Given a username and password, I need to check if there's a user on the local system with said username and password. I'm aware of posix_getpwnam and using the PAM package, but both of these methods ...
2
votes
3answers
503 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
435 views

PAM authentication problem

I am using this module to authenticate using pam: http://code.google.com/p/web2py/source/browse/gluon/contrib/pam.py I can call authenticate('username','password') and it returns True/ False. It ...
2
votes
1answer
269 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
279 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
2answers
108 views

Storing passwords securely in MySQL, but still accessible by PAM

We have a PHP application that stores passwords just using the MD5 function (with no salt). We have OpenSSH set to use pam-mysql to authenticate users from the same database. We would like to ...
1
vote
1answer
45 views

PAM module for ssh: how to know if user is using key or password to authenticate

I am writing a PAM module for ssh service. I would like to know how can I determine within the PAM module if user is using password or key to authenticate themself. Thanks for your help and look ...
1
vote
1answer
177 views

Command Line Authentication in Web2py

I have made a web interface for my project using web2py and configured login with pam. Now i have to make a CLI for the same. I could not find any way i can authenticate the user (we can assume that ...
1
vote
1answer
318 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
74 views

Is there any way to pass the password to pam_start() or pam_authenticate() and bypass the “conversation”?

pam_start() takes a parameter that is a structure ( http://linux.die.net/man/3/pam_conv ) where you can set a callback method for getting the password. Since I already have the password before my ...
1
vote
1answer
83 views

Behaviour of OpenSSH while login as root and non-root account

I am writing a PAM module for SSH to enforce one more layer of authentication. For that I need terminal ID in close_session() and pam_sm_setcred() function in PAM module while OpenSSH hardcoded it ...
1
vote
0answers
126 views

how to create a simple pam application? [closed]

Possible Duplicate: how to create a pam module?? Please help me out. I want to create an application for login which uses face authentication...
1
vote
2answers
608 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
1answer
94 views

How to prompt for some information from PAM module

I'm writing a Plug-gable authentication module for ssh. I am looking for prompting for some extra information after user name and password verification but before giving access to user. Can anyone ...
1
vote
1answer
558 views

How does gcc linker choose /usr/lib versus /usr/lib64 for library resolution?

My link line to gcc includes the following two entries in succession: -lrt -lpam And this appears expanded as: /usr/lib64/librt.so /usr/lib/libpam.so Why is rt resolved to lib64 whereas pam 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
6 views

PAM MODULE (sample) Build and Install?

I am currently working on a PAM module (for the first time) And in order to get a hands-on I was trying to build & test a sample pam module. but I have troubles in order to test my module. I ...
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
0answers
12 views

Ask for a roadmap to learn pam

I am in charge of integrating linux PAM facility to our company's product, but I have not touched pam before, could anyone give me a roadmap on how to learn PAM? Anything is welcome, books, forums, ...
0
votes
1answer
19 views

what is pam_unix in syslogs?

If I am authenticating using PAM, is it a standard/best practice to use pam_unix in syslog tags? Who added pam_unix in below log: vsftpd process or the PAM module itself which was used in ...
0
votes
0answers
12 views

How can i block su access to some users only in linux [migrated]

I want to configure pam in a way so that my some users can su to only some user. In RHEL4, I used /etc/pam.d/su auth required /lib/security/$ISA/pam_stack.so service=system-auth auth ...
0
votes
0answers
19 views

Does db_load update with new input file?

I have consulted Google, and read plenty of tutorials on how to build the underlying architecture, so this has brought me to a basic question. Here is the scenario: I am creating virtual users under ...
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
2answers
70 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
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
0answers
28 views

how do I use Plesk for SSO/SC?

I am running an apache2 with plesk10.2 As we're about to run several internal portals on it (some stages of an application, an issue management system), we would like to have a single sign on or - at ...
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
2answers
72 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
0answers
116 views

pam_mount/sshfs fails with selinux enforcing enabled

I have pam_mount setup to automatically mount each users home directory when they login via fuse sshfs. The authentication is performed using the same password that they log in with. It all works just ...
0
votes
0answers
14 views

pam_unix instead of pam_krbs5

i have been trying to configure ldap on my system. I want login authentication to be done by pam.krb5 but somehow it is happening through pam_unix. Can anyone tell how can i fix this.
0
votes
0answers
23 views

iOS and UNIX Authentication (Are there servers / protocols already for this?)

I'm planning an iOS application that authenticates users against accounts created on my Linux box running Fedora 15. Just to clarify, I'm talking about accounts listed in /etc/passwd. This application ...
0
votes
1answer
47 views

Pam_ldap caching passwords when it isn't supposed to

I've set up LDAP authentication using pam_ldap on a server and it seemed to be working just fine to begin with, but now I have a problem. Whenever a user changes his password in Active directory, it ...
0
votes
0answers
25 views

pam_ldap sync problem

I set up an LDAP authentication for one of my company's servers a few days ago and everything seemed to work. But one employee had to change his LDAP password and apparently it didn't sync with ...
0
votes
0answers
511 views

SASL PLAIN authentication failed: no mechanism available

Before I begin. Keep in mind that this had been working flawlessly for months until this morning. Today? Poof. Decided it's not going to work anymore. The punchline is I have a postfix install setup ...
0
votes
1answer
81 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

1 2