ai-saas-guard 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/dist/rules/catalog.js +8 -1
- package/dist/scanners/supabase.js +132 -18
- package/docs/github-action.md +1 -1
- package/docs/npm-publishing.md +3 -3
- package/docs/project-handoff.md +6 -8
- package/docs/rules.md +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,8 +51,8 @@ The CLI is published on npm as `ai-saas-guard`, and the GitHub Action is availab
|
|
|
51
51
|
| JSON and SARIF output | Available |
|
|
52
52
|
| Composite GitHub Action | Available |
|
|
53
53
|
| Project config | `.ai-saas-guard.json` rule toggles, severity overrides, and fail thresholds |
|
|
54
|
-
| Versioned Action tags | `v0.
|
|
55
|
-
| npm package | `ai-saas-guard@0.
|
|
54
|
+
| Versioned Action tags | `v0.4.0`, `v0` |
|
|
55
|
+
| npm package | `ai-saas-guard@0.4.0` |
|
|
56
56
|
| npm publishing | Trusted Publisher/OIDC, no long-lived publish token |
|
|
57
57
|
|
|
58
58
|
## Quick Start
|
|
@@ -121,7 +121,7 @@ Evidence:
|
|
|
121
121
|
| --- | --- |
|
|
122
122
|
| Secrets and env | Secret-like values, risky `NEXT_PUBLIC_*` exposure |
|
|
123
123
|
| Stripe | Missing webhook route, unsigned webhook handling, parsed-body signature risk, missing idempotency, missing failure/cancel/update/refund paths |
|
|
124
|
-
| Supabase | RLS disabled on sensitive tables, `USING
|
|
124
|
+
| Supabase | RLS disabled on sensitive tables, broad `USING`/`WITH CHECK`, tenant membership patterns, weak write checks, storage object policy scope |
|
|
125
125
|
| API routes | Auth checks without obvious ownership guards, missing rate-limit hints on sensitive mutation routes |
|
|
126
126
|
| MCP | Plaintext secrets, non-localhost binds, broad filesystem/write access, shell tools, raw SQL tools |
|
|
127
127
|
| Deploy config | Next static export/runtime mismatches, Edge runtime with Node-only APIs, missing important env documentation |
|
|
@@ -191,7 +191,7 @@ Add `.ai-saas-guard.json` at the repository root to tune findings without changi
|
|
|
191
191
|
|
|
192
192
|
## GitHub Action
|
|
193
193
|
|
|
194
|
-
The repo includes a composite Action. Use `v0` for the latest compatible pre-1.0 Action, a specific release tag such as `v0.
|
|
194
|
+
The repo includes a composite Action. Use `v0` for the latest compatible pre-1.0 Action, a specific release tag such as `v0.4.0` for controlled upgrades, or pin a reviewed commit SHA for stricter supply-chain control:
|
|
195
195
|
|
|
196
196
|
```yaml
|
|
197
197
|
name: ai-saas-guard
|
|
@@ -320,10 +320,10 @@ Open-source core:
|
|
|
320
320
|
|
|
321
321
|
Near-term priorities:
|
|
322
322
|
|
|
323
|
-
- expanded Supabase RLS fixtures
|
|
324
323
|
- Stripe webhook replay cookbook
|
|
325
324
|
- launch-readiness checklist content
|
|
326
325
|
- false-positive suppression and rule stability labels
|
|
326
|
+
- GitHub App design note for the potential hosted layer
|
|
327
327
|
|
|
328
328
|
Potential paid layer later:
|
|
329
329
|
|
package/dist/rules/catalog.js
CHANGED
|
@@ -66,7 +66,7 @@ export const RULE_CATALOG = {
|
|
|
66
66
|
ruleId: "supabase.rls.broad-policy",
|
|
67
67
|
severity: "critical",
|
|
68
68
|
title: "Broad Supabase RLS policy",
|
|
69
|
-
why: "`USING (true)`
|
|
69
|
+
why: "`USING (true)` or `WITH CHECK (true)` can turn login into broad data access or writes.",
|
|
70
70
|
stability: "default"
|
|
71
71
|
},
|
|
72
72
|
"supabase.rls.missing-ownership-filter": {
|
|
@@ -76,6 +76,13 @@ export const RULE_CATALOG = {
|
|
|
76
76
|
why: "Policies need resource ownership or tenant membership checks.",
|
|
77
77
|
stability: "default"
|
|
78
78
|
},
|
|
79
|
+
"supabase.rls.weak-with-check": {
|
|
80
|
+
ruleId: "supabase.rls.weak-with-check",
|
|
81
|
+
severity: "high",
|
|
82
|
+
title: "Supabase write policy has a weak WITH CHECK predicate",
|
|
83
|
+
why: "Insert and update policies need WITH CHECK predicates tied to the current user or tenant membership.",
|
|
84
|
+
stability: "default"
|
|
85
|
+
},
|
|
79
86
|
"supabase.table.missing-owner-column": {
|
|
80
87
|
ruleId: "supabase.table.missing-owner-column",
|
|
81
88
|
severity: "medium",
|
|
@@ -28,18 +28,24 @@ export async function checkSupabase(input) {
|
|
|
28
28
|
for (const match of file.content.matchAll(/alter\s+table\s+([a-zA-Z0-9_."]+)\s+enable\s+row\s+level\s+security/gi)) {
|
|
29
29
|
rlsEnabledTables.add(normalizeSqlIdentifier(match[1]));
|
|
30
30
|
}
|
|
31
|
-
for (const
|
|
32
|
-
const policyName =
|
|
33
|
-
const
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
31
|
+
for (const policy of parsePolicies(file.content)) {
|
|
32
|
+
const { name: policyName, tableName, line } = policy;
|
|
33
|
+
const predicates = [policy.usingPredicate, policy.withCheckPredicate].filter((value) => Boolean(value));
|
|
34
|
+
if (isStorageObjectsTable(tableName)) {
|
|
35
|
+
const riskyStoragePredicate = predicates.find((predicate) => isUnscopedStoragePredicate(predicate));
|
|
36
|
+
if (riskyStoragePredicate) {
|
|
37
|
+
findings.push(storageFinding(file.path, file.content, line, "Supabase storage.objects policy lacks owner or tenant scope"));
|
|
38
|
+
}
|
|
39
|
+
continue;
|
|
40
|
+
}
|
|
41
|
+
const broadPredicate = predicates.find((predicate) => isBroadPredicate(predicate));
|
|
42
|
+
if (broadPredicate || /\bto\s+(public|anon|authenticated)\b[\s\S]*\busing\s*\(\s*true\s*\)/i.test(policy.statement)) {
|
|
37
43
|
riskyPolicies.push({
|
|
38
44
|
file: file.path,
|
|
39
45
|
line,
|
|
40
46
|
policyName,
|
|
41
47
|
tableName,
|
|
42
|
-
reason: "Policy predicate is broad (`USING (true)` or equivalent)."
|
|
48
|
+
reason: "Policy predicate is broad (`USING (true)`, `WITH CHECK (true)`, or equivalent)."
|
|
43
49
|
});
|
|
44
50
|
findings.push(finding({
|
|
45
51
|
ruleId: "supabase.rls.broad-policy",
|
|
@@ -51,7 +57,8 @@ export async function checkSupabase(input) {
|
|
|
51
57
|
suggestedFix: "Replace broad predicates with ownership checks such as `auth.uid() = user_id` or a tenant membership join."
|
|
52
58
|
}));
|
|
53
59
|
}
|
|
54
|
-
|
|
60
|
+
const combinedPredicate = predicates.join(" ");
|
|
61
|
+
if (!/\bauth\.uid\s*\(/i.test(combinedPredicate) && !ownershipColumnPattern.test(combinedPredicate) && sensitiveTablePattern.test(tableName)) {
|
|
55
62
|
riskyPolicies.push({
|
|
56
63
|
file: file.path,
|
|
57
64
|
line,
|
|
@@ -69,18 +76,28 @@ export async function checkSupabase(input) {
|
|
|
69
76
|
suggestedFix: "Reference `auth.uid()` and a stable ownership or membership column in every sensitive table policy."
|
|
70
77
|
}));
|
|
71
78
|
}
|
|
79
|
+
if (sensitiveTablePattern.test(tableName) && hasWeakWithCheck(policy)) {
|
|
80
|
+
riskyPolicies.push({
|
|
81
|
+
file: file.path,
|
|
82
|
+
line,
|
|
83
|
+
policyName,
|
|
84
|
+
tableName,
|
|
85
|
+
reason: "Write policy has a weak or missing `WITH CHECK` predicate."
|
|
86
|
+
});
|
|
87
|
+
findings.push(finding({
|
|
88
|
+
ruleId: "supabase.rls.weak-with-check",
|
|
89
|
+
title: `Supabase write policy "${policyName}" has a weak WITH CHECK predicate`,
|
|
90
|
+
severity: "high",
|
|
91
|
+
evidence: [{ file: file.path, line, snippet: lineAt(file.content, line) }],
|
|
92
|
+
why: "A write policy can read the right tenant rows but still allow inserted or updated rows to move into another owner or tenant unless `WITH CHECK` is scoped.",
|
|
93
|
+
suggestedVerification: "As User A, try inserting or updating a row with User B's owner, organization, workspace, or tenant ID and confirm the database rejects it.",
|
|
94
|
+
suggestedFix: "Add a `WITH CHECK` predicate tied to `auth.uid()` and the same owner, tenant, or membership relationship used by the read policy."
|
|
95
|
+
}));
|
|
96
|
+
}
|
|
72
97
|
}
|
|
73
|
-
for (const match of file.content.matchAll(/storage\.buckets[\s\S]{0,200}\bpublic\b\s*[,=]\s*true
|
|
98
|
+
for (const match of file.content.matchAll(/storage\.buckets[\s\S]{0,200}\bpublic\b\s*[,=]\s*true/gi)) {
|
|
74
99
|
const line = lineNumberForIndex(file.content, match.index ?? 0);
|
|
75
|
-
findings.push(
|
|
76
|
-
ruleId: "supabase.storage.public-bucket",
|
|
77
|
-
title: "Supabase storage policy or bucket appears public",
|
|
78
|
-
severity: "high",
|
|
79
|
-
evidence: [{ file: file.path, line, snippet: lineAt(file.content, line) }],
|
|
80
|
-
why: "Public buckets can expose uploads, invoices, profile documents, or tenant files even when database rows are protected.",
|
|
81
|
-
suggestedVerification: "Upload a private file as User A and confirm unauthenticated users and User B cannot fetch it by URL.",
|
|
82
|
-
suggestedFix: "Make buckets private by default and add storage object policies scoped by owner or tenant."
|
|
83
|
-
}));
|
|
100
|
+
findings.push(storageFinding(file.path, file.content, line, "Supabase storage bucket appears public"));
|
|
84
101
|
}
|
|
85
102
|
}
|
|
86
103
|
for (const table of tables) {
|
|
@@ -124,3 +141,100 @@ export async function checkSupabase(input) {
|
|
|
124
141
|
function normalizeSqlIdentifier(value) {
|
|
125
142
|
return value.replace(/"/g, "").trim().toLowerCase();
|
|
126
143
|
}
|
|
144
|
+
function parsePolicies(content) {
|
|
145
|
+
const policies = [];
|
|
146
|
+
const policyPattern = /create\s+policy\s+(?:"([^"]+)"|([^\s\n]+))\s+on\s+([a-zA-Z0-9_."]+)[\s\S]*?;/gi;
|
|
147
|
+
for (const match of content.matchAll(policyPattern)) {
|
|
148
|
+
const statement = match[0];
|
|
149
|
+
policies.push({
|
|
150
|
+
name: (match[1] ?? match[2] ?? "").trim(),
|
|
151
|
+
tableName: normalizeSqlIdentifier(match[3]),
|
|
152
|
+
operation: parsePolicyOperation(statement),
|
|
153
|
+
usingPredicate: extractPredicate(statement, "using"),
|
|
154
|
+
withCheckPredicate: extractPredicate(statement, "with check"),
|
|
155
|
+
statement,
|
|
156
|
+
line: lineNumberForIndex(content, match.index ?? 0)
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
return policies;
|
|
160
|
+
}
|
|
161
|
+
function parsePolicyOperation(statement) {
|
|
162
|
+
const match = /\bfor\s+(select|insert|update|delete|all)\b/i.exec(statement);
|
|
163
|
+
const operation = match?.[1]?.toLowerCase();
|
|
164
|
+
if (operation === "select" ||
|
|
165
|
+
operation === "insert" ||
|
|
166
|
+
operation === "update" ||
|
|
167
|
+
operation === "delete" ||
|
|
168
|
+
operation === "all") {
|
|
169
|
+
return operation;
|
|
170
|
+
}
|
|
171
|
+
return "unknown";
|
|
172
|
+
}
|
|
173
|
+
function extractPredicate(statement, clause) {
|
|
174
|
+
const clausePattern = clause === "using" ? /\busing\s*\(/i : /\bwith\s+check\s*\(/i;
|
|
175
|
+
const match = clausePattern.exec(statement);
|
|
176
|
+
if (!match)
|
|
177
|
+
return undefined;
|
|
178
|
+
const openParen = match.index + match[0].lastIndexOf("(");
|
|
179
|
+
return extractBalancedParentheses(statement, openParen);
|
|
180
|
+
}
|
|
181
|
+
function extractBalancedParentheses(value, openParen) {
|
|
182
|
+
let depth = 0;
|
|
183
|
+
let inSingleQuote = false;
|
|
184
|
+
for (let index = openParen; index < value.length; index += 1) {
|
|
185
|
+
const char = value[index];
|
|
186
|
+
const next = value[index + 1];
|
|
187
|
+
if (char === "'" && next === "'") {
|
|
188
|
+
index += 1;
|
|
189
|
+
continue;
|
|
190
|
+
}
|
|
191
|
+
if (char === "'") {
|
|
192
|
+
inSingleQuote = !inSingleQuote;
|
|
193
|
+
continue;
|
|
194
|
+
}
|
|
195
|
+
if (inSingleQuote)
|
|
196
|
+
continue;
|
|
197
|
+
if (char === "(")
|
|
198
|
+
depth += 1;
|
|
199
|
+
if (char === ")") {
|
|
200
|
+
depth -= 1;
|
|
201
|
+
if (depth === 0)
|
|
202
|
+
return value.slice(openParen + 1, index).trim();
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
return undefined;
|
|
206
|
+
}
|
|
207
|
+
function isBroadPredicate(predicate) {
|
|
208
|
+
return predicate.trim().toLowerCase() === "true";
|
|
209
|
+
}
|
|
210
|
+
function hasWeakWithCheck(policy) {
|
|
211
|
+
if (policy.operation !== "insert" && policy.operation !== "update" && policy.operation !== "all")
|
|
212
|
+
return false;
|
|
213
|
+
if (!policy.withCheckPredicate)
|
|
214
|
+
return policy.operation === "insert";
|
|
215
|
+
if (isBroadPredicate(policy.withCheckPredicate))
|
|
216
|
+
return true;
|
|
217
|
+
return !isScopedOwnershipPredicate(policy.withCheckPredicate);
|
|
218
|
+
}
|
|
219
|
+
function isScopedOwnershipPredicate(predicate) {
|
|
220
|
+
return /\bauth\.uid\s*\(/i.test(predicate) && ownershipColumnPattern.test(predicate);
|
|
221
|
+
}
|
|
222
|
+
function isStorageObjectsTable(tableName) {
|
|
223
|
+
return tableName === "storage.objects";
|
|
224
|
+
}
|
|
225
|
+
function isUnscopedStoragePredicate(predicate) {
|
|
226
|
+
if (isBroadPredicate(predicate))
|
|
227
|
+
return true;
|
|
228
|
+
return !/\bauth\.uid\s*\(|\bowner\b|\bowner_id\b|\buser_id\b|\btenant_id\b|\borganization_id\b|\bworkspace_id\b/i.test(predicate);
|
|
229
|
+
}
|
|
230
|
+
function storageFinding(filePath, content, line, title) {
|
|
231
|
+
return finding({
|
|
232
|
+
ruleId: "supabase.storage.public-bucket",
|
|
233
|
+
title,
|
|
234
|
+
severity: "high",
|
|
235
|
+
evidence: [{ file: filePath, line, snippet: lineAt(content, line) }],
|
|
236
|
+
why: "Storage object policies or public buckets can expose tenant files even when database rows are protected.",
|
|
237
|
+
suggestedVerification: "Upload a private file as User A and confirm unauthenticated users and User B cannot fetch it by URL or object path.",
|
|
238
|
+
suggestedFix: "Keep buckets private and scope storage object policies by `owner`, `auth.uid()`, tenant, workspace, or a membership relationship."
|
|
239
|
+
});
|
|
240
|
+
}
|
package/docs/github-action.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
`ai-saas-guard` ships as a composite GitHub Action for pull request and code scanning workflows.
|
|
4
4
|
|
|
5
|
-
Use `zr9959/ai-saas-guard@v0` for the latest compatible pre-1.0 Action. Use a specific tag such as `v0.
|
|
5
|
+
Use `zr9959/ai-saas-guard@v0` for the latest compatible pre-1.0 Action. Use a specific tag such as `v0.4.0` or a reviewed commit SHA when reproducibility is more important than automatic minor updates.
|
|
6
6
|
|
|
7
7
|
## PR Summary
|
|
8
8
|
|
package/docs/npm-publishing.md
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
## Current State
|
|
6
6
|
|
|
7
7
|
- Package name: `ai-saas-guard`
|
|
8
|
-
- Current version: `0.
|
|
8
|
+
- Current version: `0.4.0`
|
|
9
9
|
- npm registry state: published at <https://www.npmjs.com/package/ai-saas-guard>
|
|
10
10
|
- First npm-published version: `0.1.1`
|
|
11
|
-
- GitHub Release: `v0.
|
|
11
|
+
- GitHub Release: `v0.4.0`
|
|
12
12
|
- Publish workflow: `.github/workflows/npm-publish.yml`
|
|
13
13
|
- Trusted Publisher: GitHub Actions, `zr9959/ai-saas-guard`, workflow `npm-publish.yml`, allowed action `npm publish`
|
|
14
14
|
- Long-lived npm publish token: not required
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
Use GitHub Actions with npm Trusted Publisher/OIDC:
|
|
19
19
|
|
|
20
|
-
1. Create and review a release tag such as `v0.
|
|
20
|
+
1. Create and review a release tag such as `v0.4.0`.
|
|
21
21
|
2. Publish from the GitHub Release or run the `Publish npm` workflow manually with `ref` set to that tag.
|
|
22
22
|
3. Keep `permissions.id-token: write` in the workflow so npm can exchange the GitHub Actions OIDC identity for a short-lived publish credential.
|
|
23
23
|
4. Run `npm publish --access public` from the workflow. Trusted publishing automatically generates provenance for this public package from this public repository.
|
package/docs/project-handoff.md
CHANGED
|
@@ -40,7 +40,7 @@ Implemented surfaces:
|
|
|
40
40
|
|
|
41
41
|
- secret-like values and risky public env exposure
|
|
42
42
|
- Stripe webhook signature, raw body, idempotency, and lifecycle handler heuristics
|
|
43
|
-
- Supabase RLS,
|
|
43
|
+
- Supabase RLS, tenant membership, ownership filter, weak `WITH CHECK`, and storage object policy heuristics
|
|
44
44
|
- sensitive API route heuristics
|
|
45
45
|
- MCP config side-effect and secret-bearing risk inventory
|
|
46
46
|
- Next/Vercel deploy and runtime footguns
|
|
@@ -101,7 +101,6 @@ Current issue set:
|
|
|
101
101
|
|
|
102
102
|
- #1 Add launch-readiness checklist content
|
|
103
103
|
- #5 Write Stripe webhook replay cookbook
|
|
104
|
-
- #7 Expand Supabase RLS fixtures and ownership patterns
|
|
105
104
|
|
|
106
105
|
CI:
|
|
107
106
|
|
|
@@ -113,7 +112,7 @@ CI:
|
|
|
113
112
|
Publishing:
|
|
114
113
|
|
|
115
114
|
- npm package: `ai-saas-guard`
|
|
116
|
-
- Current release line: `v0.
|
|
115
|
+
- Current release line: `v0.4.0`
|
|
117
116
|
- Publish workflow: `.github/workflows/npm-publish.yml`
|
|
118
117
|
- Trusted Publisher: GitHub Actions for `zr9959/ai-saas-guard`, workflow `npm-publish.yml`
|
|
119
118
|
- Long-lived npm publish tokens should not be required.
|
|
@@ -140,11 +139,10 @@ Not allowed:
|
|
|
140
139
|
|
|
141
140
|
Recommended order:
|
|
142
141
|
|
|
143
|
-
1.
|
|
144
|
-
2.
|
|
145
|
-
3.
|
|
146
|
-
4.
|
|
147
|
-
5. Add a GitHub App design note for the potential hosted layer.
|
|
142
|
+
1. Write Stripe webhook replay cookbook.
|
|
143
|
+
2. Add launch-readiness checklist content.
|
|
144
|
+
3. Improve false-positive suppression and rule stability labels.
|
|
145
|
+
4. Add a GitHub App design note for the potential hosted layer.
|
|
148
146
|
|
|
149
147
|
For every feature, keep the scanner evidence-first:
|
|
150
148
|
|
package/docs/rules.md
CHANGED
|
@@ -27,11 +27,12 @@ Rule metadata is centralized in `src/rules/catalog.ts` and covered by tests so S
|
|
|
27
27
|
|
|
28
28
|
| Rule ID | Severity | Why it exists |
|
|
29
29
|
| --- | --- | --- |
|
|
30
|
-
| `supabase.rls.broad-policy` | critical | `USING (true)`
|
|
30
|
+
| `supabase.rls.broad-policy` | critical | `USING (true)` or `WITH CHECK (true)` can turn login into broad data access or writes. |
|
|
31
31
|
| `supabase.rls.missing-ownership-filter` | high | Policies need resource ownership or tenant membership checks. |
|
|
32
|
+
| `supabase.rls.weak-with-check` | high | Write policies need `WITH CHECK` predicates tied to the current user or tenant membership. |
|
|
32
33
|
| `supabase.table.missing-owner-column` | medium | Sensitive tables are hard to protect without owner/tenant keys. |
|
|
33
34
|
| `supabase.rls.not-enabled` | critical | User-data tables should enable row level security. |
|
|
34
|
-
| `supabase.storage.public-bucket` | high | Storage buckets can leak files even when database rows are protected. |
|
|
35
|
+
| `supabase.storage.public-bucket` | high | Storage buckets or unscoped storage object policies can leak files even when database rows are protected. |
|
|
35
36
|
|
|
36
37
|
## API Routes And Deploy
|
|
37
38
|
|