Intercept and approve filesystem-modifying syscalls
Project description
ptrace-approve
Approve a programs actions from the command-line. Remeber choices.
Claude code approval system for the code generated by claude code.
This is ai-generated unreviewed code. I have used it a coouple of times.
Caveats
AI-generated code, unreviewed, slow. This runs python code on every system call so for some use cases is very slow and breaks parallelization, think lots of system calls in parallel threads.
Processes and not traced after an exec (--trace-children), but you will have approved the exec. I had issues getting filenames (due to not being able to access memory) when we exec'd into other processes. This specifically happened for git. But this is not the normal mode of execution.
Motivation
I wanted to rub some vibe coded apps over my code and not have it destroy my code.
Alternatives and prior work
This is influenced form a UI perspective by cluade code, where you approve individual commands as claude wishes to run them, optionally adding exceptions. There is a tool called maybe which is a similar idea and has been declared as unmaintained by it's previous maintainer.
ptrace-approve uses ptrace and apparmor does similar things. Apparmor is faster, and can record rules to allow - but not does not have this sort of interactive real time approval. ptrace-approve use the python-pytrace library which does all the fiddly work. This does the last mile of making something useful and doing pattern matching.
Tools like austral can place limits at the module or function level using a type systems.
Installation
pipx install ptrace-approve
Usage
ptrace-approve app
By default all reads are allowed for app
Individually approve rules or add patterns. . in patterns does not match ,'s or brackets. Use (.|[.(),]) for the conventional meaning of . in regexps
the abolsute path to app app is found and a default profile is stored for the app based on this path.
ptrace-approve --clear app
Here are some patterns:
/regexp/ / which the regexp work - the regexp is determined by commas or forward slashes.
**/__pycache__/*
* does not match forwards slashes, ** matches forward slashses.
"*" - literal
... - remaining arguments
_ - any argument
To always use ptrace-approve with a python app you can use ptrace-pipx install app
You can run the executable one the clipboard with ptrace-clip
Running non-interactively
ptapp (ptrace-approve) is meant to make it easy to sandbox processes
for easy things. A common case is command-line tools, which works well —
you are prompted for options directly in the shell.
But some programs don't run in the shell. For those, we provide a programmatic mode where another process can monitor what is going on and make approval decisions. This was specifically written with execution from Claude Code in mind.
If you are using an LLM (or any non-interactive caller), set
PTAPP_NO_BLOCK=1 in its environment so you can't accidentally run
ptapp in blocking mode — it will exit 3 with an error instead of
hanging silently on a prompt.
For Claude Code, put this in settings.json:
{
"env": {
"PTAPP_NO_BLOCK": "1"
}
}
To run non-interactively you use --background-dir (PTAPP_NO_BLOCK
makes this mandatory). Using this you start a process in the background
and can then query it to see if it requires permissions. See
ptrace-approve --help for the full protocol:
ptrace-approve --background-dir DIR -- CMD & # start
ptrace-approve --background-wait DIR # block until next event
ptrace-approve --background-respond DIR SEQ ACT # reply, wait for next
Events are JSON ({"status": "pending", "seq": N, ...} or
{"status": "done", "exit_code": N}). --background-respond exits with
the subprocess's exit code when the run finishes.
Change log
2.0.0 - Change match format 3.0.0 - Don't trace after exec, but trace after the initial fork.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ptrace_approve-3.1.1.tar.gz.
File metadata
- Download URL: ptrace_approve-3.1.1.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
968b3730b3798f44a9b34631afc5d17daf8fb5cb78ef05936ce9596d2c7cc48d
|
|
| MD5 |
5ae2e47588e048552483efe7709e8b07
|
|
| BLAKE2b-256 |
d8926b2ad1057b1981eff44e78eece1b8ec9a126d55d96c3ff513e58cbc5ad0c
|
File details
Details for the file ptrace_approve-3.1.1-py3-none-any.whl.
File metadata
- Download URL: ptrace_approve-3.1.1-py3-none-any.whl
- Upload date:
- Size: 18.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd49ad4e5047c10bafdda356ee8799d63dc86c4722b0a993c7718076cb084b93
|
|
| MD5 |
01e74ce1ff829a93dd3fb23b0709725a
|
|
| BLAKE2b-256 |
ab3a9895a4b0791d1f35ec6fafa8ce845267c53a3834ee22623d299c3e1b0b61
|