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.
77 rules matched. Showing 24 loaded rules.
Publish rule
CVE-2026-81690: Python Rglob Symlink Integrity Bypasscve-2026-81690-python-rglob-symlink-integrity-bypass

Using `Path.rglob()` for file integrity verification or manifest creation does not descend into symlinked directories and can allow planted files beneath symlinks to evade detection. Enumerate the directory tree using `os.walk(..., followlinks=False)` and explicitly validate or reject symlinks using `os.path.islink()`.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
77quality
CVE-2026-71493: Leaf Only Symlink Confinement Bypasscve-2026-71493-leaf-only-symlink-confinement-bypass

Relying on `os.Lstat` and checking `os.ModeSymlink` on a composite path only checks if the leaf component is a symlink, ignoring intermediate directory symlinks. This can allow path traversal or repository escape. To validate confinement safely, resolve the entire path using `filepath.EvalSymlinks` before comparing paths.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
68quality
CVE-2026-70455: Path Resolution Toctou Symlink Racecve-2026-70455-path-resolution-toctou-symlink-race

File operation relies on incomplete daemon/chroot state checks rather than checking active relative path confinement or using race-free directory file descriptor operations. This can expose path resolution to TOCTOU symlink races.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
73quality
CVE-2026-70453: Openat2 Resolve Beneath Symlink Racecve-2026-70453-openat2-resolve-beneath-symlink-race

Relying on openat2 with RESOLVE_BENEATH or O_RESOLVE_BENEATH flags for relative path confinement can leave path resolution vulnerable to symlink race conditions and path traversal escapes. Use explicit per-component directory traversal with openat and O_NOFOLLOW on held dirfds instead.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
73quality
CVE-2026-66897: Go Os Root Unconfined Filesystem Escapecve-2026-66897-go-os-root-unconfined-filesystem-escape

Filesystem operations should be performed using `os.Root` methods (e.g., `OpenFile`, `Create`) rather than joining `root.Name()` with paths and passing them to unconfined `os` package functions. Operating on raw paths bypasses directory confinement and allows path traversal or symlink escapes.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
78quality
CVE-2026-65010: Shutil Rmtree Ignore Errors Symlinkcve-2026-65010-shutil-rmtree-ignore-errors-symlink

`shutil.rmtree` silently fails on symlinks when `ignore_errors=True` is provided. If the target path is a symlink rather than a directory, it is left intact. Subsequent operations (such as extracting an archive or writing files) to this path can inadvertently follow the symlink, potentially leading to arbitrary file write vulnerabilities or privilege escalat

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
77quality
CVE-2026-63343: Go Unconfined Instance File Accesscve-2026-63343-go-unconfined-instance-file-access

File accessed directly within an instance root directory using unconfined os file operations. Symlinks within untrusted container or instance filesystems can escape to the host filesystem. Use os.OpenRoot to confine file access to the instance directory.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
68quality
CVE-2026-63311: Lexical Path Traversal Checkcve-2026-63311-lexical-path-traversal-check

Lexical path checks (e.g., checking `os.path.isabs` or `..` substrings) do not protect against symlink traversal or canonicalization bypasses. Use `os.path.realpath` or `Path.resolve` and check containment (e.g., `os.path.commonpath` or `Path.is_relative_to`) against the base directory.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
80quality
CVE-2026-63125: Incus Unconfined Instance File Creationcve-2026-63125-incus-unconfined-instance-file-creation

Writing files directly into an instance or container root directory using os.Create or os.OpenFile without directory confinement (e.g., os.OpenRoot) can allow symlink traversal and arbitrary host file overwrite.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
68quality
CVE-2026-62992: Php Smarty Unresolved Symlink Path Traversalcve-2026-62992-php-smarty-unresolved-symlink-path-traversal

Directory containment checks relying on custom path normalization without resolving symbolic links via realpath() can be bypassed using symlinks. Ensure realpath() is called on the target path before checking directory containment.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
77quality
CVE-2026-62388: Python Lexical Traversal Check Without Resolutioncve-2026-62388-python-lexical-traversal-check-without-resolution

Lexical path checks (such as checking for '..' or os.path.isabs) do not prevent symlink-based path traversal. Validate that the resolved target path is strictly contained within the expected root directory using Path.resolve() and is_relative_to or os.path.commonpath.

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
76quality
CVE-2026-58198: Tarfile Unsafe Extraction Symlink Bypasscve-2026-58198-tarfile-unsafe-extraction-symlink-bypass

Extraction of tar files using a path traversal check that utilizes `os.path.abspath` instead of `os.path.realpath`, or iterates over members without checking for symbolic links (`issym()` or `islnk()`), allows attackers to bypass path traversal protections. An attacker can craft a malicious tar file with symlinks that point outside the target directory, lead

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
73quality
CVE-2026-55668: Go Dangling Symlink Scope Bypasscve-2026-55668-go-dangling-symlink-scope-bypass

When resolving non-existent paths for scope validation or path checks, falling back to filepath.Dir without checking if the target is a dangling symlink (e.g. using os.Lstat or os.Readlink) can allow path scope traversal via dangling symlinks.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
77quality
CVE-2026-55667: Os Remove In Cache Evictioncve-2026-55667-os-remove-in-cache-eviction

Direct call to os.Remove or os.RemoveAll on cached path keys within a cache eviction callback bypasses scoped filesystem controls and can lead to arbitrary file deletion via symlinks.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
68quality
CVE-2026-55569: Go Archive Symlink Traversalcve-2026-55569-go-archive-symlink-traversal

Untrusted symlink target from archive metadata is passed directly to `os.Symlink` without verifying that the target resolves within the destination directory. This can lead to arbitrary file overwrite via symlink traversal (CWE-59 / CWE-22).

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
80quality
CVE-2026-55108: Git Clone Unbounded Symlink File Readcve-2026-55108-git-clone-unbounded-symlink-file-read

Reading files from a cloned Git repository directly with os.ReadFile without symlink inspection or bounded reading can cause denial of service via symlink loops, FIFO pipes, or special devices like /dev/zero.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
77quality
CVE-2026-55074: Host Side Jail Path Concatenationcve-2026-55074-host-side-jail-path-concatenation

Constructing destination paths on the host by concatenating a jail or container host root path with target paths allows guest-controlled symlinks to escape the jail/container boundary (CWE-59). File operations should be performed inside the isolated guest environment (e.g. via jexec or chroot).

by Provallyupdated 2026-09-02Apache-2.0
2780 direct278 via packs
downloads
72quality
CVE-2026-54094: Files File Go Cwe 000 Cve 2026 54094cve-2026-54094-files-file-go-cwe-000-cve-2026-54094

Insecure filesystem scoping or unsafe manual symlink checks detected. Using `afero.NewBasePathFs` directly on struct fields or implementing exported manual TOCTOU checks with `filepath.EvalSymlinks` allows attackers to bypass directory restrictions and escape scopes. Encapsulate filesystem access in safe abstractions and avoid exported manual TOCTOU checks.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
72quality
CVE-2026-53786: Openat2 Resolve Beneath Path Traversal Toctoucve-2026-53786-openat2-resolve-beneath-path-traversal-toctou

Delegating path containment to openat2 with RESOLVE_BENEATH is susceptible to TOCTOU symlink race conditions. Use a step-by-step held dirfd-stack resolver with O_NOFOLLOW to safely traverse directory paths.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
72quality
CVE-2026-53785: Daemon Gated Path Confinement Bypasscve-2026-53785-daemon-gated-path-confinement-bypass

Gating secure path resolution or symlink confinement checks solely on daemon mode bypasses security protections for non-daemon receiver processes, exposing file operations to symlink path traversal vulnerabilities.

by Provallyupdated 2026-09-02Apache-2.0
2730 direct273 via packs
downloads
72quality
CVE-2026-53486: Archive Linkname Path Traversalcve-2026-53486-archive-linkname-path-traversal

Archive extraction vulnerable to path traversal (Zip Slip/symlink escape). The `linkname` property from the archive header is passed directly to file-system link creation APIs without verifying that the target path resolves within the intended extraction directory. An attacker can craft an archive with malicious links to overwrite or read sensitive files. En

by Provallyupdated 2026-09-02Apache-2.0
2760 direct276 via packs
downloads
73quality
24 of 77 loaded