CVE-2024-7589
12.08.2024, 13:38
A signal handler in sshd(8) may call a logging function that is not async-signal-safe. The signal handler is invoked when a client does not authenticate within the LoginGraceTime seconds (120 by default). This signal handler executes in the context of the sshd(8)'s privileged code, which is not sandboxed and runs with full root privileges. This issue is another instance of the problem in CVE-2024-6387 addressed by FreeBSD-SA-24:04.openssh. The faulty code in this case is from the integration of blacklistd in OpenSSH in FreeBSD. As a result of calling functions that are not async-signal-safe in the privileged sshd(8) context, a race condition exists that a determined attacker may be able to exploit to allow an unauthenticated remote code execution as root.
Vendor | Product | Version |
---|---|---|
freebsd | freebsd | 𝑥 < 13.0 |
freebsd | freebsd | 13.1 ≤ 𝑥 < 13.3 |
freebsd | freebsd | 13.3:p1 |
freebsd | freebsd | 13.3:p2 |
freebsd | freebsd | 13.3:p3 |
freebsd | freebsd | 13.3:p4 |
freebsd | freebsd | 14.0:beta5 |
freebsd | freebsd | 14.0:p1 |
freebsd | freebsd | 14.0:p2 |
freebsd | freebsd | 14.0:p3 |
freebsd | freebsd | 14.0:p4 |
freebsd | freebsd | 14.0:p5 |
freebsd | freebsd | 14.0:p6 |
freebsd | freebsd | 14.0:p7 |
freebsd | freebsd | 14.0:p8 |
freebsd | freebsd | 14.0:rc3 |
freebsd | freebsd | 14.0:rc4-p1 |
freebsd | freebsd | 14.1:p1 |
freebsd | freebsd | 14.1:p2 |
𝑥
= Vulnerable software versions

Debian Releases

Ubuntu Releases
Common Weakness Enumeration
- CWE-362 - Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')The program contains a code sequence that can run concurrently with other code, and the code sequence requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence that is operating concurrently.
- CWE-364 - Signal Handler Race ConditionThe software uses a signal handler that introduces a race condition.