Tagged Questions

5
votes
1answer
238 views

Protecting /etc/passwd and /etc/shadow from concurrent access

How do I protect /etc/passwd and /etc/shadow from concurrent access? I don't see any locking mechanism in pwd.h. I see the manual for pwd_mkdb mentions obtaining a lock, but is it just locking the ...
3
votes
10answers
8k views

How to automatically add user account *and* password with a Bash script

I need to have the ability to create user accounts on my Linux ( Fedora 10 ) and automatically assign a password via a bash script ( or otherwise, if need be ). It's easy to create the user via ...
2
votes
7answers
964 views

What API do I call to set a user's password on linux?

I know about passwd(1) and crypt(3). What I'm looking for is a C API to call which will set the user's password in the passwd/shadow files, without having to programatically walk the files and ...
1
vote
2answers
111 views

/usr/bin/passwd and the CAP_CHOWN capability

I was experimenting with Linux Capabilities, and I noticed that for the passwd program to work without being Set-UID root, it needs to have the CAP_CHOWN capability (in addition to some others). ...
1
vote
1answer
62 views

Changing eDirectory Password From Linux Machine

I have Configured LDAP Authentication for my Linux Machines. The LDAP Server is Novell eDirectory. The LDAP Users are able to login into the machine. But when i am issuing passwd command it is asking ...
1
vote
1answer
157 views

Migration of NIS yppasswd hashes from crypt to md5

Imagine a NIS user database /var/yp/input-files/passwd consisting of old crypt DES hashes. The aim is to migrate this database to md5 or sha hashes. When changing a password using yppasswd, it is ...
1
vote
2answers
210 views

Script to Copy User according to UID

I'm looking for a way to copy all non-system users from one PC to another. I can get the group and passwd files copied over using this awk -F":" ' $3 > 499 ' etc/passwd >> /etc/passwd awk ...
0
votes
1answer
114 views

Use of /etc/passwd-, /etc/shadow-, /etc/group- [closed]

In addition to the files : /etc/group, /etc/passwd and /etc/shadow, I could see three files in my linux machine. /etc/group- /etc/passwd- /etc/shadow- I cannot see these files in my root ...
0
votes
2answers
57 views

when passwd command is executed (I know, with root privilage), cant it be exploited? If not, why? [closed]

when passwd command is executed (I know, with root privilage), cant it be exploited? If not, why? Thanking you in advance!