This commit is contained in:
mii
2024-11-04 12:42:03 +09:00
parent 784fa3e3ff
commit 62e4dabd9f
2 changed files with 4 additions and 0 deletions

3
src/attacks/cgroup.rs Normal file
View File

@ -0,0 +1,3 @@
pub fn cgroup_breakout(host_root: &str) -> Result<bool, Box<dyn std::error::Error> {
Ok(true)
}

View File

@ -1 +1,2 @@
pub mod cgroup;
pub mod procfs; pub mod procfs;