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
2917
Downloads
3.2M
Verified
2917
Authors
2
Search the rule indexUse CVE, GHSA, CWE, language, framework, package, or rule slug.
4 rules matched. Showing 4 loaded rules.
Publish rule
CVE-2026-56109: Missing Error Check Parse Cleanupcve-2026-56109-missing-error-check-parse-cleanup

A function return value is compared directly against an expected value without first verifying for negative error codes. This may lead to unexpected execution of error-handling cleanup paths, potentially triggering double-frees when unhandled error codes mimic unexpected data bytes.

by Provallyupdated 2026-06-23Apache-2.0
7430 direct743 via packs
downloads
70quality
CVE-2026-6654: Draining Iterator Stale Slice From Raw Parts Uafcve-2026-6654-draining-iterator-stale-slice-from-raw-parts-uaf

`slice::from_raw_parts_mut` is called inside `Iterator::next()` with a struct field length (`self.$STALE_LEN`) that may no longer reflect the number of currently initialized elements. Once any element has been moved out of the backing buffer during iteration, the field value becomes stale — the resulting slice falsely asserts that every slot holds a valid, i

by Provallyupdated 2026-06-12Apache-2.0
1.2K0 direct1.2K via packs
downloads
79quality
CVE-2025-4574: Atomic Pointer Poll Without Take In Cleanupcve-2025-4574-atomic-pointer-poll-without-take-in-cleanup

A teardown or cleanup function polls an atomic pointer with `load()` without swapping it with null. If this pointer's memory is deallocated and the teardown process unwinds (e.g. from a panic) or re-executes, the parent structure will retain a dangling pointer leading to a double-free. Use `.swap(std::ptr::null_mut(), Ordering::AcqRel)` instead to safely tak

by Provallyupdated 2026-06-12Apache-2.0
1K0 direct1K via packs
downloads
69quality
CVE-2024-35368: Ffmpeg Hw Frames Ctx Double Free On Goto Failcve-2024-35368-ffmpeg-hw-frames-ctx-double-free-on-goto-fail

Potential double-free (CWE-415): $F->buf[0] was previously assigned via av_buffer_create(...) with a custom release callback that owns resources such as the MppFrame / AVDRMFrameDescriptor / decoder ref. The subsequent assignment $F->hw_frames_ctx = av_buffer_ref(...) checks for NULL and on failure jumps to a manual cleanup label via 'goto'. The manual clean

by Provallyupdated 2026-06-12Apache-2.0
1.2K0 direct1.2K via packs
downloads
79quality
All matching rules loaded.