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.
40 rules matched. Showing 24 loaded rules.
Publish rule
CVE-2026-81096: Python Sandbox Safe Builtins Getattr Setattrcve-2026-81096-python-sandbox-safe-builtins-getattr-setattr

Including 'getattr' or 'setattr' in a whitelist of safe builtins or allowed functions for sandboxed Python execution allows callers to bypass AST-level restrictions and access dangerous attributes or class hierarchies.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
68quality
CVE-2026-78379: Agent Tool Caller Controlled Non Interactive Modecve-2026-78379-agent-tool-caller-controlled-non-interactive-mode

Reading `non_interactive_mode` from caller-supplied arguments or kwargs allows prompts and untrusted callers to bypass human-in-the-loop confirmation gates for sensitive tool execution. Drive non-interactive mode through trusted environment variables or host configuration instead.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
68quality
CVE-2026-58448: Spring Boot Jackson Customizer Circular Conditioncve-2026-58448-spring-boot-jackson-customizer-circular-condition

A Jackson2ObjectMapperBuilderCustomizer bean is conditionally dependent on the existence of an ObjectMapper bean. Because customizers are used to build the ObjectMapper, the ObjectMapper bean does not exist yet when this condition is evaluated. This causes the customizer to be silently skipped, potentially disabling security integrations like XSS filters. Re

by Provallyupdated 2026-09-02Apache-2.0
2740 direct274 via packs
downloads
68quality
CVE-2026-55830: Ast Missing Posonlyargscve-2026-55830-ast-missing-posonlyargs

This code processes standard AST regular arguments (`.args.args`) but does not handle positional-only arguments (`.posonlyargs`), which were introduced in Python 3.8. Omitting this validation can lead to sandbox bypasses, unnoticed arguments, or faulty code transformations. Ensure `.posonlyargs` are also checked.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
77quality
CVE-2026-52873: Electron Strip Content Security Policycve-2026-52873-electron-strip-content-security-policy

Deleting or stripping Content-Security-Policy (CSP) headers in Electron webRequest hooks removes browser security protections against cross-site scripting (XSS) and unauthorized resource loading.

by Provallyupdated 2026-09-02Apache-2.0
2790 direct279 via packs
downloads
76quality
CVE-2026-49981: Twig Missing Sandbox Checkcve-2026-49981-twig-missing-sandbox-check

Missing runtime sandbox security check before executing template routines. This allows a sandbox bypass if the sandbox state changes between renders and cached or shared template instances are reused.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
77quality
CVE-2026-48806: Twig Sandbox Bypass Array Keyscve-2026-48806-twig-sandbox-bypass-array-keys

Dynamic array key compilation misses a fallback to cast expressions as StringCastUnary. This allows objects to be used as array keys, which coerce to string bypassing the Twig sandbox `ensureToStringAllowed()` security policy check.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
73quality
CVE-2026-48805: Twig Sandbox Bypass Missing Statecve-2026-48805-twig-sandbox-bypass-missing-state

A call to a Twig `CoreExtension` array or arrow checking method is missing the explicit `$isSandboxed` parameter or providing an Environment directly instead of resolving the sandbox state. This allows arbitrary PHP functions to bypass the sandbox check, leading to potential Remote Code Execution. Explicitly resolve the sandbox state using `twig_resolve_is_s

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
73quality
CVE-2026-47424: Groovy Sandbox Missing Execute Blockcve-2026-47424-groovy-sandbox-missing-execute-block

A Groovy sandbox `onMethodCall` method lacks a preemptive check to block the `execute` (or `invokeMethod`) method. Because `ProcessGroovyMethods.execute()` is a Groovy extension method that spawns an OS process during invocation, filtering the target or return value is evaluated too late. Ensure `onMethodCall` explicitly evaluates the method name and blocks

by Provallyupdated 2026-09-02Apache-2.0
2740 direct274 via packs
downloads
77quality
CVE-2026-47140: Incomplete Node Module Denylistcve-2026-47140-incomplete-node-module-denylist

A denylist checking for dangerous Node.js modules is potentially incomplete. Node.js module resolution allows bypassing exact-match denylists using the 'node:' URL prefix or by resolving subpaths (e.g., 'inspector/promises'). Additionally, ensure 'process' and other host-exposing primitives are blocked.

by Provallyupdated 2026-06-23Apache-2.0
2K0 direct2K via packs
downloads
77quality
CVE-2026-47139: Node Builtin Modules Underscore Bypasscve-2026-47139-node-builtin-modules-underscore-bypass

Filtering Node.js builtin modules without excluding undocumented underscored modules (e.g., `_http_client`, `_http_server`) can allow sandbox bypasses. Underscored modules expose underlying network or system primitives directly and often circumvent restrictions placed on public modules. Ensure that elements starting with `_` are also filtered out.

by Provallyupdated 2026-06-23Apache-2.0
2K0 direct2K via packs
downloads
73quality
CVE-2026-46638: Twig Sandbox Bypass Missing Sandboxed Attributecve-2026-46638-twig-sandbox-bypass-missing-sandboxed-attribute

AST builders enforcing a sandbox environment fail to set the 'sandboxed' attribute on allowed child nodes. This allows sandbox bypasses via pre-loaded templates, as the compiler relies on this attribute to inject runtime security checks.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
72quality
CVE-2026-43997: Fragile Function Constructor Name Guardcve-2026-43997-fragile-function-constructor-name-guard

Property descriptor value is identified as the Function constructor by comparing `.name === 'Function'`. This check misses AsyncFunction, GeneratorFunction, and AsyncGeneratorFunction — all of which have different .name strings — allowing those constructors to cross a sandbox/proxy boundary unchecked. Replace with identity comparison against all cached dange

by Provallyupdated 2026-06-12Apache-2.0
2.5K0 direct2.5K via packs
downloads
77quality
CVE-2026-41523: Python Assert Prefix Validation Bypasscve-2026-41523-python-assert-prefix-validation-bypass

Using `assert` for string validation before usage is vulnerable to a bypass because Python strips assert statements from bytecode when executed with optimizations (`-O`). Attackers can supply inputs that bypass string-prefix boundaries, potentially leading to arbitrary code execution, unintended module loading, or path traversal. Replace the `assert` stateme

by Provallyupdated 2026-06-23Apache-2.0
2K0 direct2K via packs
downloads
68quality
CVE-2026-39888: Python Exec Unrestricted Builtins Sandboxcve-2026-39888-python-exec-unrestricted-builtins-sandbox

A globals mapping is being constructed with '__builtins__' aliased to the unrestricted real __builtins__. When this mapping is passed to exec()/eval() for untrusted code, it provides NO sandboxing: the executed code can call exec/eval/compile/__import__/open directly, and can also escape via frame-traversal (e.__traceback__.tb_frame.f_back.f_builtins["exec"]

by Provallyupdated 2026-06-12Apache-2.0
2.5K0 direct2.5K via packs
downloads
81quality
CVE-2026-34938: Static Method Destructive File Op No Instance Authzcve-2026-34938-static-method-destructive-file-op-no-instance-authz

A @staticmethod in this class performs a destructive filesystem operation (os.remove, os.unlink, shutil.move, shutil.rmtree, or os.rename) but cannot invoke any instance-level access-control method because it has no 'self' reference. Any instance-level authorization policy—such as a workspace read/write access check—is silently bypassed. Convert the method t

by Provallyupdated 2026-06-12Apache-2.0
2.5K0 direct2.5K via packs
downloads
71quality
CVE-2026-34444: Lupa Luaruntime Attribute Filter Without Register Builtins Falsecve-2026-34444-lupa-luaruntime-attribute-filter-without-register-builtins-false

LuaRuntime is configured with attribute access control (attribute_filter or attribute_handlers) but register_builtins=False is not set. Python builtins accessible as python.builtins.* inside Lua — including getattr, setattr, eval, and exec — bypass the attribute filter entirely by invoking CPython natively, skipping Lupa's proxy metamethods. This allows sand

by Provallyupdated 2026-06-12Apache-2.0
2.5K0 direct2.5K via packs
downloads
74quality
CVE-2026-33632: Endpointsecurity Missing Exchangedata Clonecve-2026-33632-endpointsecurity-missing-exchangedata-clone

The EndpointSecurity event array monitors file creation or modification (e.g., AUTH_CREATE or AUTH_COPYFILE) but lacks subscriptions for ES_EVENT_TYPE_AUTH_EXCHANGEDATA or ES_EVENT_TYPE_AUTH_CLONE. This pattern is associated with an incomplete file monitoring scope, allowing attackers to bypass the authorization boundary via exchangedata or clonefile system

by Provallyupdated 2026-06-12Apache-2.0
2.5K0 direct2.5K via packs
downloads
73quality
CVE-2026-32038: Docker Network Container Namespace Join Allowed By Defaultcve-2026-32038-docker-network-container-namespace-join-allowed-by-default

This conditional whitelists Docker network values that start with `container:` as an accepted mode and short-circuits network setup or validation. The `container:<id>` form is a Docker namespace-join directive: it attaches the new container to an existing container's network namespace, exposing services bound to that container's loopback and bypassing sandbo

by Provallyupdated 2026-06-12Apache-2.0
2.5K0 direct2.5K via packs
downloads
77quality
CVE-2026-28407: Unconditional Archive Removal Bypasscve-2026-28407-unconditional-archive-removal-bypass

Unconditionally removing an archive file after an extraction failure can bypass scanning of the original archive file. If extraction fails, the archive should be retained so it can be analyzed as a raw file. Ensure that files are only deleted if extraction succeeds, for example by checking 'if err == nil' before deletion.

by Provallyupdated 2026-06-23Apache-2.0
2K0 direct2K via packs
downloads
77quality
CVE-2026-26963: Cilium Wireguard Ingress Policy Bypasscve-2026-26963-cilium-wireguard-ingress-policy-bypass

Returning `CTX_ACT_OK` at the end of `handle_ipv4` or `handle_ipv6` without handling host delivery allows packets from WireGuard or similar network tunnels to bypass host ingress network policies. Ensure that host-bound packets are correctly redirected (e.g. using `ipv4_host_delivery` or `ipv6_host_delivery`) rather than being permitted by default.

by Provallyupdated 2026-06-12Apache-2.0
2.3K0 direct2.3K via packs
downloads
80quality
CVE-2026-26954: Sandboxjs Call Result Missing Sanitize Arraycve-2026-26954-sandboxjs-call-result-missing-sanitize-array

Native function call result is filtered only through getGlobalProp() and returned via done(...) without passing through sanitizeArray(). getGlobalProp() only inspects the top-level reference; arrays returned by native functions (e.g. Object.values, Array.at, Array.slice) can still contain raw global constructors such as Function, enabling sandbox escape (CVE

by Provallyupdated 2026-06-12Apache-2.0
2.5K0 direct2.5K via packs
downloads
82quality
CVE-2026-25587: Prototype Guard Unsafe Hasownproperty Instance Methodcve-2026-25587-prototype-guard-unsafe-hasownproperty-instance-method

Calling `.hasOwnProperty()` as an instance method in a function-property mutation guard is unsafe in sandbox or access-control code. When the guarded object is itself a prototype (e.g., `Map.prototype`), its built-in methods ARE own properties. As a result, `!obj.hasOwnProperty(prop)` evaluates to `false` and the guard silently permits the overwrite. This al

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