1
0
out-of-tree kernel {module, exploit} development tool
Go to file
2023-05-26 17:01:53 +00:00
.github/workflows
cache
config feat: add container timeout parameter to kernel command 2023-05-26 17:01:53 +00:00
container
distro fix: make sure apt-get will not download the repo version 2023-05-26 15:44:06 +00:00
docs Build with cgo 2023-03-16 18:46:46 +00:00
examples
fs
kernel
qemu
tools fix: do not use custom sources.list on debian 12 bookworm 2023-05-24 12:39:13 +00:00
.gitignore
CHANGELOG.md
container.go refactor: move container functions to submodule 2023-05-13 10:14:45 +00:00
db.go
debug.go
default.nix
distro.go
flake.lock
flake.nix
gen.go
go.mod refactor: move container generation to distro modules 2023-05-23 13:20:48 +00:00
go.sum feat: bump go version 2023-05-15 15:09:09 +00:00
gomod2nix.toml
images.go
kernel.go feat: add container timeout parameter to kernel command 2023-05-26 17:01:53 +00:00
LICENSE Change license to GNU AGPLv3 2018-10-08 20:54:18 +00:00
log.go
main.go
pack.go feat: show amount of kernels failed to install 2023-05-26 15:43:24 +00:00
pew.go feat: always show script 2023-05-25 12:04:29 +00:00
preload.go refactor: move kernelinfo to distro module 2023-05-23 21:33:50 +00:00
README.md
shell.nix build: nix flakes 2023-05-16 11:47:17 +00:00

Codacy Badge Go Report Card Documentation Status

out-of-tree

out-of-tree is the kernel {module, exploit} development tool.

out-of-tree was created to reduce the complexity of the environment for developing, testing and debugging Linux kernel exploits and out-of-tree kernel modules (hence the name "out-of-tree").

Screenshot

Installation

GNU/Linux (with Nix)

sudo apt install podman || sudo dnf install podman

curl -L https://nixos.org/nix/install | sh
mkdir -p ~/.config/nix
echo "experimental-features = nix-command flakes" >> ~/.config/nix/nix.conf

# stable
nix profile install nixpkgs#out-of-tree

# latest
nix profile install git+https://code.dumpstack.io/tools/out-of-tree

macOS

Note: case-sensitive FS is required for the ~/.out-of-tree directory.

$ brew install podman
$ podman machine stop || true
$ podman machine rm || true
$ podman machine init --cpus=4 --memory=4096 -v $HOME:$HOME
$ podman machine start
$ brew tap out-of-tree/repo
$ brew install out-of-tree

Read documentation for further info.

Examples

Generate all Ubuntu 22.04 kernels:

$ out-of-tree kernel genall --distro=Ubuntu --ver=22.04

Run tests based on .out-of-tree.toml definitions:

$ out-of-tree pew

Test with a specific kernel:

$ out-of-tree pew --kernel='Ubuntu:5.4.0-29-generic'

Run debug environment:

$ out-of-tree debug --kernel='Ubuntu:5.4.0-29-generic'