diff --git a/CHANGELOG.md b/CHANGELOG.md index 71e31a35..ff768b81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.13.0.0] - 2025-02-26 +## [0.13.1.0] - 2025-XX-XX +New release of the HyperDbg Debugger. + +### Added + +### Changed + +## [0.13.0.0] - 2025-02-25 New release of the HyperDbg Debugger. ### Added diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8f7b33d5..8b980747 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -33,8 +33,8 @@ Please make sure to create a [discussion](https://github.com/orgs/HyperDbg/discu - Working on live memory migration and adding support for kernel-mode time travel debugging. - Integrating the [z3 project](https://github.com/Z3Prover/z3) into HyperDbg and adding commands based on the z3 solver. - Adding the [Bochs emulator](https://github.com/bochs-emu/Bochs) to HyperDbg. -- Creating commands to inspect and read details of PCIe devices. -- Mitigating the anti-hypervisor method described [here](https://howtohypervise.blogspot.com/2019/01/a-common-missight-in-most-hypervisors.html). +- ~~Creating commands to inspect and read details of PCIe devices.~~ Added: [link][link] +- ~~Mitigating the anti-hypervisor method described [here](https://howtohypervise.blogspot.com/2019/01/a-common-missight-in-most-hypervisors.html).~~ [[Fixed](https://github.com/HyperDbg/HyperDbg/pull/497)] - Creating different examples of how to use the SDK (using different programming languages). - Debugging and fixing bugs related to HyperDbg's physical serial communication. - Reading symbol information from modules in memory (currently, HyperDbg opens a file which continues the debugger). @@ -42,7 +42,7 @@ Please make sure to create a [discussion](https://github.com/orgs/HyperDbg/discu - Reading the list of modules for the '[lm](https://docs.hyperdbg.org/commands/debugging-commands/lm)' command directly from kernel-mode. - Detecting and fixing anti-hypervisor methods described [here](https://github.com/Ahora57/MAJESTY-technologies). - Investigating why the symbols parser (DIA SDK) could not read symbols of the 'kernel32!*'. -- Fixing the problem with [XSETBV instruction freezing](https://github.com/HyperDbg/HyperDbg/issues/429). +- ~~Fixing the problem with [XSETBV instruction freezing](https://github.com/HyperDbg/HyperDbg/issues/429).~~ [[Fixed](https://github.com/HyperDbg/HyperDbg/pull/491)] - Adding an event function that detects coverage. - Bypassing [al-khaser](https://github.com/LordNoteworthy/al-khaser). - Creating the 'alias' command that converts or registers scripts as a command, for example: "alias !list .script list.dbg" (discussion needed). diff --git a/CREDITS.md b/CREDITS.md index 585e4582..84b77ec8 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -22,4 +22,5 @@ The attributions listed on this credits page are acknowledged without any partic - Mohammad K. Fallah ([@mkfallah11](https://github.com/mkfallah11)) for implementing the optimization algorithms - Xandora Team ([xandora.io](https://www.xandora.io)) for [Keystone](https://github.com/keystone-engine/keystone) engine - xmaple555 ([@xmaple555](https://github.com/xmaple555)) for contributions in HyperDbg core and the script engine -- Abbas Masoumi Gorji ([@AbbasMasoumiG](https://x.com/AbbasMasoumiG)) +- Abbas Masoumi Gorji ([@AbbasMasoumiG](https://twitter.com/AbbasMasoumiG)) +- Björn Ruytenberg ([@0Xiphorus](https://twitter.com/0Xiphorus)) diff --git a/hyperdbg/include/SDK/headers/Constants.h b/hyperdbg/include/SDK/headers/Constants.h index 17db68d3..cae4e9e0 100644 --- a/hyperdbg/include/SDK/headers/Constants.h +++ b/hyperdbg/include/SDK/headers/Constants.h @@ -18,7 +18,7 @@ #define VERSION_MAJOR 0 #define VERSION_MINOR 13 -#define VERSION_PATCH 0 +#define VERSION_PATCH 1 // // Example of __DATE__ string: "Jul 27 2012"