Tagged Questions

4
votes
2answers
953 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
1answer
874 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 ...
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
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
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
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. ...
0
votes
3answers
448 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
294 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 ...