mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-01-03 10:40:21 -05:00
Ignore DoS in python stdlib when reading from malicious HTTP server
Not important enough to risk updating past python 3.11. Will be fixed if and when there is a fixed version of python 3.11 released.
This commit is contained in:
parent
1b0a7b6c8c
commit
bf51250406
@ -167,8 +167,9 @@ def install_grype() -> str:
|
||||
|
||||
IGNORED_DEPENDENCY_CVES = [
|
||||
# Python stdlib
|
||||
'CVE-2025-8194', # DoS in tarfile
|
||||
'CVE-2025-6069', # DoS in HTMLParser
|
||||
'CVE-2025-8194', # DoS in tarfile
|
||||
'CVE-2025-6069', # DoS in HTMLParser
|
||||
'CVE-2025-13836', # DoS in http client reading from malicious server
|
||||
# glib
|
||||
'CVE-2025-4056', # Only affects Windows, on which we dont use glib
|
||||
# libtiff
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user