Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion envs/repl_env/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies = [
# REPL custom Gradio tab on /web
"gradio>=4.0.0",
# Document upload support in the Gradio tab (server-side only, not in the sandbox)
"pypdf>=6.13.3",
"pypdf>=6.14.2",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Direct-dep floor bump verified — this is a security fix. pypdf 6.13.3 carries 4 DoS CVEs (CVE-2026-59935/59936/59937/59938) triggered by parsing crafted PDFs; all are fixed by ≤6.14.2, and CVE-2026-59935 is fixed only in 6.14.2, so bumping to exactly this version is what clears the full set.

Directly relevant here: server/gradio_ui.py:146 calls pypdf.PdfReader(io.BytesIO(fh.read())) on user-uploaded PDFs server-side (the comment notes "server-side only, not in the sandbox"). repl_env's requires-python >=3.10 satisfies pypdf's >=3.9, and no new runtime deps are pulled in.

]

[project.optional-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions envs/repl_env/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading