<?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_min_special _char in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003702#M425035</link>
    <description>Special thanks to Bill for his reply.</description>
    <pubDate>Wed, 12 Sep 2007 07:59:00 GMT</pubDate>
    <dc:creator>Elena Leontieva</dc:creator>
    <dc:date>2007-09-12T07:59:00Z</dc:date>
    <item>
      <title>password_min_special _char</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003697#M425030</link>
      <description>Hello, &lt;BR /&gt;&lt;BR /&gt;I wonder if all special characters can be used in a password, specifically the "#" sign?&lt;BR /&gt;&lt;BR /&gt;One user complained that if she has a "#" in a password the system would not let her log in.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Elena.</description>
      <pubDate>Fri, 15 Sep 2006 16:04:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003697#M425030</guid>
      <dc:creator>Elena Leontieva</dc:creator>
      <dc:date>2006-09-15T16:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: password_min_special _char</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003698#M425031</link>
      <description># can not be used as well as @ in passwords as they have special meaning to the terminal sessions.</description>
      <pubDate>Fri, 15 Sep 2006 16:14:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003698#M425031</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2006-09-15T16:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: password_min_special _char</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003699#M425032</link>
      <description>Hi Elena,&lt;BR /&gt;&lt;BR /&gt;Mel has provided the correct answer. You can't use "@ and #" as a special characters in the password.&lt;BR /&gt;&lt;BR /&gt;sp,</description>
      <pubDate>Fri, 15 Sep 2006 16:40:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003699#M425032</guid>
      <dc:creator>Sp4admin</dc:creator>
      <dc:date>2006-09-15T16:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: password_min_special _char</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003700#M425033</link>
      <description>Hi Elena:&lt;BR /&gt;&lt;BR /&gt;In fact, the restrictions are documented in the 'getty(1M)' manpages under "BUGS":&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/en/B2355-60127/getty.1M.html" target="_blank"&gt;http://www.docs.hp.com/en/B2355-60127/getty.1M.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 15 Sep 2006 17:10:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003700#M425033</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-09-15T17:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: password_min_special _char</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003701#M425034</link>
      <description>Actually, it is not quite true that # and @ cxannot be used in a password. The reason that they are not recommended is that the default stty settings have #=backspace @=cancel. It's been that way for about 20 years in HP-UX. However, a change was (quietly) made to the terminal drivers to enable the use of a new device file: /dev/ttyconf. This device file will set selected control character to new defaults. Now when you login, there is an stty statement in /etc/profile that 'fixes' the archaic default but prior to login, the login and password are processed with the defaults.&lt;BR /&gt; &lt;BR /&gt;So to fix this, you simply use stty with the /dev/ttyconf file as in:&lt;BR /&gt; &lt;BR /&gt;stty erase "^H" kill "^U" &amp;lt; /dev/ttyconf&lt;BR /&gt; &lt;BR /&gt;Now, a new login will be able to use the normal backspace key and passwords can contain # and @. To make this change permanent, create a start/stop script in /sbin/init.d and add that statement to the script. Note that the console login is special -- the device file is never closed so the new settings, even if enabled at the beginning of the boot process, will use the default setting.</description>
      <pubDate>Fri, 15 Sep 2006 17:13:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003701#M425034</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2006-09-15T17:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: password_min_special _char</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003702#M425035</link>
      <description>Special thanks to Bill for his reply.</description>
      <pubDate>Wed, 12 Sep 2007 07:59:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password-min-special-char/m-p/5003702#M425035</guid>
      <dc:creator>Elena Leontieva</dc:creator>
      <dc:date>2007-09-12T07:59:00Z</dc:date>
    </item>
  </channel>
</rss>

