Tagged Questions
5
votes
1answer
407 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 ...
2
votes
1answer
220 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
650 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
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
501 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
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
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
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
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
93 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 ...
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
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
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
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
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
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
3answers
445 views
pam authentication in python without root privileges
I'm looking for a way to let my python program handle authentication through pam.
I'm using http://code.google.com/p/web2py/source/browse/gluon/contrib/pam.py for this, which works out great as long ...
0
votes
1answer
291 views
Python Unix authentication
I need to do a simple authentication of username's which are on the host and NIS.
I am writing this code in Python.
I tried using PAM to do authentication. For this I downloaded a Python module ...
0
votes
1answer
622 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 ...