Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
237 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 ...
5
votes
2answers
8k views

Useradd using crypt password generation

I am working on what I thought was a very simple script to dynamically create an FTP user using 'useradd' There are several parts of this process I am unfamiliar with, and an entire day's research has ...
3
votes
2answers
456 views

How to do conditional .htaccess password protect

I'm trying to password protect a specific url using a .htaccess. Different urls point to the same files but have different workings. I now need to password protect only one url. I'm trying to do this ...
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 ...
3
votes
8answers
3k views

Using shell_exec('passwd') to change a user's password

I need to be able to change the users' password through a web page (in a controlled environment). So, for that, I'm using this code: <?php $output = shell_exec("sudo -u dummy passwd testUser ...
2
votes
2answers
298 views

How do I generate an encrypted password string, as it is in /etc/shadow?

I'm trying to mimic the creation of password strings as they appear in /etc/shadow. This is what I've got so far, but the encrypted passwords don't match, when I use the same password and the same ...
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
0answers
32 views

Using OpenSSL to generate passwd on iPhone

I have the OpenSSL library working fine on my iPhone, and can create hashes etc... I was just wondering how I'd create a salted password within the app so it matches the output of this: openssl ...
1
vote
2answers
108 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
155 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
1answer
1k views

does android have files like /etc/passwd, /etc/shadow, and /etc/group?

If not, how does android determine whether a user belongs to a certain group?
1
vote
4answers
928 views

Change Unix password from command line over Python/Fabric

I would like a way to update my password on a remote Ubuntu 10.4 box with fabric. I would expect my fabfile.py would look something like this: def update_password(old_pw, new_pw): # Connects ...
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 ...
1
vote
3answers
531 views

Unix programming. Not sure how to use the passwd struct

I've done some research and I'm still struggling with the passwd structure. http://www.opengroup.org/onlinepubs/000095399/basedefs/pwd.h.html I need to obtain the user ID however I dont think I'm ...
1
vote
2answers
3k views

Problem with an expect script

I'm trying to create a script to update a password in a non-interactive way. It's working on my laptop but fails on my server. Both are running the same configuration, using Etch. This is the script: ...
0
votes
2answers
49 views

Getting password file entry for the current user

I have this in my source code: struct passwd* user_info = getpwnam("root"); Is there anyway to change the "root" and my program will find the current user? For example if I am logged in with user ...
0
votes
1answer
109 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
0answers
63 views

Can CakePHP use a passwd file for basic/digest http auth?

I want to restrict access to admin routing in my CakePHP app using digest HTTP auth based on an existing passwd file. If the "admin" area actually resolved to a real directory, I could do this with a ...
0
votes
2answers
56 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!
0
votes
1answer
57 views

Solaris 11 express and indirection

I am trying to use bash indirection in Solaris 11 express to change the password for a user. The code I am using is $ passwd testuser << MARKER > testpassword > testpassword > MARKER ...
0
votes
2answers
117 views

Java Regex for lines from /etc/passwd and /etc/group

I've been working on a small Java problem set and have come across some trouble. I'm not very experienced writing regular expressions and could really use two for verifying line entries in /etc/group ...
0
votes
2answers
179 views

PHP passwd error

I'm doing this: $user = 'kevin'; $pass = 'nivek'; shell_exec('echo -e "' . $pass . '\n' . $pass . '" | sudo passwd ' . $user);` But when I execute this, I get this error: Enter new UNIX password: ...
0
votes
1answer
50 views

shell programming [closed]

Tell me the shell program to print home directory of each user. User details are stored in /etc/passwd
0
votes
1answer
653 views

How do I use expect to connect via ssh to a system and change the password of the host system?

I am automating the process of: Connect to a system named "alpha" via ssh with password "alpha" for username "alpha". Once connected I would like to set the root password (to "kickass"). The system I ...
0
votes
1answer
498 views

passwd: Authentication failure on redhat

I have an application (APP1) which can only be executed by a user with root privileges but not by root. Hence I have created another user root1 : adduser -u 0 -o -g 0 -G 0,1,2,3,4,6,10 -M root1 And ...
0
votes
1answer
169 views

SVN: Global and project-specific passwd files for single repository

I would like to configure my local SVN server to support both a global passwd file and a project specific passwd file. I have a global passwd file set up that is currently used to administer all ...
0
votes
4answers
1k views

php - proc_open (or other function that works)

I need to do some command lines through a browser. What I need to do in a command-line would be: $login <login name> <password> $passwd <old password> <new password> ...
-1
votes
2answers
47 views

extract UID from /etc/passwd using RegEx

I would like to extract UID from /etc/passwd file which looks like this- www-data:x:33:33:www-data:/var/www:/bin/sh The problem I'm facing is that even if I match first 33, the second 33 (GID) is ...