mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-28 05:40:11 -04:00
xcursor: fix CVE-2013-2003
The libXcursor fix for CVE-2013-2003 has never been imported into
wlroots, leaving it vulnerable to it.
Changing the argument type to an unsigned type is an effective merge of
Ilja Van Sprundel's commit in libXcursor.
Proof of Concept (compile with address sanitizer):
$ mkdir -p ~/.local/share/icons/poc/cursors
$ base64 -d <<< WGN1chAAAAAAAAAA/////w== > \
~/.local/share/icons/poc/cursors/poc
$ echo "seat seat0 xcursor_theme poc 10" > ~/poc-config
$ sway -c ~/poc-config
This commit is contained in:
parent
66d5805594
commit
d0c1f0c0b6
1 changed files with 1 additions and 1 deletions
|
|
@ -301,7 +301,7 @@ _XcursorFileHeaderDestroy (XcursorFileHeader *fileHeader)
|
||||||
}
|
}
|
||||||
|
|
||||||
static XcursorFileHeader *
|
static XcursorFileHeader *
|
||||||
_XcursorFileHeaderCreate (int ntoc)
|
_XcursorFileHeaderCreate (XcursorUInt ntoc)
|
||||||
{
|
{
|
||||||
XcursorFileHeader *fileHeader;
|
XcursorFileHeader *fileHeader;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue