![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Microsoft Security Advisory (906574): Clarification of Simple File Sharing and ForceG | iBot | Security Advisories (RSS) - Microsoft | 0 | 04-06-2008 01:50 AM |
| Microsoft Security Advisory (906574): Clarification of Simple File Sharing and ForceG | iBot | Security Advisories (RSS) - Microsoft | 0 | 12-24-2007 06:00 AM |
| /etc/passwd file | s_mad010 | Security | 4 | 12-06-2005 04:14 AM |
| Creating an entry for /etc/passwd | sleepster | Shell Programming and Scripting | 8 | 09-12-2003 08:05 PM |
| Deleting double entry in a file | Wing m. Cheng | Shell Programming and Scripting | 3 | 09-18-2002 05:42 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Clarification on /etc/passwd file entry
Hi,
I am working on a UNIX AIX system and all the entries in /etc/passwd file are in the following format.. root:!:0:0::/:/usr/bin/ksh I have an idea abt each field, but I am confused abt the values in the second field. If the value of the second filed is 'x' then it means the password is stored in /etc/shadow file. * means you cant login using this id in unix login prompt but what does the value '!' means? and I checked, there is no /etc/shadow file in the system, so where the password is stored. |
| Forum Sponsor | ||
|
|
|
|||
|
From the AIX documentation:
Code:
If a user ID has a password, then the password field will have an ! (exclamation point). If the user ID does not have a password, then the password field will have an * (asterisk). The encrypted passwords are stored in the /etc/security/passwd file. |