<?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: user password lost.. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775675#M942783</link>
    <description>Isn't it ironic how whenever they try to make security tighter, we always nullify it by doing things like writing down the password because we can't remember it???&lt;BR /&gt;&lt;BR /&gt;It's just silly.&lt;BR /&gt;&lt;BR /&gt;I started using German words in my passwords so I can remember them - the password programs don't seem to pick up on foreign words.  Just use something that isn't spelled like an english word (or whatever language your password program speaks), add a number and an underscore or something.&lt;BR /&gt;&lt;BR /&gt;Good luck!</description>
    <pubDate>Wed, 31 Jul 2002 13:33:20 GMT</pubDate>
    <dc:creator>Vincent Fleming</dc:creator>
    <dc:date>2002-07-31T13:33:20Z</dc:date>
    <item>
      <title>user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775664#M942772</link>
      <description>Hi, I just changed, and forgot my user password on a system here at Dec 2001 patch level (wu ftpd 2.6.1, ssh 1.2.27,  8.9.3 (PHNE_18546)/8.8.6)&lt;BR /&gt;&lt;BR /&gt;Now, rather than ask root where the box is and to change my password, I'd like to try to parse a file with all my common passwords and just send that to the box.&lt;BR /&gt;&lt;BR /&gt;It's a pain in the butt entering one by one.&lt;BR /&gt;&lt;BR /&gt;If that fails, I'm gonna attempt to crach the box via sw exploit to get my passwd back. any starters!?&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
      <pubDate>Tue, 30 Jul 2002 14:24:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775664#M942772</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-07-30T14:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775665#M942773</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt;If you have expect installed, you could try;&lt;BR /&gt;&lt;BR /&gt;for pw in `cat pw.lst`&lt;BR /&gt;do&lt;BR /&gt;echo "Trying $pw"&lt;BR /&gt;./telnet_system.exp $pw&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;where telnet_system.exp contains&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#!/usr/local/bin/expect&lt;BR /&gt;&lt;BR /&gt;set timeout 5&lt;BR /&gt;set term vt100&lt;BR /&gt;set password [lindex $argv 0]&lt;BR /&gt;&lt;BR /&gt;spawn telnet &lt;SERVER&gt;&lt;BR /&gt;&lt;BR /&gt;expect {*ogin:}&lt;BR /&gt;send "&lt;USERID&gt;\n"&lt;BR /&gt;&lt;BR /&gt;expect {*word:}&lt;BR /&gt;send "$password\n"&lt;BR /&gt;&lt;BR /&gt;close -i $spawn_id&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This should open the connection to your server, send your ID when it sees any prompt ending in ogin: and then each password in turn at any prompt ending in word:&lt;/USERID&gt;&lt;/SERVER&gt;</description>
      <pubDate>Tue, 30 Jul 2002 14:54:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775665#M942773</guid>
      <dc:creator>Chris Wilshaw</dc:creator>
      <dc:date>2002-07-30T14:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775666#M942774</link>
      <description>Maybe you should anon ftp to the box, grab the passwd file (assuming it's not using tcb), and run Crack!, Crackerjack or John the Ripper against it (the best passwd crackers I know).&lt;BR /&gt;&lt;BR /&gt;The expect suggestion would work, problem is - what happens if there's a lockout on your ID? You'd have to go to root user anyways :-)&lt;BR /&gt;&lt;BR /&gt;Cheers!&lt;BR /&gt;James</description>
      <pubDate>Tue, 30 Jul 2002 15:09:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775666#M942774</guid>
      <dc:creator>James Beamish-White</dc:creator>
      <dc:date>2002-07-30T15:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775667#M942775</link>
      <description>If you're like most of us, you use only a limited number of passwords...&lt;BR /&gt;&lt;BR /&gt;If so, note that the cypher in the passwd file is the same on all UNIX boxes for the same password.&lt;BR /&gt;&lt;BR /&gt;You can take the cypher from your passwd entry on the suspect box, and compare it to cyphers on other boxes.  A match is your answer.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Jul 2002 16:12:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775667#M942775</guid>
      <dc:creator>Vincent Fleming</dc:creator>
      <dc:date>2002-07-30T16:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775668#M942776</link>
      <description>Going along with Vince's suggestion, here's a script that someone I met from HP and &amp;amp; worked out.  You might be able to modify it for your specific needs .. then just remsh to whatever box you want.&lt;BR /&gt;============================&lt;BR /&gt;Criteria was to change only users who had CAPITAL Letters in their login ID and had the &lt;BR /&gt;value of password had expired (3...)&lt;BR /&gt;&lt;BR /&gt;1. Take a dummy account and key in the new password to get the &lt;BR /&gt;             encrypted password...&lt;BR /&gt;&lt;BR /&gt;             Here's the basic script we tested with:&lt;BR /&gt;&lt;BR /&gt;             newpass="&lt;THE encrypted="" p=""&gt;"&lt;BR /&gt;             cat /etc/passwd | while read line #read /etc/passwd line by line&lt;BR /&gt;             do&lt;BR /&gt;             echo $line | grep -q '^[A-Z][A-Z]*:[^:]*,3\.\.\.:' #see if it &lt;BR /&gt;             matches the criteria&lt;BR /&gt;             if [ $? -eq 0 ]&lt;BR /&gt;             then #now replace old passwd for new passwd and print line&lt;BR /&gt;             username=`echo $line | cut -d: -f1`&lt;BR /&gt;             therest=`echo $line | cut -d: -f 3-`&lt;BR /&gt;             echo $username:$newpass:$therest&lt;BR /&gt;             else #print unmodified lines&lt;BR /&gt;             echo $line&lt;BR /&gt;             fi&lt;BR /&gt;             done&lt;BR /&gt;===========================&lt;BR /&gt;I used the above to do a mass change to about 700 users..while not changing all the others.  It worked.&lt;BR /&gt;&lt;BR /&gt;Just a thought,&lt;BR /&gt;Rita&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/THE&gt;</description>
      <pubDate>Tue, 30 Jul 2002 17:10:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775668#M942776</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2002-07-30T17:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775669#M942777</link>
      <description>In response to the post by Vincent.&lt;BR /&gt;&lt;BR /&gt;I have two boxes that for the same user account have the same password, and the hash in the /etc/passwd file is NOT the same on both.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Tony</description>
      <pubDate>Tue, 30 Jul 2002 17:14:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775669#M942777</guid>
      <dc:creator>Tony Contratto</dc:creator>
      <dc:date>2002-07-30T17:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775670#M942778</link>
      <description>Vincent, please read&lt;BR /&gt;&lt;A href="http://www.bioinformatics.dundee.ac.uk/BOOKS/NetworkingBookshelf/puis/ch08_06.htm" target="_blank"&gt;http://www.bioinformatics.dundee.ac.uk/BOOKS/NetworkingBookshelf/puis/ch08_06.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;section 8.6.2 for a description of 'salt' and&lt;BR /&gt;how it relates to passwords.&lt;BR /&gt;&lt;BR /&gt;(This is a quote from Practical Unix and&lt;BR /&gt;Internet Security.)&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Jul 2002 05:14:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775670#M942778</guid>
      <dc:creator>doug hosking</dc:creator>
      <dc:date>2002-07-31T05:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775671#M942779</link>
      <description>OK, so I'm a little outdated.  I have several system at home (none are HP-UX, sorry to say), and only 1 seems to be using "salt".  The others generated identical passwords.  Granted, they're older systems.&lt;BR /&gt;&lt;BR /&gt;Hey - it was just a suggestion...&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Jul 2002 12:29:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775671#M942779</guid>
      <dc:creator>Vincent Fleming</dc:creator>
      <dc:date>2002-07-31T12:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775672#M942780</link>
      <description>Great, I got the passwd file as anon via the ftp service.. my password is under cracking...&lt;BR /&gt;should take all night..&lt;BR /&gt;&lt;BR /&gt;I'm sure there are other remote root exploits I could use, just a matter of looking through the right cert..&lt;BR /&gt;&lt;BR /&gt;Has anyone got a good password strategy to propose so this doesn't happen again.&lt;BR /&gt;&lt;BR /&gt;Password must be 8 letters, including 1 number at least, 1 capital, 1 nonalphabetic character and stripping off the number and nonalphabetic character, cannot be a dictionary word.&lt;BR /&gt;&lt;BR /&gt;This is a real pain in the but for me.&lt;BR /&gt;I must have tried 10 different passwords before it accepted a change, then I completely forgot what it was!&lt;BR /&gt;&lt;BR /&gt;Damn.  Next time I'll just write it down on a post-it and stick it onto my monitor.&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
      <pubDate>Wed, 31 Jul 2002 12:40:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775672#M942780</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-07-31T12:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775673#M942781</link>
      <description>If you put your frequently used passwords at the top of the crack dictionary list, you might succeed faster than overnight.  And  you may not succeed at all if the password is a variation with number substitutions, etc.&lt;BR /&gt;&lt;BR /&gt;With so many systems to log onto with different change intervals and different rules for password composition, I find it necessary to keep a pgp-encrypted password list with system name, id, password, and date changed.  If I don't forget my PGP password, I'm ok.</description>
      <pubDate>Wed, 31 Jul 2002 13:05:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775673#M942781</guid>
      <dc:creator>W.C. Epperson</dc:creator>
      <dc:date>2002-07-31T13:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775674#M942782</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt;I'd be very surprised if Crack figures out a password like you've described (that's probably why they came up with that requirement).  Let us know, would you please?&lt;BR /&gt;&lt;BR /&gt;Pete (whose terminal is covered with sticky notes)</description>
      <pubDate>Wed, 31 Jul 2002 13:12:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775674#M942782</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-07-31T13:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775675#M942783</link>
      <description>Isn't it ironic how whenever they try to make security tighter, we always nullify it by doing things like writing down the password because we can't remember it???&lt;BR /&gt;&lt;BR /&gt;It's just silly.&lt;BR /&gt;&lt;BR /&gt;I started using German words in my passwords so I can remember them - the password programs don't seem to pick up on foreign words.  Just use something that isn't spelled like an english word (or whatever language your password program speaks), add a number and an underscore or something.&lt;BR /&gt;&lt;BR /&gt;Good luck!</description>
      <pubDate>Wed, 31 Jul 2002 13:33:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775675#M942783</guid>
      <dc:creator>Vincent Fleming</dc:creator>
      <dc:date>2002-07-31T13:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775676#M942784</link>
      <description>I construct passwords using numbers and special characters. E.g. replacing i's with 1's, e's with {'s, o's with 0's etc. I then use 2 words, one of which I can relate to the system or to something I can see. For example, maybe compaq becomes pack. Then the second word is something in your head, maybe an unlikely hobby or tv program. String them together a few times and your memory should do the rest.&lt;BR /&gt;&lt;BR /&gt;So for example, compaq goes to pack plus startrek goes to trek goes to packtrek goes to pa(ktr3k for a password that is very unlikely to be guessed.&lt;BR /&gt;&lt;BR /&gt;James&lt;BR /&gt;-Student of memory and study.</description>
      <pubDate>Wed, 31 Jul 2002 13:38:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775676#M942784</guid>
      <dc:creator>James Beamish-White</dc:creator>
      <dc:date>2002-07-31T13:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775677#M942785</link>
      <description>... or alternately, do what I do. Buy a Palm, stick some decent encryption SW on it, and write down all your passwords in the one (encrypted) place ;-)&lt;BR /&gt;&lt;BR /&gt;Cheers!&lt;BR /&gt;James</description>
      <pubDate>Wed, 31 Jul 2002 13:39:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775677#M942785</guid>
      <dc:creator>James Beamish-White</dc:creator>
      <dc:date>2002-07-31T13:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775678#M942786</link>
      <description>What I do to keep passwords straight is to use a random alpha/numeric sequence that is easy for me to remember, followed by or placed in the middle, the month of the year. Then every 60 days I just change the month number i.e. xys!bdf02 for February then it would be xys!bdf04 for April etc. Some systems want the passwords to have more than two characters different, but most systems only remember about 6 of your past passwords so it shouldn't be to bad to come up with a variation on my theme that would work for all of your systems. Of course the down side is that all of your systems have the same password, but this is still better than English words.</description>
      <pubDate>Wed, 31 Jul 2002 15:36:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775678#M942786</guid>
      <dc:creator>John Dvorchak</dc:creator>
      <dc:date>2002-07-31T15:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775679#M942787</link>
      <description>I'm kindof impressed with john the ripper.&lt;BR /&gt;It got root's password, but not mine or most of the users yet!&lt;BR /&gt;So I guess my problem is solved ;)&lt;BR /&gt;I will let you know if it gets mine!&lt;BR /&gt;which was some kind of mix of this:&lt;BR /&gt;d0LrB1l$&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Bil</description>
      <pubDate>Wed, 31 Jul 2002 17:38:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775679#M942787</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-07-31T17:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775680#M942788</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt;Did root's password follow the same rules you described?&lt;BR /&gt;&lt;BR /&gt;Pete &lt;BR /&gt;(whose own four letter password Crack was unable to break)</description>
      <pubDate>Wed, 31 Jul 2002 17:45:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775680#M942788</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-07-31T17:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: user password lost..</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775681#M942789</link>
      <description>Bill,&lt;BR /&gt;&lt;BR /&gt; I'm not surprised.&lt;BR /&gt;John's the one to fear - not Crack.&lt;BR /&gt;It's a very impressive engine.&lt;BR /&gt;&lt;BR /&gt;If you can come up with PWs that John the Ripper has to crank on for quite a while, then you've done a good job creating it, and Crack will probably never get it.&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Jeff (who needs Gingko Boloba to remember his)</description>
      <pubDate>Wed, 31 Jul 2002 17:53:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/user-password-lost/m-p/2775681#M942789</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-07-31T17:53:14Z</dc:date>
    </item>
  </channel>
</rss>

