๐Ÿ” CVE Alert

CVE-2026-81334

MEDIUM 6.1

darknet through 6.0 Out-of-Bounds Read and Write via Unchecked Layer Index in .cfg Parser

CVSS Score
6.1
EPSS Score
0.0%
EPSS Percentile
0th

darknet subscripts its layer array with an index taken from a configuration file without checking it against the array's length. The array is allocated in src-lib/darknet_network.cpp as xcalloc(net.n, sizeof(Darknet::Layer)), sized to exactly the number of layer sections the file declares. The shortcut, scale_channels and sam sections supply that index through their from field and the route section through its layers field, and parse_shortcut_section in src-lib/darknet_cfg.cpp reads net.layers[index].outputs with no bounds check, which reads past the allocation. The dispatch loop in create_network then reuses the same index to assign net.layers[l.index].use_bin_output and net.layers[l.index].keep_delta_gpu, writing past the allocation at an offset the file controls, with a fixed one-byte value. Parsing a crafted configuration file is sufficient: the parse runs before any weights file is opened and needs no non-default option, so the result is a reliable crash and a write whose location, though not its value, is chosen by whoever supplied the file.

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

Get instant alerts for hank-ai darknet

Be the first to know when new medium 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:N/I:L/A:H
Attack Vector
Local
Attack Complexity
Low
Privileges Required
None
User Interaction
Required
Scope
Unchanged
Confidentiality
None
Integrity
Low
Availability
High

Affected Versions

hank-ai / darknet
0 โ‰ค 6.0

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/hank-ai/darknet github.com: https://github.com/hank-ai/darknet/blob/v6.0/src-lib/darknet_cfg.cpp github.com: https://github.com/hank-ai/darknet/blob/v6.0/src-lib/darknet_network.cpp vulncheck.com: https://www.vulncheck.com/advisories/darknet-through-6.0-out-of-bounds-read-and-write-via-unchecked-layer-index-in-cfg-parser

Credits

Michael Holmquist