<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Password administration for non-root users in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/password-administration-for-non-root-users/m-p/3650999#M240463</link>
    <description>Mel, thanks for the advice.  Our G/L system is CA and I can relate because we still have a 2Gb file limit.&lt;BR /&gt;&lt;BR /&gt;Ken, thank you so much.  This sounds like something we can use.  We are in the process of upgrading this system to a new server which is running 11.23 so I think I will just invest the time and get it running on the new server.  Your examples will be most helpful.  Thanks again.</description>
    <pubDate>Mon, 17 Oct 2005 12:50:57 GMT</pubDate>
    <dc:creator>Jody L. Czub</dc:creator>
    <dc:date>2005-10-17T12:50:57Z</dc:date>
    <item>
      <title>Password administration for non-root users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-administration-for-non-root-users/m-p/3650996#M240460</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am trying to find out what other companies do to manage a large number of users for password administration.&lt;BR /&gt;&lt;BR /&gt;We run a 24x7 warehouse operation and have several hundred users.  Recently we have gone to hardened passwords and we have a concern over password management for our 3rd shift.  We have a helpdesk that can handle the first two shifts, but there are a large number of supervisors/lead people that we feel uncomfortable giving restricted SAM to.  &lt;BR /&gt;&lt;BR /&gt;Does anyone know of any utilities (they can be 3rd party) or other solutions to get around this?  Restricted SAM works fine but unless I am missing something you can't lock down on just password changes.  A restricted SAM user has a full user menu.  I know you can do some filtering, but if a user forgets a password without locking the account someone still needs the ability to reset.  &lt;BR /&gt;&lt;BR /&gt;Tech support doesn't want to get called for a forgotten password in the middle of the night.&lt;BR /&gt;&lt;BR /&gt;Thanks for any suggestions.</description>
      <pubDate>Mon, 17 Oct 2005 11:12:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-administration-for-non-root-users/m-p/3650996#M240460</guid>
      <dc:creator>Jody L. Czub</dc:creator>
      <dc:date>2005-10-17T11:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: Password administration for non-root users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-administration-for-non-root-users/m-p/3650997#M240461</link>
      <description>We started to use the CA's eTrust suite for user administration in all aspects including the password management by non-root users (our internal help desk is capable of doing this now) but overall I am not impressed by the software. Its daemon runs under root user instead of running under a regular user using the applications with sticky bits set as many others do. It's installation scripts must have been written by a 12 years old script kiddie, or it feels that way as they broke from one system to the other under identical configurations. Almost no error checking whatsoever while installing. Depends on lots of assumptions.&lt;BR /&gt;&lt;BR /&gt;My advice : stay away from it. Actually stay away from any CA product on HPUX. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Oct 2005 11:17:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-administration-for-non-root-users/m-p/3650997#M240461</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2005-10-17T11:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Password administration for non-root users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-administration-for-non-root-users/m-p/3650998#M240462</link>
      <description>We have a similar situation. Using enhanced security, with non-UNIX administrators doing user administration.&lt;BR /&gt;&lt;BR /&gt;To achieve that required a few scripts to be written that added removed and unlocked user accounts. The scripts call sudo to call the UNIX commands. The non-administrators never actually have an administrator shell that they work in. They are always normal users.&lt;BR /&gt;&lt;BR /&gt;Each time they actually modify a user account, the script sends an Email to the Sr. UNIX Administrator and the Security Officer. SOX is covered!&lt;BR /&gt;&lt;BR /&gt;To do this, you need to install sudo, if you havenâ  t already done so. If youâ  re running 11.23 you can use the new HP-UX â  AccessControlâ   tool. You will need to invest some programming time to create the script(s). We have a menu drive script that gathers what information will be required to add, delete, or unlock the user account.  The only data we actually get from the user is the UNIX I.D., everything else we create from within the script. You could just make simple command line scripts that take one or two parameters, like user name, and if you use more than one, user group.&lt;BR /&gt;&lt;BR /&gt;To add accounts the script calls:&lt;BR /&gt;/usr/local/bin/sudo /usr/sbin/useradd -g $userGroup -d /home/$userAcctName -s /bin/ksh \&lt;BR /&gt;                                        -G $userOthGroups -c "$userFirstName $userLastName" -m \&lt;BR /&gt;                                        -k /opt/soc/stdprofiles/$userType $userAcctName&lt;BR /&gt;&lt;BR /&gt;To delete accounts the script calls:&lt;BR /&gt;/usr/local/bin/sudo /usr/sbin/userdel -r $myUserAcctName&lt;BR /&gt;&lt;BR /&gt;To reset a password the script calls:&lt;BR /&gt;/usr/local/bin/sudo /usr/lbin/modprpw -x $myUserAcctName&lt;BR /&gt;/usr/local/bin/sudo /usr/lbin/modprpw -l -k -m rstrpw=YES,exptm=45,nullpw=NO $myUserAcctName&lt;BR /&gt;&lt;BR /&gt;To lock an account the script calls:&lt;BR /&gt;/usr/local/bin/sudo passwd -l $myUserAcctName&lt;BR /&gt;&lt;BR /&gt;And to re-enable a locked account the script calls:&lt;BR /&gt;/usr/local/bin/sudo /usr/lbin/modprpw -l -k $myUserAcctName&lt;BR /&gt;&lt;BR /&gt;Sorry, canâ  t send you the actual scripts, but this should be enough to get you going.&lt;BR /&gt;&lt;BR /&gt;Best of luck!&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Oct 2005 12:10:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-administration-for-non-root-users/m-p/3650998#M240462</guid>
      <dc:creator>Ken Grabowski</dc:creator>
      <dc:date>2005-10-17T12:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: Password administration for non-root users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-administration-for-non-root-users/m-p/3650999#M240463</link>
      <description>Mel, thanks for the advice.  Our G/L system is CA and I can relate because we still have a 2Gb file limit.&lt;BR /&gt;&lt;BR /&gt;Ken, thank you so much.  This sounds like something we can use.  We are in the process of upgrading this system to a new server which is running 11.23 so I think I will just invest the time and get it running on the new server.  Your examples will be most helpful.  Thanks again.</description>
      <pubDate>Mon, 17 Oct 2005 12:50:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-administration-for-non-root-users/m-p/3650999#M240463</guid>
      <dc:creator>Jody L. Czub</dc:creator>
      <dc:date>2005-10-17T12:50:57Z</dc:date>
    </item>
  </channel>
</rss>

