Home
Trends
Vulnerabilities
News
Researchers
Why dbugs?

Serhiy-Storchaka

#21425of 53,633
11.4Total CVSS
Vulnerabilities · 2
Medium
2
PT-2025-21282
5.9
2025-05-15
Python · Cpython · CVE-2025-4516
Name of the Vulnerable Software and Affected Versions: CPython (affected versions not specified) Description: The issue arises when using `bytes.decode()` with the "unicode escape" encoding and an error handler set to "ignore" or "replace". Users not utilizing this specific encoding or error handler are not affected. Recommendations: To work around this issue, consider stopping the use of the error handler in the `bytes.decode()` call and instead wrap it in a try-except block to catch the DecodeError.
PT-2025-48536
5.5
2024-05-21
Python · Python · CVE-2025-13837
**Name of the Vulnerable Software and Affected Versions** python3.9 python3.11 python3.13 **Description** The plistlib module does not properly validate the size of plist files during loading. A malicious plist file can specify a size that causes the module to attempt to allocate an excessive amount of memory, leading to an out-of-memory (OOM) condition and potential denial-of-service (DoS) issues. **Recommendations** For python3.9, avoid loading plist files from untrusted sources. For python3.11, avoid loading plist files from untrusted sources. For python3.13, avoid loading plist files from untrusted sources.