๐Ÿ” CVE Alert

CVE-2026-72852

HIGH 7.8

darknet Integer Overflow in Convolutional Layer Buffer Sizing Leads to Heap Buffer Overflow

CVSS Score
7.8
EPSS Score
0.0%
EPSS Percentile
0th

hank-ai/darknet sizes a convolutional layer's weight and output heap buffers by multiplying configuration fields taken from a .cfg file in unchecked 32-bit int arithmetic. In src-lib/convolutional_layer.cpp, l.nweights is computed as (c / groups) * n * size * size and l.outputs as l.out_h * l.out_w * l.out_c, and both feed xcalloc directly. A .cfg whose true dimension product exceeds INT_MAX wraps to a small or zero value, so the allocation is undersized; for example width and height of 256 with filters of 65536 gives 2^32, which wraps to 0. forward_convolutional_layer then re-derives the GEMM dimensions with a different operand order, computing k as l.size*l.size*l.c / l.groups where the allocation divided before multiplying, and reads and writes through the undersized buffer. Loading the crafted .cfg for inference or training is sufficient and no valid .weights file is required. The reported proof of concept observed a heap buffer overflow read in gemm_nn_fast under AddressSanitizer and glibc allocator metadata corruption in a release build of the same input, indicating an out-of-bounds write.

CWE CWE-190 CWE-787
Vendor hank-ai
Product darknet
Published Aug 20, 2026
Stay Ahead of the Next One

Get instant alerts for hank-ai darknet

Be the first to know when new high vulnerabilities affecting hank-ai darknet are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
Attack Vector
Local
Attack Complexity
Low
Privileges Required
None
User Interaction
Required
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

Affected Versions

hank-ai / darknet
0 โ‰ค 6.0

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/hank-ai/darknet/issues/148 github.com: https://github.com/hank-ai/darknet/blob/v6.0/src-lib/convolutional_layer.cpp#L764 github.com: https://github.com/hank-ai/darknet/blob/v6.0/src-lib/convolutional_layer.cpp#L811 github.com: https://github.com/hank-ai/darknet/blob/v6.0/src-lib/convolutional_layer.cpp#L1457 github.com: https://github.com/hank-ai/darknet vulncheck.com: https://www.vulncheck.com/advisories/darknet-integer-overflow-in-convolutional-layer-buffer-sizing-leads-to-heap-buffer-overflow

Credits

๐Ÿ” mtholmquist