Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Tue, 29 Jan 2013 22:37:50 +0100
From: magnum <john.magnum@...hmail.com>
To: john-dev@...ts.openwall.com
Subject: Re: dmg2john

On 29 Jan, 2013, at 2:04 , Solar Designer <solar@...nwall.com> wrote:
> On Tue, Jan 29, 2013 at 01:28:57AM +0400, Solar Designer wrote:
>> On Mon, Jan 28, 2013 at 11:22:24PM +0200, Milen Rangelov wrote:
>>> 		cno = ceil(header2.datasize / 4096.0) - 2;
>>> 		chunk = (unsigned char *) malloc(header2.datasize);
>>> 		data_size = header2.datasize - cno * 4096;
>>> 		if (data_size < 0) {
>> 
>> So I suggested in the Twitter thread that folks try size_t for now, but
>> the correct fix would be different, so that the sanity check is not
>> removed.  Perhaps use ssize_t or "long long", or rewrite the check.
> 
> I chose to post a different patch in response to Jeremiah's message on
> john-users.  That's because there's also a printf format string that
> uses "%d", and cno and data_size are also of type int in dmg_fmt_plug.c.
> 
> The patch that I posted should be good for up to 8 TB.

Apparently not. I can reproduce his problems. This is with the patch applied:

Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_INVALID_ADDRESS at address: 0x00000000df7c6000
0x000000010006b4ac in print_hex (str=0xdf7c6000 <Address 0xdf7c6000 out of bounds>, len=8192) at dmg2john.c:75
75			printf("%02x", str[i]);
(gdb) bt
#0  0x000000010006b4ac in print_hex (str=0xdf7c6000 <Address 0xdf7c6000 out of bounds>, len=8192) at dmg2john.c:75
#1  0x000000010006b9d5 in hash_plugin_parse_hash (filename=0x7fff5fbffc9c "../../test.dmg") at dmg2john.c:164
(gdb) q

Line 164:  print_hex(chunk + cno * 4096, data_size);

Not sure if I should try to grok this and come up with a new temporary patch for Jeremiah or just wait for fundamentally better code?

magnum

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.