express-security-scan
Installation
SKILL.md
Express Security Scan
Defensive scan for Express.js (4.x / 5.x) applications. Reports findings using the shared scoring schema.
Scope
- Files importing
express,express.Router, or registering middleware on anapp - Session / cookie / CSRF middleware setup
- Route handlers under
routes/,controllers/,api/
Procedure
- Find the
app = express()initializer and followapp.use(...)calls in order — middleware order matters. - For each route handler, trace
req.body/req.params/req.queryinto sinks. - Apply the rules below.