The moment a path string enters your program from outside your code — an HTTP request, a config file, an archive entry, a database row, an LLM tool call — reach for strict-path. It pins that string to a directory you chose, so it can't escape via symlinks, encoding tricks, or platform quirks. 19+ real-world CVEs covered.
Prepared statements prevent SQL injection.
strict-pathprevents path injection. Same rule: data from outside never gets to act as structure.
You strip .. and check for /. But attackers have a dozen other vectors:
| Attack vector | String filter | strict-path |
|---|---|---|
../../../etc/passwd |
✅ Caught (if done right) | ✅ Blocked |
| Symlink inside boundary → outside | ❌ Passes silently | ✅ Symlink resolved, escape blocked |
Windows 8.3: PROGRA~1 bypasses filter |
❌ Passes silently | ✅ Short name resolved, escape blocked |
NTFS ADS: file.txt:secret:$DATA |
❌ Passes silently | ✅ Blocked (CVE-2025-8088) |
Unicode tricks: ..∕ (fraction slash U+2215) |
❌ Passes silently | ✅ Blocked |
| Junction/mount point → outside boundary | ❌ Passes silently | ✅ Resolved & blocked |
| TOCTOU race condition (CVE-2022-21658) | ❌ No defense | ⚡ Mitigated at validation |
| Null byte injection | ❌ Truncation varies | ✅ Blocked |
Mixed separators: ..\../etc |
❌ Often missed | ✅ Normalized & blocked |
How it works: strict-path resolves the path on disk — follows symlinks, expands short names, normalizes encoding — then checks whether the resolved path is inside the boundary. If it isn't, you get an Err. The input string is irrelevant. Only where the path actually leads matters.
Why canonicalization beats string blocklists
String-matching libraries maintain lists of dangerous patterns — .., %2e%2e, %c0%ae (overlong UTF-8), . (HTML entities), full-width Unicode dots, zero-width characters, and dozens more. Every new encoding trick requires a new blocklist entry, and a single miss is a bypass.
strict-path doesn't play that game. It asks the OS to resolve the path, then checks where it landed. URL-encoded %2e%2e isn't decoded — it's a literal directory name containing percent signs. Overlong UTF-8 sequences, HTML entities, code-page homoglyphs (¥→\ in CP932, ₩→\ in CP949) — none of these matter because the OS never interprets them as path separators or traversal sequences. The canonicalized result either falls inside the boundary or it doesn't.
This is the same principle behind SQL prepared statements: instead of escaping every dangerous character (and inevitably missing one), you separate code from data structurally. strict-path separates path resolution from path text, making the entire class of encoding-bypass attacks irrelevant by design.
[dependencies]
strict-path = "0.2"use strict_path::StrictPath;
// Untrusted input: user upload, API param, config value, AI agent output, archive entry...
let file = StrictPath::with_boundary("/var/app/downloads")?
.strict_join(&untrusted_user_input)?; // Every attack vector above → Err(PathEscapesBoundary)
let contents = file.read()?; // Built-in safe I/O — stays within the secure API
// Third-party crate needs AsRef<Path>?
third_party::process(file.interop_path()); // &OsStr (implements AsRef<Path>)If the input resolves outside the boundary — by any mechanism — strict_join returns Err.
The trigger is the origin of the path string. Is the string something your code produced, or did it come from outside?
Path/PathBuf(std) — the string is yours: a hardcoded constant, or assembled entirely from values your own code produced. There's no external input to validate.StrictPath— the string came from outside (HTTP request, config file, archive entry, DB row, env var, LLM tool call, …) and an escape attempt is an error you want to know about. Log it, deny the request, abort the operation. Silently substituting a different file would hide the problem.VirtualPath— the string came from outside, and an escape attempt should be clamped. The caller is navigating a sandbox you gave them (their own "/"), and..off the top just lands them back at their root.
Choose StrictPath (≈ 90% of cases):
- Archive extraction, config loading
- File uploads to shared storage (admin panels, CMS assets, single-tenant apps)
- LLM / AI agent file operations
- Shared system resources (logs, cache, assets)
- Any case where escaping a path boundary is considered malicious.
Choose VirtualPath (≈ 10% of cases):
- Multi-tenant file storage (SaaS per-user directories, isolated views)
- Malware analysis sandboxes
- Container-like plugins
- Any case where you want freedom of operation under complete isolation.
What strict-path is NOT
- Not a sandbox or chroot — your process still has whatever filesystem access the OS grants it.
- Not a replacement for filesystem permissions, SELinux/AppArmor, or
openat2(RESOLVE_BENEATH). Compose with those where you have them. - Not a URL or shell-argument sanitizer — different injection class, different tool.
- Not a performance-tuned lexical normalizer — canonicalization touches the disk. If every path is a hardcoded constant and you need nanoseconds,
std::pathis the right tool.
📖 Tutorial: Chapter 1 — The Basic Promise → · 📖 Complete Decision Matrix → · 📚 More Examples →
PathBoundary in the signature names the legal boundary for this operation — the directory that joined paths must stay inside.
use strict_path::PathBoundary;
// Prevents CVE-2018-1000178 (Zip Slip) automatically (https://snyk.io/research/zip-slip-vulnerability)
fn extract_archive(
extraction_dir: PathBoundary,
archive_entries: impl IntoIterator<Item = (String, Vec<u8>)>,
) -> std::io::Result<()> {
for (entry_path, data) in archive_entries {
// Malicious paths like "../../../etc/passwd" → Err(PathEscapesBoundary)
let safe_file = extraction_dir.strict_join(&entry_path)?;
safe_file.create_parent_dir_all()?;
safe_file.write(&data)?;
}
Ok(())
}The equivalent of
PathBoundaryforVirtualPathis theVirtualRoottype.
use strict_path::VirtualRoot;
// No path-traversal or symlinks can escape the tenant root.
// Everything is clamped to the virtual root, including symlink resolutions.
fn handle_file_request(tenant_id: &str, requested_path: &str) -> std::io::Result<Vec<u8>> {
let tenant_root = VirtualRoot::try_new_create(format!("./tenants/{tenant_id}"))?;
// "../../other_tenant/secrets.txt" → clamped to "/other_tenant/secrets.txt" in THIS tenant
let user_file = tenant_root.virtual_join(requested_path)?;
user_file.read()
}Tag a StrictPath with a marker type so a function can only accept paths from the boundary you meant. Mixing them up is a compile error:
use strict_path::{PathBoundary, StrictPath};
struct PublicAssets;
struct UserUploads;
fn serve_public_asset(file: &StrictPath<PublicAssets>) { /* safe to stream to any caller */ }
let assets = PathBoundary::<PublicAssets>::try_new_create("./assets")?;
let uploads = PathBoundary::<UserUploads>::try_new_create("./uploads")?;
let css: StrictPath<PublicAssets> = assets.strict_join("style.css")?;
let avatar: StrictPath<UserUploads> = uploads.strict_join("avatar.jpg")?;
serve_public_asset(&css); // ✅ OK — PublicAssets matches
// serve_public_asset(&avatar); // ❌ Compile error — UserUploads is not PublicAssets📖 Complete Marker Tutorial → — authorization patterns, permission matrices,
change_marker()usage.
- 🛡️ Built-in I/O —
read(),write(),create_dir_all(),read_dir()— no need to drop tostd::fs - 📐 Compile-time markers —
StrictPath<UserUploads>vsStrictPath<SystemConfig>can't be mixed up - 🔒 Thread-safe — all types are
Send + Sync; share across threads and async tasks - 🤖 LLM-ready — doc comments and context files designed for AI agents with function calling
Why the API looks the way it does (design notes for security reviewers and LLM integrators)
This crate combines Rust's type system with Python's "one obvious way to do it" philosophy to build an API where LLMs and humans naturally reach for the correct pattern — wrong code either doesn't compile, or the compiler tells you exactly what to do instead.
- No
AsRef<Path>, noDeref— implementing either would let anything call.join()on aStrictPathand build a new path that skips boundary validation. Not implementing them closes that accidental path. interop_path()returns&OsStr, not&Path—&Pathcarries.join()and.parent(), which would let callers build new unvalidated paths from a validated one.&OsStrdoesn't; it's a one-way exit to third-party APIs with no accidental re-entry into path manipulation.- One method per operation — there is a single entry point for each operation (e.g.
strict_joinfor joining). No aliases, no convenience wrappers, no "which one is the secure version?". The wrong-overload failure mode doesn't exist because there are no overloads. #[must_use]with instructions — themust_usemessages don't just say "unused Result", they say what to do (e.g. handle the result to detect traversal). When a caller — human or model — loops on compiler output, the message itself teaches the API.- Doc comments explain why, not just what — non-trivial functions document what attack the check prevents or what invariant it enforces, so a reader working from source alone has the reasoning on hand.
📖 Security Methodology → · 📚 Built-in I/O Methods → · 📚 Anti-Patterns →
Every dependency in the default tree earns its place by closing a specific gap in cross-platform path resolution. Each is covered by cargo audit in CI, and the canonicalization engine has direct tests against the CVE payloads listed above.
| Crate | Platforms | Security role |
|---|---|---|
soft-canonicalize |
All | Canonicalization engine — symlink resolution, 8.3 short-name expansion, cycle detection, null-byte rejection. Maintained as part of this project. |
dunce |
Windows | Strips \\?\ / \\.\ verbatim prefixes via std::path::Prefix pattern matching — no lossy UTF-8 round-trip, refuses to strip when unsafe (reserved names, >260 chars, trailing dots). Zero transitive deps. |
junction |
Windows (opt-in junctions feature) |
NTFS junction creation and inspection for built-in junction helpers. |
On Unix the total runtime tree is 2 crates (soft-canonicalize + proc-canonicalize). On Windows it adds dunce (zero transitive deps). No idle dependencies — if a crate is in the tree, it has a security job.
vs manual soft-canonicalize
soft-canonicalize= low-level path resolution engine (returnsPathBuf— unchecked against a boundary)strict-path= higher-level API on top of it: returnsStrictPath<Marker>, which carries a checked boundary and a compile-time marker so paths from different trust zones can't be passed to the same function by mistake
Compose with standard Rust crates for complete solutions:
| Integration | Purpose | Guide |
|---|---|---|
| tempfile | Secure temp directories | Guide |
| dirs | OS standard directories | Guide |
| app-path | Application directories | Guide |
| serde | Config bootstrap | Guide |
| Axum | Web server extractors | Tutorial |
| Archives | ZIP / TAR extraction | Guide |
🤖 LLM / AI Agent Integration
Our doc comments and LLM_CONTEXT_FULL.md are designed for LLMs with function calling — enabling AI agents to use this crate safely for file operations.
LLM agent prompt (copy/paste):
Fetch and follow this reference (single source of truth):
https://github.com/DK26/strict-path-rs/blob/main/LLM_CONTEXT_FULL.md
Context7 style:
Fetch and follow this reference (single source of truth):
https://github.com/DK26/strict-path-rs/blob/main/LLM_CONTEXT.md
📖 API Docs · 📚 User Guide · 📚 Anti-Patterns · 📖 Security Methodology · 🧭 Canonicalized vs Lexical · 🛠️ soft-canonicalize
MSRV: Rust 1.76 · Releases: CHANGELOG.md
MIT OR Apache-2.0