CVE-2026-70637 Details
Description
LightFTP through 2.4 contains multiple data race vulnerabilities in ftpserv.c that allow anonymous attackers to cause undefined behavior by issuing LIST followed by ABOR commands without authentication. The control thread closes data_socket and file_fd descriptors while worker threads concurrently operate on the same fields in worker_thread_cleanup, allowing stale file descriptors to be reassigned by the OS and subsequently used by worker threads on unrelated resources, resulting in potential denial of service.
A data race vulnerability has been identified in LightFTP versions through 2.4, specifically within the ftpserv.c file. This vulnerability allows anonymous attackers to cause undefined behavior by sending LIST commands followed by ABOR commands, without authentication. The issue arises because the control thread closes data_socket and file_fd descriptors while worker threads are still using the same fields, leading to a race condition. This allows stale file descriptors to be reassigned by the operating system and used by worker threads on unrelated resources, potentially causing a denial-of-service condition.
To address this vulnerability, synchronize access to the shared context fields using a mutex and make the worker_thread_abort flag atomic. Ensure that the close operations in worker_thread_cleanup are protected by the mutex and that the file descriptors are invalidated atomically before releasing the mutex, allowing the worker thread to detect the change before the next input/output operation.
Metrics
CVSS 4.0 Severity and Vector Strings:
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
Volerion
Assessed Aug 6, 2026CISA-ADP
Assessed Aug 6, 2026References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://github.com/hfiref0x/LightFTP/issues/75 | [email protected] | ExploitIssue TrackingTechnical AnalysisVendor |
| https://www.vulncheck.com/advisories/lightftp-data-race-condition-via-abor-command-in-ftpserv-c | [email protected] | Advisory |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-820 | Missing Synchronization | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| LightFTP | <= 2.4 |
CPE
Remediation
| |
Change History
3 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Aug 6, 2026 | CVE Modified | CISA-ADP |
| Aug 6, 2026 | CVE Modified | [email protected] |
| Aug 6, 2026 | New CVE Received | [email protected] |
Volerion