<?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 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355702#M193192</link>
    <description>Anil got there first. Thanks for all your help chaps.&lt;BR /&gt;&lt;BR /&gt;Pete</description>
    <pubDate>Thu, 12 Aug 2004 10:20:03 GMT</pubDate>
    <dc:creator>Peter Young_4</dc:creator>
    <dc:date>2004-08-12T10:20:03Z</dc:date>
    <item>
      <title>Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355696#M193186</link>
      <description>We are running HP-UX11i on an rp8420. I need to find out who changed a password for a particular user and at what time. Are there any logs which may provide me with this information?</description>
      <pubDate>Thu, 12 Aug 2004 09:24:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355696#M193186</guid>
      <dc:creator>Peter Young_4</dc:creator>
      <dc:date>2004-08-12T09:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355697#M193187</link>
      <description>Peter,&lt;BR /&gt;&lt;BR /&gt;The only people that can change the password would be the user themselves or root.  To the best of my knowledge this information is not logged anywhere and, even if it was, you would not necessarily know who was logged in as root.&lt;BR /&gt;&lt;BR /&gt;I would suggest that you query anyone who has access to the root password.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 12 Aug 2004 09:26:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355697#M193187</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2004-08-12T09:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355698#M193188</link>
      <description>If system is in trusted mode the time of last successful password change can be known.&lt;BR /&gt;&lt;BR /&gt;/usr/lbin/getprpw -m spwchg "user_name"&lt;BR /&gt;&lt;BR /&gt;On non-trusted systems,&lt;BR /&gt;&lt;BR /&gt;passwd -sa, should give you something.&lt;BR /&gt;&lt;BR /&gt;It is not possible to know who changed it - root or user himself.&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Thu, 12 Aug 2004 09:35:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355698#M193188</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-08-12T09:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355699#M193189</link>
      <description>Is this system trusted?  If so, you should be able to use the getprpw command to see when the password was changed.&lt;BR /&gt;&lt;BR /&gt;Try this:&lt;BR /&gt;&lt;BR /&gt;# /usr/lbin/getprpw -m spwchg userid&lt;BR /&gt;&lt;BR /&gt;I haven't been able to figure how to get who changed it.&lt;BR /&gt;&lt;BR /&gt;Ways a passwd can be changed:&lt;BR /&gt;1) The user themselves&lt;BR /&gt;2) root&lt;BR /&gt;3) someone with restricted SAM access that can do user maintenance&lt;BR /&gt;4) someone with appropriae sudo (or some equivalent program) access&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Aug 2004 09:36:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355699#M193189</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2004-08-12T09:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355700#M193190</link>
      <description>If you have password aging enabled, &lt;BR /&gt;passwd -s -a &lt;BR /&gt;Will give you the date that the password was last changed.</description>
      <pubDate>Thu, 12 Aug 2004 09:39:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355700#M193190</guid>
      <dc:creator>john kingsley</dc:creator>
      <dc:date>2004-08-12T09:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355701#M193191</link>
      <description>IF there is not default (system) way options do then, we can go for scripting as,&lt;BR /&gt;&lt;BR /&gt; Make  a script as,&lt;BR /&gt; &lt;BR /&gt;  mv /usr/bin/passwd to /usr/bin/passwdorg&lt;BR /&gt;&lt;BR /&gt; And gets the passwd command arguments and call the /usr/bin/passwdorg (original command) in it.&lt;BR /&gt;&lt;BR /&gt; Here include your debug statments of date,userasked informations of full command line arguments to a logfile (/var/adm/syslog/passwdlog ).&lt;BR /&gt;&lt;BR /&gt; Move this script to /usr/bin/passwd location so that all passwd actions will be logged.&lt;BR /&gt;&lt;BR /&gt;HTH.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Muthu&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Aug 2004 10:15:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355701#M193191</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-08-12T10:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355702#M193192</link>
      <description>Anil got there first. Thanks for all your help chaps.&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 12 Aug 2004 10:20:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355702#M193192</guid>
      <dc:creator>Peter Young_4</dc:creator>
      <dc:date>2004-08-12T10:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355703#M193193</link>
      <description>on a 11i (atleast in my machine :-)) trusted system, if the user password is changed by root, the next time the user logs in, a message similar to the one is displayed&lt;BR /&gt;&lt;BR /&gt;login: swamins1&lt;BR /&gt;Your password was changed by root&lt;BR /&gt;Password: &lt;BR /&gt;&lt;BR /&gt;If the password was changed by the user itself, the user will not see any message.&lt;BR /&gt;&lt;BR /&gt;u_pwchanger is the field in the TCB file that contains the username of the user that changed the password.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;    u_pwchanger    This field records the user id of the last person to&lt;BR /&gt;                     change the account password if that user was not the&lt;BR /&gt;                     same the account's user. This is used to warn the user&lt;BR /&gt;                     at login time if the account password has been changed&lt;BR /&gt;                     possibly without the knowledge of the user.</description>
      <pubDate>Thu, 12 Aug 2004 10:28:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/password/m-p/3355703#M193193</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-08-12T10:28:46Z</dc:date>
    </item>
  </channel>
</rss>

