Skip to content

Commit

Permalink
doc: note job escapability
Browse files Browse the repository at this point in the history
  • Loading branch information
MaulingMonkey committed Sep 4, 2022
1 parent bd7a0e8 commit 6f4ca46
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/max_sandbox/job.rs
@@ -1,3 +1,9 @@
//! Use job objects to somewhat limit what a process can do.
//!
//! Note that jobs aren't inescapeable:
//! * [project-zero: Blog: In-Console-Able (2015)](https://googleprojectzero.blogspot.com/2015/05/in-console-able.html)
//! * [project-zero: Issue 213: Windows: Console Driver Job Object Process Limit Bypass](https://bugs.chromium.org/p/project-zero/issues/detail?id=213&redir=1)

pub use firehazard::job::*;
use firehazard::*;

Expand Down
6 changes: 6 additions & 0 deletions src/job/_job.rs
@@ -1,5 +1,11 @@
//! \[[docs.microsoft.com](https://docs.microsoft.com/en-us/windows/win32/procthread/job-objects)\]
//! Job Object types and fns
//!
//! Note that jobs aren't inescapeable:
//! * [project-zero: Blog: In-Console-Able (2015)](https://googleprojectzero.blogspot.com/2015/05/in-console-able.html)
//! * [project-zero: Issue 213: Windows: Console Driver Job Object Process Limit Bypass](https://bugs.chromium.org/p/project-zero/issues/detail?id=213&redir=1)



mod job_handles; pub use job_handles::*;
mod job_information; pub use job_information::*;
Expand Down

0 comments on commit 6f4ca46

Please sign in to comment.