2019-08-16 20:33:56 +00:00
|
|
|
# Changelog
|
|
|
|
|
|
|
|
[ISO 8601](https://xkcd.com/1179/).
|
|
|
|
|
|
|
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
|
|
|
|
|
## [Unreleased]
|
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
### Added
|
|
|
|
|
|
|
|
- New parameter `--max=X` is added for `autogen` (generate kernels
|
2019-08-17 09:12:49 +00:00
|
|
|
base on `.out-of-tree.toml` definitions) and `pew` (automated
|
|
|
|
runs) and allows to specify a maximum number of runs per each
|
|
|
|
supported kernel in module/exploit definition.
|
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
- New command `genall` -- generate all kernels for specified
|
|
|
|
distro/version.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
- All logs stores in sqlite3 database. Implemented specific commands
|
|
|
|
for making simple queries and export data to markdown and json.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
- Implemented success rate calculation for previous runs.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
- Save of build results supported by parameter `--dist` for `pew`.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
- Support for generating kernels info from host system.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
- Support for build on host.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
- Support for custom kernels.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
|
|
|
- Now debugging environment is automatically looking for debug
|
|
|
|
kernel on the host system.
|
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
- Added ability to enable/disable kaslr/smep/smap for debugging by
|
|
|
|
command line flags.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
|
|
|
- New parameter `--threads=N` is added for `pew` and allows to
|
|
|
|
specify maximum number of threads that will be used for parallel
|
2019-08-17 01:30:29 +00:00
|
|
|
build/run/test.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
|
|
|
- Tagging for runs. Tags write to log and can be used for
|
|
|
|
statistics.
|
2019-08-17 01:30:29 +00:00
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
2019-08-17 09:12:49 +00:00
|
|
|
- Now if there's no base image found — out-of-tree will try to use
|
|
|
|
an image from closest previous version, e.g. image from Ubuntu
|
|
|
|
18.04 for Ubuntu 18.10.
|
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
- Kernel modules tests will not be failed if there are no tests
|
|
|
|
exists.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
|
|
|
- Now *out-of-tree* will return negative error code if at least one
|
|
|
|
of the stage was failed.
|
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
- Project is switch to use Go modules.
|
|
|
|
|
|
|
|
### Removed
|
|
|
|
|
|
|
|
- *Kernel factory* is removed completely in favor of incremental
|
|
|
|
Dockerfiles.
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
|
|
|
- Command `timeout` is not required anymore.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
- Errors is more meaningful.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
|
|
|
- Temporary files is moved to `~/.out-of-tree/tmp/` to avoid docker
|
|
|
|
mounting issues on some systems.
|
2019-08-16 20:33:56 +00:00
|
|
|
|
|
|
|
## [0.2.0] - 2019-12-01
|
|
|
|
|
|
|
|
The main purpose of the release is to simplify installation.
|
|
|
|
|
2019-08-17 01:30:29 +00:00
|
|
|
### Changes
|
2019-08-17 09:12:49 +00:00
|
|
|
|
2019-08-16 20:33:56 +00:00
|
|
|
- All configuration moved to `~/.out-of-tree`.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
2019-08-16 20:33:56 +00:00
|
|
|
- Now prebuilt images can be downloaded with bootstrap.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
|
|
|
- Ability to generate kernels specific to .out-of-tree.toml in
|
|
|
|
current directory. So now there's no need to wait for several
|
|
|
|
hours for start work on specific kernel with module/exploit.
|
|
|
|
|
2019-08-16 20:33:56 +00:00
|
|
|
- Now there's no need to keep source tree and _out-of-tree_ can be
|
|
|
|
distributed in binary form.
|
2019-08-17 09:12:49 +00:00
|
|
|
|
2019-08-16 20:33:56 +00:00
|
|
|
- New command: **debug**. Creates interactive environment for kernel
|
|
|
|
module/exploit development. Still work-in-progress.
|
|
|
|
|
|
|
|
## [0.1.0] - 2019-11-20
|
|
|
|
|
|
|
|
Initial release that was never tagged.
|
|
|
|
|
|
|
|
Refer to state after first public release on ZeroNights 2018
|
|
|
|
([video](https://youtu.be/2tL7bbCdIio),
|
2019-08-16 20:36:46 +00:00
|
|
|
[slides](https://2018.zeronights.ru/wp-content/uploads/materials/07-Ways-to-automate-testing-Linux-kernel-exploits.pdf)).
|