pub fn file_path_obfuscate(path: &str) -> StringExpand description
Generates file path obfuscation for path traversal and file inclusion testing.
Useful for penetration testing on Parrot and Kali Linux systems.
ยงExamples
use redstr::file_path_obfuscate;
let path = "/etc/passwd";
let result = file_path_obfuscate(path);
assert!(result.len() > 0);