|
hace 1 año | |
---|---|---|
.github/workflows | hace 1 año | |
config | hace 1 año | |
docs | hace 1 año | |
examples | hace 1 año | |
qemu | hace 1 año | |
tools | hace 1 año | |
.gitignore | hace 2 años | |
.travis.yml | hace 1 año | |
CHANGELOG.md | hace 1 año | |
LICENSE | hace 2 años | |
README.md | hace 1 año | |
db.go | hace 1 año | |
debug.go | hace 1 año | |
gen.go | hace 1 año | |
go.mod | hace 1 año | |
go.sum | hace 1 año | |
images.config.go | hace 1 año | |
images.go | hace 1 año | |
kernel.go | hace 1 año | |
kernel_linux.go | hace 1 año | |
kernel_macos.go | hace 1 año | |
log.go | hace 1 año | |
main.go | hace 1 año | |
pack.go | hace 1 año | |
pew.go | hace 1 año | |
pew_test.go | hace 2 años |
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).
Qemu, docker and golang is required.
Also do not forget to set GOPATH and PATH e.g.:
$ echo 'export GOPATH=$HOME' >> ~/.bashrc
$ echo 'export PATH=$PATH:$HOME/bin' >> ~/.bashrc
$ source ~/.bashrc
# emerge app-emulation/qemu app-emulation/docker dev-lang/go
$ brew install go qemu
$ brew cask install docker
$ sudo dnf install go qemu moby-engine
Also check out docker post-installation steps.
$ go get -u code.dumpstack.io/tools/out-of-tree
Then you can check it on kernel module example:
$ cd $GOPATH/src/code.dumpstack.io/tools/out-of-tree/examples/kernel-module
$ out-of-tree kernel autogen # generate kernels based on .out-of-tree.toml
$ out-of-tree pew
Run by absolute path
$ out-of-tree --path /path/to/exploit/directory pew
Test only with one kernel:
$ out-of-tree pew --kernel='Ubuntu:4.10.0-30-generic'
Run debug environment:
$ out-of-tree debug --kernel='Ubuntu:4.10.0-30-generic'
Test binary module/exploit with implicit defined test ($BINARY_test)
$ out-of-tree pew --binary /path/to/exploit
Test binary module/exploit with explicit defined test
$ out-of-tree pew --binary /path/to/exploit --test /path/to/exploit_test
Guess work kernels:
$ out-of-tree pew --guess
Use custom kernels config
$ out-of-tree --kernels /path/to/kernels.toml pew
Generate all kernels
$ out-of-tree kernel genall --distro Ubuntu --ver 16.04
If anything happens that you cannot solve -- just remove $HOME/.out-of-tree
.
But it’ll be better if you’ll write the bug report.
Read Qemu API.
$ cd $GOPATH/src/code.dumpstack.io/tools/out-of-tree/tools/qemu-debian-img/
$ docker run --privileged -v $(pwd):/shared -e IMAGE=/shared/ubuntu1404.img -e RELEASE=trusty -t gen-ubuntu1804-image
$ docker run --privileged -v $(pwd):/shared -e IMAGE=/shared/ubuntu1604.img -e RELEASE=xenial -t gen-ubuntu1804-image