<?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: parameter passwd in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2865999#M821533</link>
    <description>Hi:&lt;BR /&gt;&lt;BR /&gt;See the man pages for 'security(4)'.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Tue, 17 Dec 2002 17:46:41 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2002-12-17T17:46:41Z</dc:date>
    <item>
      <title>parameter passwd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2865998#M821532</link>
      <description>Hi All! &lt;BR /&gt;where can I find the file that maintain parameters about password? I know I have to chose a password that use alfabetical and numerical characters, but I don't know where it was defined... &lt;BR /&gt;My system are not trusted, but I know its get rules to make construct passwors like "two alfabetical more one numerial character" etc...&lt;BR /&gt; thanxs</description>
      <pubDate>Tue, 17 Dec 2002 17:39:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2865998#M821532</guid>
      <dc:creator>Vogra</dc:creator>
      <dc:date>2002-12-17T17:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: parameter passwd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2865999#M821533</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;See the man pages for 'security(4)'.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 17 Dec 2002 17:46:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2865999#M821533</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-12-17T17:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: parameter passwd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2866000#M821534</link>
      <description>/etc/default/security ?&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Tue, 17 Dec 2002 17:47:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2866000#M821534</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-12-17T17:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: parameter passwd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2866001#M821535</link>
      <description>Check out the following manual:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/hpux/onlinedocs/B2355-90696/B2355-90696.html" target="_blank"&gt;http://docs.hp.com/hpux/onlinedocs/B2355-90696/B2355-90696.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It is the HP-UX 11i section 4 manual which does contain the entry for 'security'.  I could not find the entry online in the 11.0 manuals or on some of my 11.0 systems.</description>
      <pubDate>Tue, 17 Dec 2002 17:53:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2866001#M821535</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2002-12-17T17:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: parameter passwd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2866002#M821536</link>
      <description>You might be interested in patches&lt;BR /&gt;PHCO_27797 and PHCO_24390 or equivalents.&lt;BR /&gt;Quoting from the patch doc file:&lt;BR /&gt;&lt;BR /&gt;A site's security policies sometimes require new passwords&lt;BR /&gt;to contain specific numbers or types of characters, such as&lt;BR /&gt;at least two digits and at least one special character.&lt;BR /&gt;Resolution:&lt;BR /&gt;In addition to the standard password requirements,&lt;BR /&gt;optional entries in the file /etc/default/security specify&lt;BR /&gt;the minimum number of required characters of each type&lt;BR /&gt;(upper case characters, lower case characters, digits&lt;BR /&gt;and special characters) in a new password.&lt;BR /&gt;PASSWORD_MIN_UPPER_CASE_CHARS=N&lt;BR /&gt;PASSWORD_MIN_LOWER_CASE_CHARS=N&lt;BR /&gt;PASSWORD_MIN_DIGIT_CHARS=N&lt;BR /&gt;PASSWORD_MIN_SPECIAL_CHARS=N&lt;BR /&gt;The default value for N is 0.  These parameters have&lt;BR /&gt;effect only when a password is changed.  On untrusted&lt;BR /&gt;systems, these parameters do not apply to the root user.&lt;BR /&gt;The file /etc/default/security should be owned by root and&lt;BR /&gt;have 0644 permissions.&lt;BR /&gt;As an example, to require passwords at least 8 characters&lt;BR /&gt;long, composed of at least 5 upper case characters, 2&lt;BR /&gt;lower case characters and a digit, include the following&lt;BR /&gt;lines in /etc/default/security, as specified above:&lt;BR /&gt;PASSWORD_MIN_UPPER_CASE_CHARS=5&lt;BR /&gt;PASSWORD_MIN_LOWER_CASE_CHARS=2&lt;BR /&gt;PASSWORD_MIN_DIGIT_CHARS=1&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Dec 2002 00:04:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2866002#M821536</guid>
      <dc:creator>doug hosking</dc:creator>
      <dc:date>2002-12-19T00:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: parameter passwd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2866003#M821537</link>
      <description>You didn't post the opsystem revision, so in case you are running obsolete 10.20, the comments about /etc/default/security do not apply. In 10.20, the rules are defined in the passwd program and cannot be changed. For 11.0 and higher, you can set the policy via the security file *BUT* you must load the relevant libpam patches to add that capability. Also, the security man page is missing in 11.0 but found in 11i (11.11) and you can read it at docs.hp.com. In a future release, the security file will be populated with comments so all the options will be visible. Unfortunately, is any of the entries are misspelled or have a wrong option, the item is silently ignored.</description>
      <pubDate>Thu, 19 Dec 2002 04:38:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/parameter-passwd/m-p/2866003#M821537</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2002-12-19T04:38:37Z</dc:date>
    </item>
  </channel>
</rss>

