CWE-364: Signal Handler Race Condition
The product uses a signal handler that introduces a race condition.
Last updated
Overview
Race conditions frequently occur in signal handlers, since signal handlers support asynchronous actions. These race conditions have a variety of root causes and symptoms. Attackers may be able to exploit a signal handler race condition to cause the product state to be corrupted, possibly leading to a denial of service or even code execution. These issues occur when non-reentrant functions, or state-sensitive actions occur in the signal handler, where they may be called at any time. These behaviors can violate assumptions being made by the "regular" code that is interrupted, or by other signal handlers that may also be invoked. If these functions are called at an inopportune moment - such as while a non-reentrant function is already running - memory corruption could occur that may be exploitable for code execution. Another signal race condition commonly found occurs when free is called within a signal handler, resulting in a double free and therefore a write-what-where condition. Even if a given pointer is set to NULL after it has been freed, a race condition still exists between the time the memory was freed and the pointer was set to NULL. This is especially problematic if the same signal handler has been set for more than one signal -- since it means that the signal handler itself may be reentered. There are several known behaviors related to signal handlers that have received the label of "signal handler race condition": Shared state (e.g. global data or static variables) that are accessible to both a signal handler and "regular" code Shared state between a signal handler and other signal handlers Use of non-reentrant functionality within a signal handler - which generally implies that shared state is being used. For example, malloc() and free() are non-reentrant because they may use global or static data structures for managing memory, and they are indirectly used by innocent-seeming functions such as syslog(); these functions could be exploited for memory corruption and, possibly, code execution. Association of the same signal handler function with multiple signals - which might imply shared state, since the same code and resources are accessed. For example, this can be a source of double-free and use-after-free weaknesses. Use of setjmp and longjmp, or other mechanisms that prevent a signal handler from returning control back to the original functionality While not technically a race condition, some signal handlers are designed to be called at most once, and being called more than once can introduce security problems, even when there are not any concurrent calls to the signal handler. This can be a source of double-free and use-after-free weaknesses. Signal handler vulnerabilities are often classified based on the absence of a specific protection mechanism, although this style of classification is discouraged in CWE because programmers often have a choice of several different mechanisms for addressing the weakness. Such protection mechanisms may preserve exclusivity of access to the shared resource, and behavioral atomicity for the relevant code: Avoiding shared state Using synchronization in the signal handler Using synchronization in the regular code Disabling or masking other signals, which provides atomicity (which effectively ensures exclusivity)
Real-world CVEs
17 recorded CVEs are caused by CWE-364 (Signal Handler Race Condition). The highest-severity and most recent are shown first. 8 new CWE-364 CVEs have been recorded so far in 2026 (1 in 2025).
- CVE-2026-24792
web_webview has a Race Condition vulnerability
High · CVSS 8.1 · EPSS 35th2026-05-19 - CVE-2024-7589High · CVSS 8.1 · EPSS 79th2024-08-11
- CVE-2024-6387
Openssh: regresshion - race condition in ssh allows rce/dos
High · CVSS 8.1 · EPSS 100th2024-07-01 - CVE-2026-53185
zram: fix use-after-free in zram_bvec_write_partial()
High · CVSS 7.8 · EPSS 1th2026-06-25 - CVE-2026-52910
bpf: Free reuseport cBPF prog after RCU grace period.
High · CVSS 7.8 · EPSS 1th2026-06-19 - CVE-2026-46090
ALSA: aloop: Fix peer runtime UAF during format-change stop
High · CVSS 7.8 · EPSS 1th2026-05-27 - CVE-2026-42002
Concurrency and locking defects in GSS-TSIG
High · CVSS 7.5 · EPSS 18th2026-05-21 - CVE-2023-1285High · CVSS 7.5 · EPSS 48th2023-04-14
- CVE-2026-31474
can: isotp: fix tx.buf use-after-free in isotp_sendmsg()
High · CVSS 7.1 · EPSS 1th2026-04-22 - CVE-2024-6409
Openssh: possible remote code execution due to a race condition in signal handling affecting red hat enterprise linux 9
High · CVSS 7.0 · EPSS 98th2024-07-08 - CVE-2023-5676Medium · CVSS 5.9 · EPSS 33th2023-11-15
- CVE-2026-27766
multimedia_audio_framework has a Race Condition vulnerability
Medium · CVSS 5.5 · EPSS 1th2026-05-19
Showing 12 of 17 recorded CWE-364 CVEs. Track new ones as they are published and get AI-written analysis and fixes.
Monitor CWE-364 vulnerabilitiesCommon consequences
What can happen when CWE-364 is exploited.
Modify Application Data, Modify Memory, DoS: Crash, Exit, or Restart, Execute Unauthorized Code or Commands
Affects: Integrity, Confidentiality, Availability
It may be possible to cause data corruption and possibly execute arbitrary code by modifying global variables or data structures at unexpected times, violating the assumptions of code that uses this global data.
Gain Privileges or Assume Identity
Affects: Access Control
If a signal handler interrupts code that is executing with privileges, it may be possible that the signal handler will also be executed with elevated privileges, possibly making subsequent exploits more severe.
How it happens
When it is introduced
Typically introduced during these phases of the software lifecycle.
Applies to
Languages
How to prevent it
Practical mitigations for CWE-364, grouped by where in the lifecycle they apply.
Use a language that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.
Design signal handlers to only set flags, rather than perform complex functionality. These flags can then be checked and acted upon within the main program loop.
Only use reentrant functions within signal handlers. Also, use validation to ensure that state is consistent while performing asynchronous actions that affect the state of execution.
How to detect it
Automated Static Analysis
Automated static analysis, commonly referred to as Static Application Security Testing (SAST), can find some instances of this weakness by analyzing source code (or binary/compiled code) without having to execute it. Typically, this is done by building a model of data flow and control flow, then searching for potentially-vulnerable patterns that connect "sources" (origins of input) with "sinks" (destinations where the data interacts with external components, a lower layer such as the OS, etc.)
Code examples
Illustrative examples from MITRE showing how the weakness appears in code.
This code registers the same signal handler function with two different signals (CWE-831). If those signals are sent to the process, the handler creates a log message (specified in the first argument to the program) and exits.
Vulnerable example
char *logMessage;The following code registers a signal handler with multiple signals in order to log when a specific event occurs and to free associated memory before exiting.
Vulnerable example
#include <signal.h>Illustrative examples
Real CVEs that MITRE cites as examples of this weakness.
- CVE-1999-0035 — Signal handler does not disable other signal handlers, allowing it to be interrupted, causing other functionality to access files/etc. with raised privileges
- CVE-2001-0905 — Attacker can send a signal while another signal handler is already running, leading to crash or execution with root privileges
- CVE-2001-1349 — unsafe calls to library functions from signal handler
- CVE-2004-0794 — SIGURG can be used to remotely interrupt signal handler; other variants exist
- CVE-2004-2259 — SIGCHLD signal to FTP server can cause crash under heavy load while executing non-reentrant functions like malloc/free.
Terminology & mappings
Mapped taxonomies
- PLOVER: Signal handler race condition
- 7 Pernicious Kingdoms: Signal Handling Race Conditions
- CLASP: Race condition in signal handler
- Software Fault Patterns: Missing Lock (SFP19)
Frequently asked questions
Common questions about CWE-364.
- What is CWE-364?
- The product uses a signal handler that introduces a race condition.
- What CVEs are caused by CWE-364?
- 17 recorded CVEs are attributed to CWE-364, including CVE-2026-24792, CVE-2024-7589, CVE-2024-6387.
- How do you prevent CWE-364?
- Use a language that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.
- How is CWE-364 detected?
- Automated Static Analysis: Automated static analysis, commonly referred to as Static Application Security Testing (SAST), can find some instances of this weakness by analyzing source code (or binary/compiled code) without having to execute it. Typically, this is done by building a model of data flow and control flow, then searching for potentially-vulnerable patterns that connect "sources" (origins of input) with "sinks" (destinations where the data interacts with external components, a lower layer such as the OS, etc.)
- What are the consequences of CWE-364?
- Exploiting CWE-364 can lead to: Modify Application Data, Modify Memory, DoS: Crash, Exit, or Restart, Execute Unauthorized Code or Commands, Gain Privileges or Assume Identity.
- Is CWE-364 actively exploited?
- 17 recorded CVEs are caused by CWE-364; none are currently in CISA's KEV catalog of actively exploited flaws.
References
- MITRE CWE definition (CWE-364) (opens in a new tab)
- CWE-364 vulnerabilities on NVD (opens in a new tab)
- Learn: What is a CWE?
Weakness data is sourced from the MITRE CWE catalog (v4.20). CVE associations are aggregated and kept current by RadicalNotion.AI.
Stay ahead of CWE-364
Get alerted the moment a new CWE-364 vulnerability affects your stack, with AI-written analysis, severity context, and remediation guidance.