|
Message-ID: <20120419170222.GA23574@openwall.com> Date: Thu, 19 Apr 2012 21:02:22 +0400 From: Solar Designer <solar@...nwall.com> To: john-users@...ts.openwall.com Subject: Re: Extract the cracked pass from John.pot On Thu, Apr 19, 2012 at 04:52:18PM +0000, donovan wrote: > What is the correct syntax command for extract the cracked pass from John.pot ? Actually, it is: john --show PASSWORD-FILES-HERE but that's probably not what you wanted, or you would not be asking. I guess you want to extract just the passwords and without limiting that by password file, right? > I try some's commmands but unfortunetly don't work, here they are ; > > cut -d: -f2 john.pot > PassFromJohn.txt Actually, this should almost work. I don't know why it does not work for you. A slightly better command to use is: cut -d: -f2- john.pot > PassFromJohn.txt with the extra dash after the "-f2". This differs in the handling of passwords containing colons. With LM and bigcrypt hashes, this will only provide password halves, though (unlike "--show", which combines the halves). Alexander
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.