<?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 Allow Only Super-User To Change Password in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158963#M668506</link>
    <description>I want to set up the users that do not have the ability to change their own passwords. I do this via sam with the 'Allow only Super-User to change password'. &lt;BR /&gt;But when I change the password with the command "passwd user",  it reverts back to the 'Normal Behaviour' option.&lt;BR /&gt;&lt;BR /&gt;I'm on HP-UX 11.11.  My system is not trusted&lt;BR /&gt;&lt;BR /&gt;Thanks in advance</description>
    <pubDate>Mon, 23 Feb 2009 21:14:18 GMT</pubDate>
    <dc:creator>RogerVI</dc:creator>
    <dc:date>2009-02-23T21:14:18Z</dc:date>
    <item>
      <title>Allow Only Super-User To Change Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158963#M668506</link>
      <description>I want to set up the users that do not have the ability to change their own passwords. I do this via sam with the 'Allow only Super-User to change password'. &lt;BR /&gt;But when I change the password with the command "passwd user",  it reverts back to the 'Normal Behaviour' option.&lt;BR /&gt;&lt;BR /&gt;I'm on HP-UX 11.11.  My system is not trusted&lt;BR /&gt;&lt;BR /&gt;Thanks in advance</description>
      <pubDate>Mon, 23 Feb 2009 21:14:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158963#M668506</guid>
      <dc:creator>RogerVI</dc:creator>
      <dc:date>2009-02-23T21:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Allow Only Super-User To Change Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158964#M668507</link>
      <description>see this post:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1314064" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1314064&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;why would you want to do such a thing?  not only does it cause a security breach, it makes more work for somebody.</description>
      <pubDate>Mon, 23 Feb 2009 21:23:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158964#M668507</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-02-23T21:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Allow Only Super-User To Change Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158965#M668508</link>
      <description>&amp;gt;when I change the password with the command "passwd user", it reverts back to the 'Normal Behaviour' option.&lt;BR /&gt;&lt;BR /&gt;You can "fix" this by using vipw(1m) by adding ",./" to the end of the passwd field.  I have no idea why there isn't an option in passwd(1) to do that.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Feb 2009 21:57:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158965#M668508</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-02-23T21:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Allow Only Super-User To Change Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158966#M668509</link>
      <description>Dear Dennis:&lt;BR /&gt;&lt;BR /&gt;Could you help me how to add those characters using a script ?&lt;BR /&gt;&lt;BR /&gt;This is due to I must do the change for multiple users and periodically</description>
      <pubDate>Mon, 23 Feb 2009 23:38:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158966#M668509</guid>
      <dc:creator>RogerVI</dc:creator>
      <dc:date>2009-02-23T23:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Allow Only Super-User To Change Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158967#M668510</link>
      <description>&lt;!--!*#--&gt;Unfortunately while sam will modify the password options, it doesn't remember superuser only when you change the password.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Could you help me how to add those characters using a script?&lt;BR /&gt;&lt;BR /&gt;This would be very dangerous if anything goes wrong.  Do you want to add them to any entry in /etc/passwd, or to all but certain ones?&lt;BR /&gt;awk -F: '&lt;BR /&gt;BEGIN { OFS = ":" }&lt;BR /&gt;{&lt;BR /&gt;password = $2&lt;BR /&gt;if ($1 != "root" &amp;amp;&amp;amp; $1 != "+" &amp;amp;&amp;amp;&lt;BR /&gt;    password != "*" &amp;amp;&amp;amp; index(password, ",") == 0) {&lt;BR /&gt;   password = password ",./"&lt;BR /&gt;}&lt;BR /&gt;print $1, password, $3, $4, $5, $6, $7&lt;BR /&gt;} ' /etc/passwd &amp;gt; passwd.new</description>
      <pubDate>Wed, 25 Feb 2009 04:07:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158967#M668510</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-02-25T04:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Allow Only Super-User To Change Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158968#M668511</link>
      <description>The /etc/passwd file has 800 lines aprox.&lt;BR /&gt;I need to add the characters ",./" to the accounts based on a file. For example, if this file is called accounts.txt (aprox. 20 lines):&lt;BR /&gt;&lt;BR /&gt;user1&lt;BR /&gt;user2&lt;BR /&gt;..&lt;BR /&gt;user20&lt;BR /&gt;&lt;BR /&gt;Then I want to add the characters to accounts user1, user2,..user20.&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Feb 2009 15:47:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158968#M668511</guid>
      <dc:creator>RogerVI</dc:creator>
      <dc:date>2009-02-25T15:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Allow Only Super-User To Change Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158969#M668512</link>
      <description>&lt;!--!*#--&gt;&amp;gt;I need to add the characters ",./" to the accounts based on a file&lt;BR /&gt;&lt;BR /&gt;Assuming the name is user_file:&lt;BR /&gt;awk -F: -vusers=user_file '&lt;BR /&gt;BEGIN {&lt;BR /&gt;   while (getline &amp;lt; users &amp;gt; 0)&lt;BR /&gt;      name[$0] = 1 # save for checking&lt;BR /&gt;   close(users)&lt;BR /&gt;   OFS = ":"&lt;BR /&gt;}&lt;BR /&gt;{&lt;BR /&gt;password = $2&lt;BR /&gt;if ($1 != "root" &amp;amp;&amp;amp; $1 != "+" &amp;amp;&amp;amp;&lt;BR /&gt;    password != "*" &amp;amp;&amp;amp; index(password, ",") == 0 &amp;amp;&amp;amp; name[$1]) {&lt;BR /&gt;   password = password ",./"&lt;BR /&gt;}&lt;BR /&gt;print $1, password, $3, $4, $5, $6, $7&lt;BR /&gt;} ' /etc/passwd &amp;gt; passwd.new</description>
      <pubDate>Thu, 26 Feb 2009 03:44:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158969#M668512</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-02-26T03:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Allow Only Super-User To Change Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158970#M668513</link>
      <description>I'm with OldSchool here.  I'm still thoroughly confused as to why you don't want your users to change their own passwords, especially with 800+ accounts.&lt;BR /&gt;&lt;BR /&gt;Are you trying to justify your job?</description>
      <pubDate>Thu, 26 Feb 2009 04:41:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158970#M668513</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2009-02-26T04:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Allow Only Super-User To Change Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158971#M668514</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;A friend of mine worked for a major bank here in Australia last year. She told me that one&lt;BR /&gt;of the world-largest outsourcing companies&lt;BR /&gt;charged bank around 400 Australian dollars for every password reset :)&lt;BR /&gt;&lt;BR /&gt;Nice and easy money. And "very hard earned".&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;VK2COT&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Feb 2009 05:11:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158971#M668514</guid>
      <dc:creator>VK2COT</dc:creator>
      <dc:date>2009-02-26T05:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Allow Only Super-User To Change Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158972#M668515</link>
      <description>I have a proprietary security platform, in which the validation is that the password of Unix system should be equal to the password of the propietary security platform.&lt;BR /&gt;Actually, users (he or she) don't log on Unix. The connection is done by applications, not directly by users. These users have access to certains parts of the applications according your job nature and logged with a personal account.&lt;BR /&gt;For audit reasons, the Unix password must be changed periodically, and only the superuser should be able to do it&lt;BR /&gt;Dennis, Thank you very much for your help.</description>
      <pubDate>Thu, 26 Feb 2009 05:20:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/allow-only-super-user-to-change-password/m-p/5158972#M668515</guid>
      <dc:creator>RogerVI</dc:creator>
      <dc:date>2009-02-26T05:20:06Z</dc:date>
    </item>
  </channel>
</rss>

