1
0
Fork 0
out-of-tree kernel {module, exploit} development tool
 
 
 
 
Go to file
dump_stack() b09b51840c
feat: fetch kbuild from linux-tools for older kernels
2023-05-14 16:54:12 +00:00
.github/workflows feat: support multiple headers packages 2023-05-14 11:06:54 +00:00
cache feat: debug logging for download 2023-05-13 12:56:54 +00:00
config fix: fill config value in case of default directory 2023-05-13 15:56:54 +00:00
container fix: incorrect comment about valid releases 2023-05-14 07:27:07 +00:00
distro/debian feat: fetch kbuild from linux-tools for older kernels 2023-05-14 16:54:12 +00:00
docs Build with cgo 2023-03-16 18:46:46 +00:00
examples Ignore logs 2023-05-09 17:43:53 +00:00
fs feat: introduce temp dir helper 2023-05-13 11:29:25 +00:00
kernel feat: support multiple headers packages 2023-05-14 11:06:54 +00:00
qemu Stop waiting for ssh if qemu is dead 2023-05-10 12:30:01 +00:00
tools Add setup.sh for debian image generator 2023-05-12 12:08:03 +00:00
.gitignore Ignore cache 2023-05-11 22:18:14 +00:00
CHANGELOG.md Update changelog 2023-04-07 21:38:30 +00:00
LICENSE Change license to GNU AGPLv3 2018-10-08 20:54:18 +00:00
README.md Typo 2023-04-07 19:11:42 +00:00
container.go refactor: move container functions to submodule 2023-05-13 10:14:45 +00:00
db.go Show last log if no ID specified 2020-06-14 20:46:56 +00:00
debian.go refactor: move cache-related functions 2023-05-14 12:37:45 +00:00
debug.go refactor: remove global temporary directory base 2023-05-13 11:32:29 +00:00
gen.go Add support for applying patches 2023-02-16 10:22:08 +00:00
go.mod feat: fetch kbuild from linux-tools for older kernels 2023-05-14 16:54:12 +00:00
go.sum feat: fetch kbuild from linux-tools for older kernels 2023-05-14 16:54:12 +00:00
images.go refactor: move kernel functions to submodule 2023-05-13 10:47:47 +00:00
kernel.go refactor: move kernel functions to submodule 2023-05-13 10:47:47 +00:00
log.go Switch to zerolog 2023-03-18 21:30:07 +00:00
main.go refactor: use one provider for default cache url 2023-05-13 12:14:20 +00:00
pack.go refactor: move fs-related functions to submodule 2023-05-13 09:17:57 +00:00
pew.go refactor: remove global temporary directory base 2023-05-13 11:32:29 +00:00
preload.go refactor: remove global temporary directory base 2023-05-13 11:32:29 +00:00
shell.nix Add shell.nix 2023-01-19 16:59:25 +00:00

README.md

Codacy Badge Go Report Card Documentation Status

out-of-tree

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

out-of-tree is for automating some routine actions for creating development environments for debugging kernel modules and exploits, generating reliability statistics for exploits, and also provides the ability to easily integrate into CI (Continuous Integration).

Screenshot

Installation

GNU/Linux (with Nix)

$ curl -fsSL https://get.docker.com | sh
$ sudo usermod -aG docker user && newgrp docker
$ curl -L https://nixos.org/nix/install | sh
$ nix-env -iA nixpkgs.out-of-tree # Note: may not be up to date immediately, in this case consider installing from source

Note that adding a user to group docker has serious security implications. Check Docker documentation for more information.

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'