User Name and Password List/adding and removing users.


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers User Name and Password List/adding and removing users.
# 1  
Old 03-25-2009
User Name and Password List/adding and removing users.

Hello everyone and let me start off by thanking anyone who can help with this.

I work for a company that uses Unix as one of their servers. I'm not at all familar with Unix beyond logging after I restart the serverSmilie I'm looking for some command that will bring me up a list of current users/passwords so I can add them to a master user/pw list I'm writing up. Also If someone could tell me how to add and delete users as well. Thanks again sorry I don't have the time to search these forums for the answers.
# 2  
Old 03-25-2009
You can get a list of users from the file:/etc/passwd - it is : delimited. FLD1 == username, FLD5 == comments, usually the users real name

Passwords are another story. There are no open text paswords on any standard unix system - by default. That doesn't mean somebody with privilege did not decide create one. Or maybe there is paperwork - like a request for access.

Lists of usernames/passwords are a horrible idea for a lot of very good reasons. FWIW.
# 3  
Old 03-25-2009
yeah by no means do I think having a list is a good idea but I have to do what my boss says even if i don't agree with it.
# 4  
Old 03-25-2009
Well, you can tell your boss that there's no way since UNIX passwords aren't encrypted, but hashed, which is a one-way operation. So unless, as Jim said, there's a paper trail or someone else kept a list already you're out of luck. Of course, if the users were allowed to change their passwords themselves and did so, even that is good for nothing.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to list users without MD5 encrypted password?

Hi, As a security measure, we need to force all the users to use MD5 encryped passwords. For that we need to list users whose encrypted password is not MD5. I understand all MD5 encrypted passwords start with $1$ and a sample entry in /etc/shadow would be ... (4 Replies)
Discussion started by: magnus29
4 Replies

2. AIX

Removing the password of a user

Hi Experts, According to the manual if you want to remove the password for a user account the "password" field in /etc/security/passwd should be set to "*" So instead of this: password = 6BqaLx8FeI8os Should be set to this: password = * But when I run the following command in my AIX... (5 Replies)
Discussion started by: livehho
5 Replies

3. Shell Programming and Scripting

Removing old user directories that are no longer Users in /etc/passwd

I am new to shell scripting, and have not done much programming in several years. So I am very rusty at this at best. I know my way around the linux command line, but actually scripting is something I have not done too much of. I have been tasked to come up with a script that will pull all... (5 Replies)
Discussion started by: shuiend
5 Replies

4. Shell Programming and Scripting

script to ignore the user from list of users

Hi, I have a situation where I want to ignore few users from list of users and print rest of user in log file. say, I want to ignore aaa, bbb, ccc, ddd .. ppp from list of 20 user (do not want to include) What is the good command or any script? Thanks in advance. (1 Reply)
Discussion started by: sumit30
1 Replies

5. Shell Programming and Scripting

IF $USER is not in this list of users, then do this

I need to add to a BASH script if ${USER} is not in a list of users (smitha, brownd, adamsp) then do something... what is the best shortest way to accomplish an if statement with a list like this? Also the list of users should be in the script, not an external file. Thanks! (5 Replies)
Discussion started by: glev2005
5 Replies

6. Solaris

help adding a new user/password

I just installed Solaris 10 yesterday and I need to create a new username and password. I'm new to the system and I have yet to learn my way around. I appreciate all help and thank you in advance. (5 Replies)
Discussion started by: bones
5 Replies

7. Programming

reg adding Users into at.allow and removing from at.allow

Hi , Thanks for your time . I am working on a application , which adds unix user through useradd and deletes user through userdel . both are admin commands . My requirement is i have to add a user into at.allow whenver a unix user is added through my application and the user should be... (4 Replies)
Discussion started by: naren_chella
4 Replies

8. UNIX Desktop Questions & Answers

list the password settings for all the users

Hi!! How can I list the password settings for all the users?? Best regards (3 Replies)
Discussion started by: irasela
3 Replies

9. Shell Programming and Scripting

Adding users

Anyone have a simple shell script that will prompt and accept screen input for each field that is required in the /etc/passwd file? (3 Replies)
Discussion started by: Relykk
3 Replies

10. UNIX for Dummies Questions & Answers

su - user... how to find out the list of users and their passwords..

hi, to do a su - user, we need to know what are the users... so in unix 1) which file to see the list of users, passwords? (2 Replies)
Discussion started by: yls177
2 Replies
Login or Register to Ask a Question