nfswolf 1.0.0

Pure-Rust NFS (v2/v3/v4) security toolkit: recon, analysis, export-escape, FUSE mount, and an interactive shell for authorized red-team and pentest work.
1
2
3
4
5
6
7
8
9
10
11
12
//! Core analysis and exploitation engine.
//!
//! Orchestrates protocol clients to perform security checks,
//! file handle analysis, and automated exploitation primitives
//! (escape construction, handle brute force, UID spray).

pub(crate) mod analyzer;
pub(crate) mod credential;
pub(crate) mod file_handle;
pub(crate) mod scan_types;
pub(crate) mod scanner;
pub(crate) mod uid_sprayer;