Conversation
- Add server-action endpoint and mutation binding checks to WEB-PROTOCOL-AND-AUTH.md - Add full-stack framework fetch and route-cache poisoning checks to WEB-PROTOCOL-AND-AUTH.md - Add server-component serialization boundary leakage checks to CLIENT-SIDE.md - Add NoSQL operator injection, ORM mass-assignment, and row-level security bypass checks to DATA-ISOLATION-AND-LIFECYCLE.md - Add multimodal prompt injection and commercial API spend asymmetry checks to AI-AND-LLM.md - Update target guidance in ATTACK-CLASSES.md and file index in README.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Expands domain companion guides to cover common boundary failures in modern full-stack web applications, React Server Components (RSC), Next.js App Router, ORMs, and commercial LLM integrations:
WEB-PROTOCOL-AND-AUTH.md:Server-action endpoint and mutation binding: Addresses publicly callable HTTP endpoints generated by'use server'exports that lack body-level authorization or CSRF/Origin validation.Full-stack framework fetch and route-cache poisoning: Addresses full-stack route handlers and server-sidefetchdefault caching (force-cache) leaking user-specific data across requests.CLIENT-SIDE.md:Server-component serialization boundary leakage: Detects sensitive database/ORM properties (hashes, internal roles, tenant secrets) serialized into client-visible flight streams when crossing'use client'boundaries.DATA-ISOLATION-AND-LIFECYCLE.md:NoSQL operator and query object injection: Detects uncast object inputs parsed into document-store filter criteria ($gt,$ne,$regex).ORM mass-assignment and relational connect overreach: Detects unfiltered request objects passed into ORM mutations and relational connection re-parenting (e.g. Prismaconnect).Row-level security policy and role bypass: Checks for Postgres/Supabase RLS bypasses, missing table enablement, missingWITH CHECKclauses, andSECURITY DEFINERsearch-path hijacking.AI-AND-LLM.md:Multimodal and document prompt injection: Covers untrusted user-uploaded images and documents processed by vision models.Commercial API spend asymmetry and denial of wallet: Covers unauthenticated/unmetered calls to expensive frontier models exhausting API budgets.Updated target guidance in
ATTACK-CLASSES.mdand file index inREADME.md.Testing
validate-coverage-ledger.test.cjs.