|
Message-ID: <BLU0-SMTP28FB1C984A3963A1E55D7BFD220@phx.gbl> Date: Fri, 20 Apr 2012 09:54:45 +0200 From: Frank Dittrich <frank_dittrich@...mail.com> To: john-users@...ts.openwall.com Subject: Re: Re: Extract the cracked pass from John.pot On 04/20/2012 05:32 AM, donovan wrote: > new-host:run xxxx$ cut -d; -f 2- -s john.pot > test.txt You used a semicolon (;) instead of a colon (:). A semicolon marks the end of a unix command, so -f is treated as the next command. If you really want to split at a semicolon, do it like this: cut -d";" -f 2- -s john.pot > test.txt But in your pot file, the separator should be ':', not ';', unless you did youse the --sep=... option when invoking john. Frank
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.