|
53 | 53 | # the vulnerable GMLAS driver, potentially rendering the application |
54 | 54 | # unresponsive. The issue is mitigated by introducing a limit on entity |
55 | 55 | # expansions and aborting parsing when the limit is exceeded. |
| 56 | +# Vulnerability ID: 82915 |
| 57 | +# Affected spec: <3.12.1 |
| 58 | +# ADVISORY: Affected versions of the gdal package are vulnerable to |
| 59 | +# path traversal due to insufficient path sanitization in multiple drivers. |
56 | 60 |
|
57 | 61 | # Ignore vulnerability found in jinja2 version 3.1.4 |
58 | 62 | # We do not allow any untrusted templates, and so are not affected. |
|
66 | 70 | # shouldn't use untrusted templates without sandboxing. |
67 | 71 | # CVE-2019-8341 |
68 | 72 |
|
| 73 | +# Vulnerability found in nbconvert version 7.16.6 |
| 74 | +# Vulnerability ID: 83150 |
| 75 | +# Affected spec: <=7.16.6 |
| 76 | +# ADVISORY: Affected versions of the nbconvert package are |
| 77 | +# vulnerable to Uncontrolled Search Path Element due to resolving the |
| 78 | +# inkscape executable on Windows using a search order that includes the |
| 79 | +# current working directory. In nbconvert/preprocessors/svg2pdf.py, the PDF |
| 80 | +# conversion flow for notebooks with SVG outputs locates and executes |
| 81 | +# inkscape without a fully qualified path, allowing a local inkscape.bat to |
| 82 | +# be selected and run. |
| 83 | +# NOTE: jupyterlab==4.4.8 uses nbconvert==7.16.6 and there is currently no patched version |
| 84 | +# of nbconvert for CVE-2025-53000. |
| 85 | +# The vulnerability was only published on December 17-18, 2025, and version 7.16.6 remains |
| 86 | +# the latest release. |
| 87 | +# Will ignore this and update once we got a fix |
| 88 | + |
69 | 89 | echo Package Vulnerabilities: |
70 | | -pip freeze | safety check --stdin --full-report -i 62283 -i 70612 -i 74054 |
| 90 | +pip freeze | safety check --stdin --full-report -i 62283 -i 70612 -i 74054 -i 82915 -i 83150 |
71 | 91 | SAFETY_RESULT=$? |
72 | 92 |
|
73 | 93 | # Suppress SAFETY_RESULT unless CHECK_SAFETY is set |
|
0 commit comments