Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-jf9p-2fv9-2jp2

Опубликовано: 21 нояб. 2025
Источник: github
Github: Прошло ревью
CVSS4: 8.7
CVSS3: 7.5

Описание

thread-amount Vulnerable to Resource Exhaustion (Memory and Handle Leaks) on Windows and macOS

Affected versions of this crate contain resource leaks when querying thread counts on Windows and Apple platforms.

Windows

The thread_amount function calls CreateToolhelp32Snapshot but fails to close the returned HANDLE using CloseHandle. Repeated calls to this function will cause the handle count of the process to grow indefinitely, eventually leading to system instability or process termination when the handle limit is reached.

macOS / iOS

The thread_amount function calls task_threads (via Mach kernel APIs) which allocates memory for the thread list. The function fails to deallocate this memory using vm_deallocate. Repeated calls will result in a steady memory leak, eventually causing the process to be killed by the OOM (Out of Memory) killer.

Impact

Long-running applications (such as servers, daemons, or monitoring tools) that use this crate to periodically check thread counts will eventually crash due to resource exhaustion.

Resources

Пакеты

Наименование

thread-amount

rust
Затронутые версииВерсия исправления

< 0.2.2

0.2.2

EPSS

Процентиль: 19%
0.0006
Низкий

8.7 High

CVSS4

7.5 High

CVSS3

Дефекты

CWE-400
CWE-772

Связанные уязвимости

nvd
3 месяца назад

thread-amount is a tool that gets the amount of threads in the current process. Prior to version 0.2.2, there are resource leaks when querying thread counts on Windows and Apple platforms. In Windows platforms, the thread_amount function calls CreateToolhelp32Snapshot but fails to close the returned HANDLE using CloseHandle. Repeated calls to this function will cause the handle count of the process to grow indefinitely, eventually leading to system instability or process termination when the handle limit is reached. In Apple platforms, the thread_amount function calls task_threads (via Mach kernel APIs) which allocates memory for the thread list. The function fails to deallocate this memory using vm_deallocate. Repeated calls will result in a steady memory leak, eventually causing the process to be killed by the OOM (Out of Memory) killer. This issue has been patched in version 0.2.2.

EPSS

Процентиль: 19%
0.0006
Низкий

8.7 High

CVSS4

7.5 High

CVSS3

Дефекты

CWE-400
CWE-772