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.5M
Verified
4797
Authors
2
Search the rule indexUse CVE, GHSA, CWE, language, framework, package, or rule slug.
33 rules matched. Showing 24 loaded rules.
Publish rule
CVE-2026-78701: C Io Recv Unbounded Buffer Memcpycve-2026-78701-c-io-recv-unbounded-buffer-memcpy

Data is copied from an internal buffer struct into a caller-provided buffer using the internal buffer's count without validating or bounding against the caller-supplied length parameter. This can result in a buffer overflow if the internal buffer contains more data than the destination buffer capacity.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
77quality
CVE-2026-76840: Cliprdr Stream Read Buffer Overflowcve-2026-76840-cliprdr-stream-read-buffer-overflow

Unchecked response size copied into destination buffer in stream read implementation. Ensure the response length is validated to not exceed the requested buffer capacity (cb) before calling CopyMemory or memcpy.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
77quality
CVE-2026-68515: Openexr Unvalidated Channel Subsamplingcve-2026-68515-openexr-unvalidated-channel-subsampling

OpenEXR channel was processed and added without validating that xSampling and ySampling are equal to 1. Combining scanline EXR images with subsampled channels and misaligned data windows can lead to heap out-of-bounds memory corruption.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
73quality
CVE-2026-62357: Pmr Allocate Size Integer Overflowcve-2026-62357-pmr-allocate-size-integer-overflow

Manual PMR allocate call with multiplication by sizeof(...) can lead to integer overflow and heap buffer allocation of undersized memory. Prefer using RAII containers (such as std::vector with polymorphic_allocator) or validating bounds before allocating.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
76quality
CVE-2026-59984: Openexr B44 Scratch Buffer Truncationcve-2026-59984-openexr-b44-scratch-buffer-truncation

Scratch buffer size computed as a 64-bit integer is passed directly to internal_decode_alloc_buffer without checking for size_t integer truncation. On 32-bit systems (ILP32), this can result in an undersized buffer allocation and subsequent heap-based buffer overflow.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
73quality
CVE-2026-58472: Loop Accumulation Integer Overflow Allocationcve-2026-58472-loop-accumulation-integer-overflow-allocation

Accumulating buffer sizes in a loop using `+` or `+=` without overflow checks can lead to integer overflow. If the result is passed to an allocator, an undersized buffer is created, leading to a heap buffer overflow. Use sizes like `size_t` and safe integer arithmetic constructs like `INT_ADD_OK` to prevent overflow.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
77quality
CVE-2026-58471: Iconv E2big Outlen Overflowcve-2026-58471-iconv-e2big-outlen-overflow

The output buffer remaining length (`outlen`) is incorrectly set to the total allocated size after an E2BIG error during `iconv` character conversion. Because the output pointer is also advanced by the already used bytes (`done`), this allows `iconv` to write past the end of the allocated heap buffer on the next iteration.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
69quality
CVE-2026-56135: Ntfs Acl Inheritance Buffer Underallocationcve-2026-56135-ntfs-acl-inheritance-buffer-underallocation

Heap buffer allocation for inherited security descriptor uses static or incomplete slack estimation without accounting for dynamic CREATOR_OWNER and CREATOR_GROUP ACE expansions, potentially causing a heap buffer overflow.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
70quality
CVE-2026-54715: Goaccess Unanchored Strstr Offset Memmovecve-2026-54715-goaccess-unanchored-strstr-offset-memmove

Potential out-of-bounds write: `strstr` is used to check for a substring without capturing its pointer, but `memmove` is performed using a fixed offset from the base pointer (`$MATCH + $OFFSET`). Ensure the substring pointer is captured and bounds-checked before computing destination offsets.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
68quality
CVE-2026-54000: Unchecked Peb Length Readprocessmemorycve-2026-54000-unchecked-peb-length-readprocessmemory

Directly using an unvalidated structure length (e.g., a UNICODE_STRING Length from a target process's PEB) as the size argument to memory read functions can result in a heap buffer overflow. Attackers can inflate PEB string lengths (e.g., CommandLine.Length) up to USHORT_MAX (65535 bytes). Bounds should always be explicitly clamped or checked against the des

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
65quality
CVE-2026-53720: Pymonocypher Argon2 Missing Validationcve-2026-53720-pymonocypher-argon2-missing-validation

Missing validation for `nb_blocks` parameter in Argon2 configuration. `nb_blocks` must be at least `nb_lanes * 8` to prevent a potential heap buffer overflow in the underlying C implementation. Ensure `nb_blocks` or the assigned variable is validated using an `if` or `assert` statement.

by Provallyupdated 2026-09-02Apache-2.0
2820 direct282 via packs
downloads
57quality
CVE-2026-51807: Openhtj2k Missing Bounds Check Num Passescve-2026-51807-openhtj2k-missing-bounds-check-num-passes

Accumulating values into `num_passes` without prior bounds checking allows out-of-bounds array indexing on the `pass_length` array, causing a heap buffer overflow. Calculate increments securely into a temporary variable and validate against maximum bounds before mutating `num_passes`.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
68quality
CVE-2026-50538: Tight Decompressed Rows Oob Writecve-2026-50538-tight-decompressed-rows-oob-write

Row count computed from zlib decompression buffer capacity is used in a row processing function without bounds checking against remaining expected rows, risking an out-of-bounds write.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
73quality
CVE-2026-48689: Cpp Capacity Off By Onecve-2026-48689-cpp-capacity-off-by-one

An improper bounds check was found where a required capacity upper limit is incorrectly increased by one (`> size + 1`). This off-by-one limit validation allows exactly one byte to be written or read out of bounds. Ensure limits bounds rely strictly on exact sizes, checking `offset + length > size`.

by Provallyupdated 2026-06-23Apache-2.0
2K0 direct2K via packs
downloads
70quality
CVE-2026-44050: Netatalk Cnid Dbd Unbounded Readt Namelencve-2026-44050-netatalk-cnid-dbd-unbounded-readt-namelen

`readt()` reads `$RQST->namelen` bytes (attacker-controlled length from the CNID wire-format request header) into the fixed-size `$RQST->name` buffer without first validating `$RQST->namelen <= MAXPATHLEN`. This is the heap-based buffer overflow pattern fixed in CVE-2026-44050. Add a guard `if ($RQST->namelen > MAXPATHLEN) { ...; return 0; }` before this rea

by Provallyupdated 2026-06-12Apache-2.0
2.5K0 direct2.5K via packs
downloads
77quality
CVE-2026-39113: Sqlite Malloc Int64 Truncationcve-2026-39113-sqlite-malloc-int64-truncation

A 64-bit integer from sqlite3_value_int64() is passed to sqlite3_malloc(), which only accepts a 32-bit int. Integer truncation can result in an undersized buffer allocation leading to heap buffer overflow. Use sqlite3_malloc64() instead.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
72quality
CVE-2026-32135: Urldecoding Off By One Overflowcve-2026-32135-urldecoding-off-by-one-overflow

A string is decoded into a dynamically allocated buffer that is restricted to the exact size of the input string length, but a null byte is unconditionally written at the end. This leads to an off-by-one heap buffer overflow if the input does not shrink during decoding. Ensure that the buffer allocation explicitly reserves space for the null terminator (e.g.

by Provallyupdated 2026-06-12Apache-2.0
2.5K0 direct2.5K via packs
downloads
65quality
CVE-2026-29646: Nemu Rvh Vmode Sie Sip Incorrect Dispatchcve-2026-29646-nemu-rvh-vmode-sie-sip-incorrect-dispatch

VS-mode (cpu.v == 1) access to the supervisor interrupt CSRs sie/sip is being dispatched through vmode_get_sie / vmode_set_sie / vmode_get_sip / vmode_set_sip. These helpers do not apply the RISC-V H-extension delegation masking (get_hideleg() & (mideleg | MIDELEG_FORCED_MASK), hvien) and write directly to machine-level mie / hvip, which violates the privile

by Provallyupdated 2026-06-12Apache-2.0
2.5K0 direct2.5K via packs
downloads
81quality
CVE-2026-29004: Busybox Ipv6 Buffer Overflowcve-2026-29004-busybox-ipv6-buffer-overflow

An incorrect buffer size calculation for formatting a list of IPv6 addresses leaves no space for a null terminator, leading to a heap buffer overflow. Removing the `- 1` subtraction and explicitly adding space for string termination prevents this corruption.

by Provallyupdated 2026-06-12Apache-2.0
2.5K0 direct2.5K via packs
downloads
65quality
24 of 33 loaded