Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 18, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence
fastify (source) 5.3.0 -> 5.3.2 age confidence

GitHub Vulnerability Alerts

CVE-2025-32442

Impact

In applications that specify different validation strategies for different content types, it's possible to bypass the validation by providing a slightly altered content type such as with different casing or altered whitespacing before ;.

Users using the the following pattern are affected:

fastify.post('/', {
  handler(request, reply) {
    reply.code(200).send(request.body)
  },
  schema: {
    body: {
      content: {
        'application/json': {
          schema: {
            type: 'object',
            properties: {
              'foo': {
                type: 'string',
              }
            },
            required: ['foo']
          }
        },
      }
    }
  }
})

User using the following pattern are not affected:

fastify.post('/', {
  handler(request, reply) {
    reply.code(200).send(request.body)
  },
  schema: {
    body: {
      type: 'object',
      properties: {
        'foo': {
          type: 'string',
        }
      },
      required: ['foo']
    }
  }
})

Patches

This was patched in v5.3.1, but unfortunately it did not cover all problems. This has been fully patched in v5.3.2.
Version v4.9.0 was also affected by this issue. This has been fully patched in v4.9.1.

Workarounds

Do not specify multiple content types in the schema.

References

Are there any links users can visit to find out more?

https://hackerone.com/reports/3087928


Release Notes

fastify/fastify (fastify)

v5.3.2

Compare Source

⚠️ Security Release ⚠️

Unfortunately, v5.3.1 did not include a complete fix for "Invalid content-type parsing could lead to validation bypass" and CVE-2025-32442. This is a follow-up patch to cover an edge case.

What's Changed

New Contributors

Full Changelog: fastify/fastify@v5.3.1...v5.3.2

v5.3.1

Compare Source

⚠️ Security Release ⚠️
What's Changed
New Contributors

Full Changelog: fastify/fastify@v5.3.0...v5.3.1


Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates 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-fastify-vulnerability branch from ac38300 to df1eecd Compare April 18, 2025 15:22
@renovate renovate bot changed the title chore(deps): update dependency fastify to v5.3.1 [security] chore(deps): update dependency fastify to v5.3.2 [security] Apr 18, 2025
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch 3 times, most recently from c084e71 to b3359e0 Compare April 23, 2025 19:13
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch 2 times, most recently from e8b40f8 to 13b2762 Compare May 14, 2025 16:10
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch 2 times, most recently from 5b37b79 to a4d7586 Compare May 25, 2025 19:21
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch 2 times, most recently from 246fe35 to a053876 Compare May 28, 2025 07:29
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch from a053876 to 94b7039 Compare June 4, 2025 12:36
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch from 94b7039 to 15d9f16 Compare June 22, 2025 14:24
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch 2 times, most recently from 8649080 to 87979b0 Compare July 2, 2025 18:05
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch 2 times, most recently from 5253b83 to 53d2906 Compare August 13, 2025 15:11
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch from 53d2906 to 0f3df38 Compare August 19, 2025 14:14
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch from 0f3df38 to 6c0aa18 Compare August 31, 2025 13:50
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch from 6c0aa18 to 89e0fb4 Compare September 10, 2025 02:48
@renovate renovate bot force-pushed the renovate/npm-fastify-vulnerability branch from 89e0fb4 to b8c3aef Compare September 25, 2025 20:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants