BuddiesOfBudgie / budgie-desktop

Budgie Desktop is a familiar, modern desktop environment.
https://buddiesofbudgie.org
GNU General Public License v2.0
928 stars 47 forks source link

Fix heap buffer overflow in UsageMonitor #484

Open serebit opened 10 months ago

serebit commented 10 months ago

Description

The %ms format specifier, when passed to POSIX scanf, allocates the necessary space for the value that it reads into a char**.

Submitter Checklist

EbonJaeger commented 10 months ago

How portable is this? It looks like it's an extension done by GNU C, and I don't see any documentation, at least for OpenBSD that supports %m.

serebit commented 10 months ago

Hm... It's not portable. I'll need to figure out how to preallocate the required space, then.