SMT2 formal verification of security-critical code paths
CVE-2026-29772 class: handlers that parse attacker-controlled JSON request bodies must enforce explicit byte limits before deserialization. This catches sibling variants where endpoint registration is broad and JSON.parse occurs on unbounded bodies, enabling memory-amplification DoS.
; benchmark generated from python API
(set-info :status unknown)
(declare-fun server_island_body_bounded () Int)
(assert
(<= server_island_body_bounded 1))
(assert
(>= server_island_body_bounded 1))
(assert
(and (distinct server_island_body_bounded 1) true))
(check-sat)