Noir CVE-2026-41197
CRITICALSeverity by source
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
Triggering requires supplying malicious Noir source to the compiler (local, no auth), and heap corruption chiefly threatens integrity and availability of VM execution with limited confidentiality exposure.
Primary rating from GitHub Advisory.
CVSS VectorGitHub Advisory
Lifecycle Timeline
5DescriptionGitHub Advisory
Description
Noir programs can invoke external functions through foreign calls. When compiling to Brillig bytecode, the SSA instructions are processed block-by-block in BrilligBlock::compile_block(). When the compiler encounters an Instruction::Call with a Value::ForeignFunction target, it invokes codegen_call() in brillig_call/code_gen_call.rs, which dispatches to convert_ssa_foreign_call().
Before emitting the foreign call opcode, the compiler must pre-allocate memory for any array results the call will return. This happens through allocate_external_call_results(), which iterates over the result types. For Type::Array results, it delegates to allocate_foreign_call_result_array() to recursively allocate memory on the heap for nested arrays.
The BrilligArray struct is the internal representation of a Noir array in Brillig IR. Its size field represents the semi-flattened size, the total number of memory slots the array occupies, accounting for the fact that composite types like tuples consume multiple slots per element. This size is computed by compute_array_length() in brillig_block_variables.rs:
pub(crate) fn compute_array_length(item_typ: &CompositeType, elem_count: usize) -> usize {
item_typ.len() * elem_count
}For the outer array, allocate_external_call_results() correctly uses define_variable(), which internally calls allocate_value_with_type(). This function applies the formula above, producing the correct semi-flattened size.
However, for nested arrays, allocate_foreign_call_result_array() contains a bug. When it encounters a nested Type::Array(types, nested_size), it calls:
Type::Array(_, nested_size) => {
let inner_array = self.brillig_context.allocate_brillig_array(*nested_size as usize);
// ....
}The pattern Type::Array(_, nested_size) discards the inner types with _ and uses only nested_size, the semantic length of the nested array (the number of logical elements), not the semi-flattened size. For simple element types this works correctly, but for composite element types it under-allocates. Consider a nested array of type [(u32, u32); 3]:
- Semantic length: 3 (three tuples)
- Element size: 2 (each tuple has two fields)
- Required semi-flattened size: 6 memory slots
The current code passes 3 to allocate_brillig_array(), which then calls codegen_initialize_array(). This function allocates array.size + ARRAY_META_COUNT slots, only 4 slots instead of the required 7 (6 data + 1 metadata). When the VM executes the foreign call and writes 6 values plus metadata, it overwrites adjacent heap memory.
Impact
Foreign calls returning nested arrays of tuples or other composite types corrupt the Brillig VM heap.
Recommendation
Multiply the semantic length by the number of element types when allocating nested arrays. Extract the inner types from the pattern and replace the nested_size argument to allocate_brillig_array() with types.len() * nested_size to compute the semi-flattened size. Alternatively, reuse the existing compute_array_length() helper function to maintain consistency with outer array allocation.
AnalysisAI
Heap corruption in the Noir language's Brillig bytecode compiler (Aztec's noir-lang, rust/brillig package) affects all releases up to and including 1.0.0-beta.18. When a Noir program issues a foreign call that returns a nested array of composite element types (e.g. [(u32, u32); 3]), the compiler's allocate_foreign_call_result_array() under-allocates heap memory, so the Brillig VM overwrites adjacent heap slots at execution time. No public exploit identified at time of analysis; EPSS is very low (0.04%) and CISA SSVC records no observed exploitation, though it rates the technical impact as total and the flaw as automatable.
Technical ContextAI
Noir is a Rust-based domain-specific language for writing zero-knowledge circuits; programs that need side effects use 'foreign calls' to external oracle functions. The unconstrained execution path compiles SSA to Brillig, an intermediate bytecode executed by the Brillig VM. Arrays in Brillig IR are represented by BrilligArray, whose size field is the semi-flattened slot count - logical length multiplied by the per-element slot count (a (u32,u32) tuple occupies 2 slots). The root cause is CWE-131 (Incorrect Calculation of Buffer Size): while outer arrays are sized correctly via compute_array_length() (item_typ.len() * elem_count), the nested-array path pattern-matches Type::Array(_, nested_size) and discards the inner element types, passing only the semantic length to allocate_brillig_array(). For [(u32,u32);3] it allocates 3 (plus metadata) instead of the required 6 data slots, so when the VM writes the returned values it corrupts the heap beyond the buffer.
RemediationAI
Vendor-released patch: 1.0.0-beta.19 - upgrade the Noir toolchain / brillig crate to 1.0.0-beta.19 or later (release notes: https://github.com/noir-lang/noir/releases/tag/v1.0.0-beta.19; advisory: https://github.com/noir-lang/noir/security/advisories/GHSA-jj7c-x25r-r8r3). Note that beta.19 also carries breaking changes (MSRV bump to 1.87.0, removal of ExpressionWidth and bincode support, msgpack-compact as the default format), so allocate testing time for the upgrade. Until you can upgrade, the practical compensating control is to avoid the vulnerable code shape: refactor programs so foreign calls do not return nested arrays of composite element types (tuples/structs) - return flat arrays of scalars or restructure the returned data - and, if you operate a service that compiles third-party Noir source, restrict or vet untrusted inputs that contain such foreign-call signatures. The trade-off is reduced expressiveness in oracle return types until patched.
Same weakness CWE-131 – Incorrect Calculation of Buffer Size
View allSame technique Information Disclosure
View allShare
External POC / Exploit Code
Leaving vuln.today
GHSA-jj7c-x25r-r8r3