Byte slice index or slice expression accessed before validating slice length with len(). This can trigger an out-of-bounds slice access panic on unexpected or truncated input.
Explore
Rule Explorer
Search the public rule index by CVE, GHSA, CWE, language, framework, author, or rule slug. Filter by language, framework, severity, confidence, license, and validation status.
- Public rules
- 4797
- Downloads
- 7.4M
- Verified
- 4797
- Authors
- 2
Search the rule indexUse CVE, GHSA, CWE, language, framework, package, or rule slug.
CVE-2026-54909: Go Missing Bounds Check Before Slice Accesscve-2026-54909-go-missing-bounds-check-before-slice-access
CVE-2026-52856: Go Ssh Payload Slice Out Of Boundscve-2026-52856-go-ssh-payload-slice-out-of-bounds
Slicing SSH request payload without checking its length can cause a runtime panic if the payload is smaller than expected. Always check `len(req.Payload)` before indexing or slicing.
CVE-2026-13212: Virtio Unvalidated Used Ring Indexcve-2026-13212-virtio-unvalidated-used-ring-index
Virtio used-ring descriptor ID is used as an array index without bounds checking against the queue size. An untrusted virtio device or host backend can supply an out-of-bounds ID to trigger out-of-bounds access or control-flow hijacking. Validate that the descriptor ID is within queue bounds (e.g., id < vq->num).
All matching rules loaded.