Add security policy profile
ober
b3fa0b6a29f5b7a9b53df1d3a24d184ce52396d1
new file mode 100644 --- /dev/null +++ b/.jerboa/security.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "repo": "jerboa-aws", + "extends": ["jerboa:cli", "jerboa:network-client", "jerboa:crypto"], + "paths": { + "production": ["*.ss", "*.sls", "lib/**/*.ss", "lib/**/*.sls", "src/**/*.{ss,sls,c,h,rs,sh}", "bin/**", "Makefile"], + "tests": ["test/**", "tests/**", "**/*-test.ss"], + "generated": ["build/**", "dist/**", "target/**", "*.so", "*.dylib", "*.wpo"], + "vendor": ["vendor/**", "third_party/**", "node_modules/**"], + "docs": ["README.md", "docs/**", "*.md", "AGENTS.md"] + }, + "policy": { + "failOn": ["critical", "high"], + "imports": { "directChezscheme": "deny" }, + "ffi": { "allowed": false }, + "process": { "shellInterpolation": "deny" }, + "network": { "requireTimeouts": true, "blockPrivateAddresses": false }, + "eval": { "stringEval": "deny", "bareRead": "deny", "allowReadEval": false }, + "secrets": { "forbidLogging": true, "shortLivedCredentials": true } + }, + "suppressions": [] +}