Skip to content

Commit

Permalink
Avoid reading past the end of buffer (Rui Reis)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoulasc committed Jun 9, 2018
1 parent 8ac1992 commit a642587
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/readelf.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "file.h"

#ifndef lint
FILE_RCSID("@(#)$File: readelf.c,v 1.142 2018/05/24 18:08:01 christos Exp $")
FILE_RCSID("@(#)$File: readelf.c,v 1.143 2018/06/09 16:00:06 christos Exp $")
#endif

#ifdef BUILTIN_ELF
Expand Down Expand Up @@ -842,7 +842,8 @@ do_core_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type,

cname = (unsigned char *)
&nbuf[doff + prpsoffsets(i)];
for (cp = cname; *cp && isprint(*cp); cp++)
for (cp = cname; cp < nbuf + size && *cp
&& isprint(*cp); cp++)
continue;
/*
* Linux apparently appends a space at the end
Expand Down

0 comments on commit a642587

Please sign in to comment.