Operating System - HP-UX
1833777 Members
2356 Online
110063 Solutions
New Discussion

Re: How to find empty passwords in a trusted HPUX?

 
SOLVED
Go to solution
jamxav
Frequent Advisor

How to find empty passwords in a trusted HPUX?

HPUX 11.23

How to find accounts with empty passwords in a trusted HPUX?

Thanks!
4 REPLIES 4
Steven Schweda
Honored Contributor

Re: How to find empty passwords in a trusted HPUX?

Try to log in as each user, specifying a
null password?
Steven E. Protter
Exalted Contributor

Re: How to find empty passwords in a trusted HPUX?

Shalom,

If you have recently converted those accounts will be disabled and do not represent a threat.

A long time after conversion only root would be able to set accounts like that.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Bill Hassell
Honored Contributor
Solution

Re: How to find empty passwords in a trusted HPUX?

Use the command:

logins -p

to find users with no password. This works on Trusted and standard systems. logins is one of those 'sleeper' commands -- lots of nifty features no one knows about. For instance:

logins -d

shows all duplicate UID -- especially important to find UID=0 in more than one login, a big security risk. man logins


Bill Hassell, sysadmin
jamxav
Frequent Advisor

Re: How to find empty passwords in a trusted HPUX?

Thank you very much!