<?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: NO Password in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173633#M458516</link>
    <description>I don't recall exactly, but, if you're root, "passwd -s" (without id) or "passwd -s *" should list every user currently in /etc/passwd. I believe it's the first case, but haven't got access to an hp box at the moment</description>
    <pubDate>Wed, 06 May 2009 13:15:08 GMT</pubDate>
    <dc:creator>OldSchool</dc:creator>
    <dc:date>2009-05-06T13:15:08Z</dc:date>
    <item>
      <title>NO Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173628#M458511</link>
      <description>Hi Team,&lt;BR /&gt;&lt;BR /&gt;Could you tell me the command to find no password users in server,&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Nanda</description>
      <pubDate>Wed, 06 May 2009 12:36:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173628#M458511</guid>
      <dc:creator>gogleboy</dc:creator>
      <dc:date>2009-05-06T12:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: NO Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173629#M458512</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;There is no command for that.&lt;BR /&gt;&lt;BR /&gt;You can edit /etc/passwd and null out the password field.&lt;BR /&gt;&lt;BR /&gt;Of course this will cause you problems on your next security audit.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 06 May 2009 12:45:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173629#M458512</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-05-06T12:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: NO Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173630#M458513</link>
      <description>Perhaps these threads will help:&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1108594" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1108594&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1103234" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1103234&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Wed, 06 May 2009 12:49:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173630#M458513</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2009-05-06T12:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: NO Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173631#M458514</link>
      <description>Run 'passwd -s &lt;USERNAME&gt;' for each user.  If the result is something like:&lt;BR /&gt;&lt;BR /&gt;username   NP&lt;BR /&gt;&lt;BR /&gt;Then that means the user does not have a password set.&lt;BR /&gt;&lt;BR /&gt;This could be easily scripted as well:&lt;BR /&gt;&lt;BR /&gt;for USER in $(awk -F : '{print $1}' /etc/passwd)&lt;BR /&gt;do&lt;BR /&gt;passwd -s ${USER}&lt;BR /&gt;done&lt;/USERNAME&gt;</description>
      <pubDate>Wed, 06 May 2009 12:57:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173631#M458514</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2009-05-06T12:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: NO Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173632#M458515</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;on untrusted system you can use this command:&lt;BR /&gt;awk -F: '{if($2 ~ /\*/ ){print $1 " has curently no password"}}' /etc/passwd&lt;BR /&gt;&lt;BR /&gt;on trusted system, use the /etc/shadow file.&lt;BR /&gt;&lt;BR /&gt;regars,&lt;BR /&gt;Cedrick Gaillard</description>
      <pubDate>Wed, 06 May 2009 13:13:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173632#M458515</guid>
      <dc:creator>mobidyc</dc:creator>
      <dc:date>2009-05-06T13:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: NO Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173633#M458516</link>
      <description>I don't recall exactly, but, if you're root, "passwd -s" (without id) or "passwd -s *" should list every user currently in /etc/passwd. I believe it's the first case, but haven't got access to an hp box at the moment</description>
      <pubDate>Wed, 06 May 2009 13:15:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173633#M458516</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-05-06T13:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: NO Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173634#M458517</link>
      <description>I'm not sure OldSchool:&lt;BR /&gt;&lt;BR /&gt;# passwd -s&lt;BR /&gt;root  PS&lt;BR /&gt;# passwd -s *&lt;BR /&gt;Invalid login name.&lt;BR /&gt;# passwd -s \*&lt;BR /&gt;Invalid login name.&lt;BR /&gt;&lt;BR /&gt;duh!&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Cedrick Gaillard&lt;BR /&gt;</description>
      <pubDate>Wed, 06 May 2009 13:36:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173634#M458517</guid>
      <dc:creator>mobidyc</dc:creator>
      <dc:date>2009-05-06T13:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: NO Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173635#M458518</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;logins -p will give you the list of users, that doesn't have password.&lt;BR /&gt;&lt;BR /&gt;Ravi.</description>
      <pubDate>Wed, 06 May 2009 14:35:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173635#M458518</guid>
      <dc:creator>G V R Shankar</dc:creator>
      <dc:date>2009-05-06T14:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: NO Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173636#M458519</link>
      <description>Thanks lot dear friends...&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 06 May 2009 14:53:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173636#M458519</guid>
      <dc:creator>gogleboy</dc:creator>
      <dc:date>2009-05-06T14:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: NO Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173637#M458520</link>
      <description>Mobidyc said: "duh!"&lt;BR /&gt;&lt;BR /&gt;In my defense, I *said* I wasn't able to check it....after looking at the online "man" page, what I should have said was:&lt;BR /&gt;&lt;BR /&gt;as root on non-trusted system, run:&lt;BR /&gt;&lt;BR /&gt;  passwd -s -a&lt;BR /&gt;&lt;BR /&gt;oh, well....</description>
      <pubDate>Wed, 06 May 2009 18:31:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173637#M458520</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-05-06T18:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: NO Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173638#M458521</link>
      <description>Hey OldSchool,&lt;BR /&gt;&lt;BR /&gt;I said duh! but it was not pejorative.&lt;BR /&gt;Please don't think it had a critical meaning.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Cedrick Gaillard.</description>
      <pubDate>Thu, 07 May 2009 09:08:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-password/m-p/5173638#M458521</guid>
      <dc:creator>mobidyc</dc:creator>
      <dc:date>2009-05-07T09:08:49Z</dc:date>
    </item>
  </channel>
</rss>

