gitextract_c3jrejhf/ ├── .github/ │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Cargo.toml ├── LICENSE ├── README.md ├── SECURITY.md ├── examples/ │ └── sandbox.rs ├── integration/ │ ├── canonicalize.rs │ ├── command_io.rs │ ├── consistent_id_mappings.rs │ ├── delete_before_lockdown.rs │ ├── env.rs │ ├── exec.rs │ ├── exec_symlinked_dir.rs │ ├── exec_symlinked_dirs_exec.rs │ ├── exec_symlinked_file.rs │ ├── fs.rs │ ├── fs_broken_symlink.rs │ ├── fs_null.rs │ ├── fs_readonly.rs │ ├── fs_restrict_child.rs │ ├── fs_symlink.rs │ ├── fs_symlink_dir.rs │ ├── fs_symlink_dir_separate_perms.rs │ ├── fs_write_also_read.rs │ ├── full_env.rs │ ├── full_sandbox.rs │ ├── harness.rs │ ├── missing_exception.rs │ ├── net.rs │ └── seccomp.rs ├── rustfmt.toml └── src/ ├── error.rs ├── lib.rs ├── linux/ │ ├── mod.rs │ ├── namespaces.rs │ └── seccomp.rs ├── macos.rs └── process/ ├── linux.rs ├── macos.rs └── mod.rs