NsJail Documentation

repository·master·Indexed 26 days ago

https://github.com/google/nsjail

A Linux process isolation tool that uses namespaces, resource limits, and seccomp-bpf syscall filters to create secure sandboxes for hosting CTF challenges, fuzzing, and sandboxing untrusted applications.

Tokens
187
Snippets
1
Records
1
Agent score
38%

What's inside nsjail

  1. Install NsJail from source

    master

    To build NsJail from source on Debian/Ubuntu, install the required dependencies and use make.

    Dependencies:

    • autoconf, bison, flex, gcc, g++, git, libprotobuf-dev, libnl-route-3-dev, libtool, make, pkg-config, protobuf-compiler
    # Install dependencies (Debian/Ubuntu)
    sudo apt-get install autoconf bison flex gcc g++ git libprotobuf-dev libnl-route-3-dev libtool make pkg-config protobuf-compiler
    
    git clone https://github.com/google/nsjail.git
    cd nsjail
    make