2018-10-05 07:47:49 +00:00
|
|
|
# out-of-tree
|
|
|
|
|
|
|
|
out-of-tree kernel {module, exploit} development tool
|
|
|
|
|
2018-10-08 19:35:54 +00:00
|
|
|
![Screenshot](https://cloudflare-ipfs.com/ipfs/QmUmfCPWjW83xboSwSbKq1YhtAPBWpVqZAeGk3UCJemvmU)
|
|
|
|
|
2018-10-05 07:47:49 +00:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
Read [Qemu API](qemu/README.md).
|
|
|
|
|
2018-10-26 06:43:09 +00:00
|
|
|
### Generate images
|
|
|
|
|
|
|
|
$ cd $GOPATH/src/github.com/jollheef/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
|
|
|
|
|
2018-10-06 17:47:13 +00:00
|
|
|
### Generate kernels
|
|
|
|
|
|
|
|
cd $GOPATH/src/github.com/jollheef/out-of-tree/tools/kernel-factory
|
|
|
|
./bootstrap.sh # more than 6-8 hours for all kernels
|
2018-10-08 20:15:31 +00:00
|
|
|
|
|
|
|
### "I just want to see how it works"
|
|
|
|
|
2018-10-26 21:27:55 +00:00
|
|
|
If you already have Go, Qemu and Docker installed, there's cross-platform installation checklist:
|
2018-10-08 20:15:31 +00:00
|
|
|
|
|
|
|
$ go get github.com/jollheef/out-of-tree
|
2018-10-25 23:38:12 +00:00
|
|
|
$ cd $GOPATH/src/github.com/jollheef/out-of-tree/tools/qemu-debian-img/
|
|
|
|
$ ./bootstrap.sh
|
2018-10-26 06:43:09 +00:00
|
|
|
$ docker run --privileged -v $(pwd):/shared -e IMAGE=/shared/ubuntu1604.img -e RELEASE=xenial -t gen-ubuntu1804-image
|
2018-10-08 20:15:31 +00:00
|
|
|
$ cd ../kernel-factory
|
|
|
|
$ rm -rf {Debian,CentOS,Ubuntu/{14.04,18.04}} # speed up :)
|
|
|
|
$ ./bootstrap.sh
|
|
|
|
$ # wait several hours...
|
2018-10-26 18:26:43 +00:00
|
|
|
$ export OUT_OF_TREE_KERNELS_CONFIG=$GOPATH/src/github.com/jollheef/out-of-tree/tools/kernel-factory/output/kernels.toml
|
2018-10-08 20:15:31 +00:00
|
|
|
$ cd ../../examples/kernel-exploit
|
|
|
|
$ # test kernel exploit
|
2018-10-26 18:26:43 +00:00
|
|
|
$ out-of-tree pew
|
2018-10-08 20:15:31 +00:00
|
|
|
$ cd ../kernel-module
|
|
|
|
$ # test kernel module
|
2018-10-26 18:26:43 +00:00
|
|
|
$ out-of-tree pew
|