<?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: access controls on su in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/access-controls-on-su/m-p/4187126#M323147</link>
    <description>Hello,&lt;BR /&gt;&lt;BR /&gt;a) The method you showed in Linux is based&lt;BR /&gt;on PAM.&lt;BR /&gt;&lt;BR /&gt;Since HP-UX supports PAM, I guess it&lt;BR /&gt;is possible to do it. In fact,&lt;BR /&gt;when I get back from a business trip in two&lt;BR /&gt;weeks, I will try it myself.&lt;BR /&gt;&lt;BR /&gt;b) The second option would be SUDO with SUDOSH.&lt;BR /&gt;&lt;BR /&gt;That one I have implemented for a large &lt;BR /&gt;company running Solaris, Linux and HP-UX.&lt;BR /&gt;&lt;BR /&gt;c) Finally, if you use HP-UX 11.23 or 11.31,&lt;BR /&gt;go for Role Based Access Control (RBAC).&lt;BR /&gt;&lt;BR /&gt;Such a good tool, used so little in HP-UX.&lt;BR /&gt;Pity.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;VK2COT&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 25 Apr 2008 20:27:07 GMT</pubDate>
    <dc:creator>VK2COT</dc:creator>
    <dc:date>2008-04-25T20:27:07Z</dc:date>
    <item>
      <title>access controls on su</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/access-controls-on-su/m-p/4187123#M323144</link>
      <description>In Linux, following files controle the su access&lt;BR /&gt;&lt;BR /&gt;# ll /etc/security/su*&lt;BR /&gt;-rw-r--r--    1 root     root            8 Feb 15  2006 /etc/security/suapplmgr&lt;BR /&gt;-rw-r--r--    1 root     root            7 Feb 15  2006 /etc/security/suoracle&lt;BR /&gt;-rw-r--r--    1 root     root            5 Feb 15  2006 /etc/security/suroot&lt;BR /&gt;&lt;BR /&gt;is there an equivalent in  HP-UX or an alternate method!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Apr 2008 18:24:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/access-controls-on-su/m-p/4187123#M323144</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2008-04-25T18:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: access controls on su</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/access-controls-on-su/m-p/4187124#M323145</link>
      <description>As far as I know.&lt;BR /&gt;&lt;BR /&gt;1)  su access is only limited to knowing the password of who you are su'ing to&lt;BR /&gt;&lt;BR /&gt;2) if not root then permissions are controlled by standard file permissions and some directives defined in /etc/defaults/security&lt;BR /&gt;&lt;BR /&gt;3) I see others typically use sudo (3rd party app) for this purpose.  &lt;BR /&gt;&lt;BR /&gt;man su &lt;BR /&gt;or &lt;BR /&gt;man security &lt;BR /&gt;&lt;BR /&gt;for more.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Apr 2008 18:42:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/access-controls-on-su/m-p/4187124#M323145</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-04-25T18:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: access controls on su</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/access-controls-on-su/m-p/4187125#M323146</link>
      <description>To control who can 'su - root', you can do the following:&lt;BR /&gt;&lt;BR /&gt;1) Create a unique group (say 'some_unique_group')&lt;BR /&gt;&lt;BR /&gt;2) add the following line to /etc/default/security file:&lt;BR /&gt;SU_ROOT_GROUP=some_unique_group&lt;BR /&gt;&lt;BR /&gt;3) add the users who should should be allowed to do 'su root' to this group:&lt;BR /&gt;&lt;BR /&gt;in file /etc/group:&lt;BR /&gt;&lt;BR /&gt;some_unique_group::GID:user1,user2,user3...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Not sure if there is a way restrict 'su' to other non-root account.&lt;BR /&gt;&lt;BR /&gt;thanks,&lt;BR /&gt;sj&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Apr 2008 18:50:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/access-controls-on-su/m-p/4187125#M323146</guid>
      <dc:creator>Srini Jay</dc:creator>
      <dc:date>2008-04-25T18:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: access controls on su</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/access-controls-on-su/m-p/4187126#M323147</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;a) The method you showed in Linux is based&lt;BR /&gt;on PAM.&lt;BR /&gt;&lt;BR /&gt;Since HP-UX supports PAM, I guess it&lt;BR /&gt;is possible to do it. In fact,&lt;BR /&gt;when I get back from a business trip in two&lt;BR /&gt;weeks, I will try it myself.&lt;BR /&gt;&lt;BR /&gt;b) The second option would be SUDO with SUDOSH.&lt;BR /&gt;&lt;BR /&gt;That one I have implemented for a large &lt;BR /&gt;company running Solaris, Linux and HP-UX.&lt;BR /&gt;&lt;BR /&gt;c) Finally, if you use HP-UX 11.23 or 11.31,&lt;BR /&gt;go for Role Based Access Control (RBAC).&lt;BR /&gt;&lt;BR /&gt;Such a good tool, used so little in HP-UX.&lt;BR /&gt;Pity.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;VK2COT&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Apr 2008 20:27:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/access-controls-on-su/m-p/4187126#M323147</guid>
      <dc:creator>VK2COT</dc:creator>
      <dc:date>2008-04-25T20:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: access controls on su</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/access-controls-on-su/m-p/4187127#M323148</link>
      <description>&lt;BR /&gt;[ghosha@/home/ghosha] #su -&lt;BR /&gt;Password:&lt;BR /&gt;Last   successful login for root: Fri Jan 23 09:48:35 EST5EDT 2009&lt;BR /&gt;Last unsuccessful login for root: Thu Jan 22 12:04:28 EST5EDT 2009&lt;BR /&gt;su: Not a member of the SU_ROOT_GROUP defined in /etc/default/security&lt;BR /&gt;[ghosha@/home/ghosha] #&lt;BR /&gt;&lt;BR /&gt;su to root account is prevented if the users are NOT members of easroot. But NOT available for any other accounts.&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Jan 2009 00:43:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/access-controls-on-su/m-p/4187127#M323148</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2009-01-26T00:43:41Z</dc:date>
    </item>
  </channel>
</rss>

