-
Notifications
You must be signed in to change notification settings - Fork 127
fix: handle unprotected JSON parsing in mime detection and Steel Browser API #671
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -74,8 +74,11 @@ def guess_mime_type_from_bytes(data: bytes, filename: str = None) -> str: | |
| elif data.startswith(b"<?xml"): | ||
| return "application/xml" | ||
| elif data.startswith(b"{") or data.startswith(b"["): | ||
| json.loads(data.decode("utf-8")) | ||
| return "application/json" | ||
| try: | ||
| json.loads(data.decode("utf-8")) | ||
| return "application/json" | ||
| except (json.JSONDecodeError, UnicodeDecodeError): | ||
| pass | ||
|
Comment on lines
76
to
+81
|
||
| elif data.startswith(b"Name,") or b"," in data[:100] and b"\n" in data[:100]: | ||
| return "text/csv" | ||
| elif data.startswith(b"#") or (b" " in data and b"\n" in data and len(data.split(b"\n")) > 1): | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider chaining the caught JSON parsing error when re-raising
ToolExecutionException(e.g.,... from e). Without exception chaining, the original traceback/context for whyresponse.json()failed is lost, which makes debugging proxy/HTML/empty-body cases harder.