Proof / Runtime authorization replay
A runtime authorization workflow accepted a signed one-time action. The signed material included a nonce-like value, but neither the validation layer nor the execution wrapper consumed that nonce in durable state. Possession of one valid authorization was enough to execute the same privileged action more than once.
One signed runtime authorization must authorize one execution.
The observed behavior violated that invariant. The system accepted the same signed bytes twice, applied the same privileged side effect twice, and produced two execution receipts that differed only in their digest.
The required authorizers signed a single one-time action. The signed material included a nonce-like value (nonce, intent ID, request ID) intended to make the authorization unique.
The relayer submitted the signed authorization. The validation function ran a stateless check on signature freshness and authoriser membership. The execution wrapper performed the privileged side effect and produced a receipt.
The same authorization bytes were submitted again, unmodified. The validation function returned OK because nonce was included in the digest but never recorded as consumed.
The execution wrapper performed the privileged side effect a second time. The receipts diverged only in their post-state hash; the authorization was identical.
The candidate is promoted to a finding. The proof pack contains the signed payload, two execution receipts, side-effect deltas, the validation source path, a cosigned attestation, and a deterministic replay.sh.
bizlogic_hunterapi_securitypoc_validatorCVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:L/SC:H/SI:H/SA:L
This vector is retained as public-safe scoring context. The point of the case study is not the exact score; it is the proof shape — a supposedly single-use authorization executes more than once.
Replayable runtime authorization breaks the trust boundary between approval and execution. In value movement, governance, repository, identity, or privileged administrative flows, this is the difference between a single approved action and a controllable repetition of that action by anyone who has seen the wire.
This write-up is part of the SecHive bug bounty proof pack. Read the full proof pack for the broader inventory.