You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+32-2Lines changed: 32 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,29 @@ Project goals:
14
14
-**Snapshotting and iteration**: Plan is to allow code to be iteratively executed and snapshotted at each function call
15
15
- Targets the latest stable version of Python, currently Python 3.14
16
16
17
+
## Important Security Notice
18
+
19
+
It's ABSOLUTELY CRITICAL that there's no way for code run in a Monty sandbox to access the host filesystem, or environment or to in any way "escape the sandbox".
20
+
21
+
**Monty will be used to run untrusted, potentially malicious code.**
22
+
23
+
Make sure there's no risk of this, either in the implementation, or in the public API that makes it more like that a developer using the pydantic_monty package might make such a mistake.
24
+
25
+
Possible security risks to consider:
26
+
* filesystem access
27
+
* path traversal to access files the users did not intend to expose to the monty sandbox
0 commit comments