Files
esp-idf/components/esp_event
Konstantin Kondrashov fb650ab64a fix(esp_event): fix format string vulnerability in esp_event_dump (SEC-064)
fprintf(file, buf) is a format-string sink: if any registered event base
or handler name contains "%", fprintf interprets it as a format directive,
causing an information leak or crash.

Replace with fprintf(file, "%s", buf) so the buffer is always treated as
plain text regardless of its content.

Closes SEC_064
2026-07-21 17:16:06 +03:00
..
2025-03-05 12:08:48 +08:00