---
id: CVE-2026-72703
title: >-
  The guard checker in Rocq Prover treats a parameter of a nested mutual
  fixpoint as uniform without examining calls between the different bodies of
  that fixpoint
summary: >-
  The guard checker in Rocq Prover treats a parameter of a nested mutual
  fixpoint as uniform without examining calls between the different bodies of
  that fixpoint. find_uniform_parameters in kernel/inductive.ml inspects only
  self-recursive…
severity: medium
cvss: 6.3
cvssVector: 'CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:N/I:H/A:N'
cwe:
  - CWE-670
published: '2026-08-24'
updated: '2026-09-08'
sourceUpdated: '2026-09-08T20:23:49.880'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-72703'
references:
  - url: 'https://github.com/endrazine/rocq-cve-poc-21682'
    label: disclosure@vulncheck.com
  - url: 'https://github.com/rocq-prover/rocq'
    label: disclosure@vulncheck.com
  - url: 'https://github.com/rocq-prover/rocq/issues/21682'
    label: disclosure@vulncheck.com
  - url: 'https://github.com/rocq-prover/rocq/pull/21684'
    label: disclosure@vulncheck.com
  - url: >-
      https://www.vulncheck.com/advisories/rocq-prover-before-guard-checker-accepts-non-terminating-fixpoint-via-unchecked-cross-calls
    label: disclosure@vulncheck.com
tags:
  - nvd
  - cve.org
  - exploit-available
epss: 0.00176
epssPercentile: 0.0638
ingestedAt: '2026-09-08T21:11:12.285Z'
vendor: rocq-prover
product: rocq
affected:
  - rocq >= 8.20 < 9.2.0
exploitAvailable: true
ssvc:
  exploitation: poc
  automatable: 'no'
  technicalImpact: partial
  timestamp: '2026-08-27T14:12:25.906004Z'
---

## Overview

The guard checker in Rocq Prover treats a parameter of a nested mutual fixpoint as uniform without examining calls between the different bodies of that fixpoint. find_uniform_parameters in kernel/inductive.ml inspects only self-recursive calls, so when no body calls itself the function concludes that every parameter is uniform. A parameter that grows through a cross-call from one body to another therefore keeps the subterm specification it inherited from the enclosing fixpoint, and a recursive call guarded by that specification is accepted although the argument is not structurally smaller. A non-terminating definition is admitted as structurally decreasing, which yields a term whose value equals its own successor and so a proof of False, from which any proposition follows. The proof requires no axioms, plugins or unsafe flags and Print Assumptions reports it as closed under the global context. Introduced in Coq 8.20 and fixed in Rocq 9.2.0.

## Remediation

Refer to the linked advisories for vendor-supplied fixes and affected version ranges.
