Security reports are taken seriously. Please avoid posting exploit details, secrets, private URLs, or production data in public issues.
The current supported runtime targets are:
- Node.js
>=22 - NestJS
11.x - tRPC
11.x - Drizzle ORM
0.45.x
The supported line for each of the nine @nest-native/* libraries lives in
the README's Compatibility table — kept in one
place, and checked against package.json in CI by npm run docs:check.
This repo is a reference application, not a published library. Security
fixes target the running app and its module-level patterns. If a finding is
in one of the @nest-native/* libraries, please report it on that library's
own repository instead.
Use GitHub private vulnerability reporting if it is available:
https://github.com/nest-native/reference-app/security/advisories/new
If the private flow is unavailable, open a public issue with only a non-sensitive summary and ask for a private disclosure channel. Do not include proof-of-concept payloads, tokens, stack traces with secrets, private endpoints, or customer/user data in the public issue.
Helpful private report details:
- affected commit or release
- affected runtime: Node, NestJS, tRPC, Drizzle, adapter, and validation stack
- minimal reproduction steps
- expected impact
- whether the issue affects the API, the outbox worker, migrations, generated tRPC schema, samples, or dependencies
- any known mitigations
This reference app demonstrates module-level patterns. Security fixes here may involve:
- transactional boundary correctness (
@Transactional()scope) - request-scoped context isolation (
currentUser,currentOrganization) - outbox worker claim/retry safety (re-claim semantics, idempotency)
- audit-event write-path completeness
- input validation across tRPC procedures (Zod and class-validator)
- migration safety (forward-only, no in-place data loss)
- supply-chain risk through dependency changes
If you fork this repo as a starting point, you remain responsible for your own:
- authentication policy and session handling
- authorization model
- rate limiting
- CORS and CSRF posture
- request body limits
- secret management and transport security
- logging policy and PII handling
The patterns in this repo are illustrative defaults, not a turnkey production posture.