sec: RASP middleware — runtime attack detection + anomaly scoring#125
Merged
Conversation
lib/security/rasp.js: inspect all inputs (query, body, path, headers) for SQLi, XSS, command injection, path traversal, NoSQL injection, prototype pollution. Per-IP anomaly scoring with 5-min half-life decay, bot fingerprinting (scanner UA detection, ZAP allowlisting). Events logged to security-events Firestore collection. Monitor mode by default (RASP_MODE=block to enforce). GET /api/security/events (owner-only). 43 unit tests covering all detection categories + false positive safety.
|
|
||
| if (!ua) flags.push("missing-ua"); | ||
| else if (SCANNER_PATTERNS.test(ua)) flags.push("scanner-ua"); | ||
| else if (ZAP_PATTERN.test(ua)) flags.push("zap-ua"); |
Object literal { __proto__: ... } sets prototype, doesn't create a key.
Use Object.create(null) to test actual key detection. ZAP fingerprint
test needed accept header to avoid extra missing-accept flag inflating
bot score from 5 to 35.
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
lib/security/rasp.js— runtime request inspection middlewareRASP_MODE=blockto enforce)security-eventsFirestore collectionGET /api/security/events(owner-only) for event dashboardTest plan