Skip to content

Commit

Permalink
CVE-2017-15670: glob: Fix one-byte overflow [BZ #22320]
Browse files Browse the repository at this point in the history
  • Loading branch information
eggert authored and fweimer-rh committed Oct 20, 2017
1 parent 6d43de4 commit c369d66
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
2017-10-20 Paul Eggert <eggert@cs.ucla.edu>

[BZ #22320]
CVE-2017-15670
* posix/glob.c (__glob): Fix one-byte overflow.

2017-10-20 Wilco Dijkstra <wdijkstr@arm.com>

* malloc/malloc.c (sysdep-cancel.h): Add include.
Expand Down
4 changes: 4 additions & 0 deletions NEWS
Expand Up @@ -72,6 +72,10 @@ Security related changes:
vulnerability; only trusted binaries must be examined using the ldd
script.)

CVE-2017-15670: The glob function, when invoked with GLOB_TILDE, suffered
from a one-byte overflow during ~ operator processing (either on the stack
or the heap, depending on the length of the user name).

The following bugs are resolved with this release:

[The release manager will add the list generated by
Expand Down
2 changes: 1 addition & 1 deletion posix/glob.c
Expand Up @@ -790,7 +790,7 @@ __glob (const char *pattern, int flags, int (*errfunc) (const char *, int),
*p = '\0';
}
else
*((char *) mempcpy (newp, dirname + 1, end_name - dirname))
*((char *) mempcpy (newp, dirname + 1, end_name - dirname - 1))
= '\0';
user_name = newp;
}
Expand Down

0 comments on commit c369d66

Please sign in to comment.