|
Message-ID: <loom.20130416T173352-557@post.gmane.org> Date: Tue, 16 Apr 2013 15:51:43 +0000 (UTC) From: johnuser <johnuser1243@...oo.com> To: john-dev@...ts.openwall.com Subject: simple issue to possibly fix To development team: cut/pasted from a web forum this simple issue to look at fixing. thanks [quote] hash is dynamic_1 with a hex salt tested on john-1.7.9-jumbo-7 represented as hash$HEX$salt where salt is 0d0a seems like however the salt is stored incorrectly in pot file once solved 6cd5ba91180dbf7276f8801283a45707$HEX$0d0a with wordlist using word bored solution stored as $dynamic_1$6cd5ba91180dbf7276f8801283a45707$HEX$da:bored [/quote] [quote] You should be able to fix that. Look in dynamic_utils.c, around line 165. Code: cpx += sprintf(cpx, "%x", *cp++); should be cpx += sprintf(cpx, "%02x", *cp++); [/quote]
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.