Fine-grained HTTP filtering for Claude Code
1–10 of 12 posts
Re: Fine-grained HTTP filtering for Claude Code
#2It works for any process, not just Claude Code. I got it working with Codex CLI like this:
httpjail --js "r.host === 'chatgpt.com'" -- codex
After installing it using Cargo (and Homebrew): brew upgrade rust
cargo install httpjail
I wrote more notes about it here: https://simonwillison.net/2025/Sep/19/httpjail/Re: Fine-grained HTTP filtering for Claude Code
#3Re: Fine-grained HTTP filtering for Claude Code
#4Previously [0] 0. https://news.ycombinator.com/item?id=45307459
Re: Fine-grained HTTP filtering for Claude Code
#5If only developers never made use of GET to modify resources...
https://www.reddit.com/r/webdev/comments/6999x7/comment/dh4v...
Re: Fine-grained HTTP filtering for Claude Code
#6> Allow only GET requests i.e. make the internet read-only If only developers never made use of GET to modify resources... https://www.reddit.com/r/webdev/comments/6999x7/comment/dh4v...
Re: Fine-grained HTTP filtering for Claude Code
#7> Allow only GET requests i.e. make the internet read-only If only developers never made use of GET to modify resources... https://www.reddit.com/r/webdev/comments/6999x7/comment/dh4v...
Am I misunderstanding this one? GET still sends information to another server, what is the "read only" aspect?
Re: Fine-grained HTTP filtering for Claude Code
#8> Allow only GET requests i.e. make the internet read-only If only developers never made use of GET to modify resources... https://www.reddit.com/r/webdev/comments/6999x7/comment/dh4v...
Am I misunderstanding this one? GET still sends information to another server, what is the "read only" aspect?
Of course, some websites may permit mutations through GET so it’s probably only sensible to use alongside known hosts.
Re: Fine-grained HTTP filtering for Claude Code
#9Earlier quoted context omitted.
Am I misunderstanding this one? GET still sends information to another server, what is the "read only" aspect?
I meant read-only there in the sense of mutability, not exfiltration. Of course, some websites may permit mutations through GET so it’s probably only sensible to use alongside known hosts.
Re: Fine-grained HTTP filtering for Claude Code
#10> Allow only GET requests i.e. make the internet read-only If only developers never made use of GET to modify resources... https://www.reddit.com/r/webdev/comments/6999x7/comment/dh4v...
I thought it'd be this old but memorable article: https://thedailywtf.com/articles/The_Spider_of_Doom