CVE-2006-0743:
Apache log4net format string vulnerability causes DoS
5
CVSS ScoreBasic Information
CVE ID
GHSA ID
EPSS Score
-
CWE
Published
5/1/2022
Updated
2/9/2024
KEV Status
No
Technology
C#
Technical Details
CVSS Vector
AV:N/AC:L/Au:N/C:N/I:N/A:P
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
log4net | nuget | <= 1.2.9 | 1.2.10 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The commit diff shows the vulnerability stemmed from directly passing the message to syslog() as the format string argument. The original code used 'syslog(priority, message)' which exposes a classic format string vulnerability when 'message' contains user-controlled content. The patch explicitly adds a static '%s' format string as the second parameter, making 'message' a safe argument rather than a format template. The CWE-134 classification and advisory descriptions confirm this was a format string misuse in the syslog function call.