Commit 88bc772
docs: add "static" whitelist example to shell
Fixed regex matching security issue where dots in domain names were treated
as regex wildcards. Now uses grep -Fxq for literal string matching:
- F: Fixed strings (no regex)
- x: Match whole lines exactly
- q: Quiet mode
This prevents domains like "apiXgithubYcom" from matching "api.github.com".
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent daccd79 commit 88bc772
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
91 | | - | |
92 | | - | |
| 91 | + | |
| 92 | + | |
93 | 93 | | |
94 | 94 | | |
95 | 95 | | |
| |||
0 commit comments