From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30924 invoked by alias); 9 Mar 2015 19:09:46 -0000 Mailing-List: contact glibc-bugs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: glibc-bugs-owner@sourceware.org Received: (qmail 30861 invoked by uid 48); 9 Mar 2015 19:09:43 -0000 From: "konstantin.s.serebryany at gmail dot com" To: glibc-bugs@sourceware.org Subject: [Bug libc/18043] buffer-overflow (read past the end) in wordexp/parse_dollars/parse_param Date: Mon, 09 Mar 2015 19:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: glibc X-Bugzilla-Component: libc X-Bugzilla-Version: 2.21 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: konstantin.s.serebryany at gmail dot com X-Bugzilla-Status: REOPENED X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: ppluzhnikov at google dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: security+ X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-03/txt/msg00086.txt.bz2 https://sourceware.org/bugzilla/show_bug.cgi?id=18043 --- Comment #13 from Kostya Serebryany --- here it is: #include #include #include int main() { setenv("Ca", NULL, 1); char *p = strdup("${Ca=}"); wordexp_t w; wordexp(p, &w, 0); } ==15178== Invalid read of size 1 ==15178== at 0x4F1DC84: parse_param (wordexp.c:1570) ==15178== by 0x4F1DC84: parse_dollars (wordexp.c:2102) ==15178== by 0x4F1FFEB: wordexp (wordexp.c:2348) ==15178== by 0x400613: main ==15178== Address 0x51fb043 is 0 bytes after a block of size 3 alloc'd ==15178== at 0x4C2ABBD: malloc (vg_replace_malloc.c:296) ==15178== by 0x4E71DEC: __add_to_environ (setenv.c:267) ==15178== by 0x4C321FF: setenv (vg_replace_strmem.c:1844) ==15178== by 0x4005ED: main In my fuzzer one of the runs of wordexp is setting the env var to NULL and then the other iteration tries to read that env. var. -- You are receiving this mail because: You are on the CC list for the bug.