Skip to content

chore(deps): update dependency @nestjs/platform-fastify to v11.1.11 [security]#104

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm-nestjs-platform-fastify-vulnerability
Open

chore(deps): update dependency @nestjs/platform-fastify to v11.1.11 [security]#104
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm-nestjs-platform-fastify-vulnerability

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Dec 30, 2025

This PR contains the following updates:

Package Change Age Confidence
@nestjs/platform-fastify (source) 11.1.611.1.11 age confidence

GitHub Vulnerability Alerts

CVE-2025-69211

A NestJS application is vulnerable if it meets all of the following criteria:

  1. Platform: Uses @nestjs/platform-fastify.
  2. Security Mechanism: Relies on NestMiddleware (via MiddlewareConsumer) for security checks (authentication, authorization, etc.), or through app.use()
  3. Routing: Applies middleware to specific routes using string paths or controllers (e.g., .forRoutes('admin')).
    Example Vulnerable Config:
// app.module.ts
export class AppModule implements NestModule {
  configure(consumer: MiddlewareConsumer) {
    consumer
      .apply(AuthMiddleware) // Security check
      .forRoutes('admin');   // Vulnerable: Path-based restriction
  }
}

Attack Vector:

  • Target Route: /admin
  • Middleware Path: admin
  • Attack Request: GET /%61dmin
  • Result: Middleware is skipped (no match on %61dmin), but controller for /admin is executed.

Consequences:

  • Authentication Bypass: Unauthenticated users can access protected routes.
  • Authorization Bypass: Restricted administrative endpoints become accessible to lower-privileged users.
  • Input Validation Bypass: Middleware performing sanitization or validation can be skipped.

Patches

Patched in @nestjs/platform-fastify@11.1.11

Resources

Credit goes to Hacktron AI for reporting this issue.

Severity
  • CVSS Score: 6.9 / 10 (Medium)
  • Vector String: CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:U

Release Notes

nestjs/nest (@​nestjs/platform-fastify)

v11.1.11

Compare Source

v11.1.11 (2025-12-29)

Bug fixes
Dependencies
Committers: 3

v11.1.10

Compare Source

v11.1.10 (2025-12-22)

Bug fixes
Enhancements
Dependencies
Committers: 11

v11.1.9

Compare Source

v11.1.9 (2025-11-14)

Bug fixes
Enhancements
Dependencies
Committers: 4

v11.1.8

Compare Source

v11.1.8 (2025-10-27)

Bug fixes
Committers: 2

v11.1.7

Compare Source

v11.1.7 (2025-10-21)

Bug fixes
Enhancements
Dependencies
Committers: 9

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • ""
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/npm-nestjs-platform-fastify-vulnerability branch from b06c352 to 34e4365 Compare January 8, 2026 17:53
@renovate renovate bot force-pushed the renovate/npm-nestjs-platform-fastify-vulnerability branch 2 times, most recently from d1a4d2a to 879d6fd Compare January 23, 2026 19:35
@renovate renovate bot force-pushed the renovate/npm-nestjs-platform-fastify-vulnerability branch from 879d6fd to 708b0ae Compare February 2, 2026 14:46
@renovate renovate bot force-pushed the renovate/npm-nestjs-platform-fastify-vulnerability branch 2 times, most recently from fa01786 to 33a63d8 Compare February 17, 2026 14:46
@renovate renovate bot force-pushed the renovate/npm-nestjs-platform-fastify-vulnerability branch from 33a63d8 to 8b109d4 Compare March 13, 2026 18:14
@renovate renovate bot changed the title chore(deps): update dependency @nestjs/platform-fastify to v11.1.11 [security] chore(deps): update dependency @nestjs/platform-fastify to v11.1.11 [security] - autoclosed Mar 27, 2026
@renovate renovate bot closed this Mar 27, 2026
@renovate renovate bot deleted the renovate/npm-nestjs-platform-fastify-vulnerability branch March 27, 2026 04:55
@renovate renovate bot changed the title chore(deps): update dependency @nestjs/platform-fastify to v11.1.11 [security] - autoclosed chore(deps): update dependency @nestjs/platform-fastify to v11.1.11 [security] Mar 30, 2026
@renovate renovate bot reopened this Mar 30, 2026
@renovate renovate bot force-pushed the renovate/npm-nestjs-platform-fastify-vulnerability branch 2 times, most recently from 8b109d4 to 30c47d1 Compare March 30, 2026 17:44
@renovate renovate bot force-pushed the renovate/npm-nestjs-platform-fastify-vulnerability branch from 30c47d1 to 25c58e9 Compare April 8, 2026 17:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants