On the generic GCM path, AES.GCM.authenticate_decrypt_into (as well as Chacha20.authenticate_decrypt_into and AES.CCM16.authenticate_decrypt_into) writes the decrypted plaintext into the caller's destination buffer and only then compares the tag. On a forged tag the function returns false, but the destination buffer already holds the full plaintext. AEAD decryption is meant to be all-or-nothing: no plaintext should be released until the tag verifies. This is a release of unverified plaintext, and a caller that reads the buffer without first checking the return value sees forged-but-decrypted data. RustCrypto's aes-gcm fixed the same defect in CVE-2023-42811 (rated medium) by re-encrypting the buffer on tag failure.
The tag is validated first, and only if the tag is valid, the decryption into the provided buffer is done. In the CCM code, the tag is computed over the plaintext - if the tag validation fails, the provided buffer is zeroed.
module GCM = Mirage_crypto.AES.GCM
let () =
let key = GCM.of_secret (String.make 32 '\x00') in
let nonce = String.make 12 '\x00' in
let secret = "let password = 42" in
let len = String.length secret in
let blob = GCM.authenticate_encrypt ~key ~nonce secret in
(* flip one bit of the 16-byte tag (at offset len); the ciphertext is untouched *)
let forged = Bytes.of_string blob in
Bytes.set forged len (Char.chr (Char.code (Bytes.get forged len) lxor 1));
let forged = Bytes.unsafe_to_string forged in
let dst = Bytes.make len '\x00' in
let verified =
GCM.authenticate_decrypt_into ~key ~nonce forged ~src_off:0 ~tag_off:len dst
~dst_off:0 len
in
Printf.printf "tag verified: %b (the message is rejected as forged)\n" verified;
Printf.printf "secret left in the output buffer: %S\n" (Bytes.to_string dst)
{
"osv": "https://github.com/ocaml/security-advisories/tree/generated-osv/2026/OSEC-2026-12.json",
"human_link": "https://github.com/ocaml/security-advisories/tree/main/advisories/2026/OSEC-2026-12.md",
"cwe": [
"CWE-347"
]
}{
"opam_constraint": "mirage-crypto {< \"2.2.0\"}",
"affected_bindings": [
"Mirage_crypto.AES.CCM16.authenticate_decrypt_into",
"Mirage_crypto.AES.CCM16.unsafe_authenticate_decrypt_into",
"Mirage_crypto.Chacha20.authenticate_decrypt_into",
"Mirage_crypto.Chacha20.unsafe_authenticate_decrypt_into",
"Mirage_crypto.AES.GCM.authenticate_decrypt_into",
"Mirage_crypto.AES.GCM.unsafe_authenticate_decrypt_into"
]
}