Logrus is vulnerable to DoS when using Entry.Writer()
High severity GitHub Reviewed Published Dec 4, 2025 to the GitHub Advisory Database • Updated Dec 5, 2025
Package
github.com/sirupsen/logrus (Go)
Affected versions
< 1.8.3
= 1.9.0
= 1.9.2
Patched versions
1.8.3
1.9.1
1.9.3
Description
Published by the National Vulnerability DatabaseDec 4, 2025
Published to the GitHub Advisory Database Dec 4, 2025
Reviewed Dec 5, 2025
Last updated Dec 5, 2025
A denial-of-service vulnerability exists in github.com/sirupsen/logrus when using Entry.Writer() to log a single-line payload larger than 64KB without newline characters. Due to limitations in the internal bufio.Scanner, the read fails with "token too long" and the writer pipe is closed, leaving Writer() unusable and causing application unavailability (DoS). This affects versions < 1.8.3, 1.9.0, and 1.9.2. The issue is fixed in 1.8.3, 1.9.1, and 1.9.3+, where the input is chunked and the writer continues to function even if an error is logged.
References