-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathCHANGELOG
59 lines (31 loc) · 1.75 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
v3.2 - 11/01/2025
-----------------
* New sessions format. Breaks compatibility with previous format. Sorry!
* Temporary hardware breakpoints and command to step over using hardware breakpoints.
* Commands to list and suspend threads.
* Display breakpoint number when adding new breakpoints.
* Additional information added to breakpoint list command.
* Improve commands help.
* Code formatting fixes.
* Fix arm64 command. Thanks dkmcgrath!
* Replace uuid property with GetUUIDString() method.
v3.1beta - 25/12/2023
---------------------
* Add breakpoint session save and restore. New commands are 'ss', 'rs', 'ls'.
* Add feature to add comments to disassembly view. New commands are 'acm', 'dcm', 'lcm'.
* Fix short help for every command.
* Rename 'bhb' command to 'bh' for consistency.
* Improve output of print_images command
* Accept spaces in the bm command
* Replace aliases for run and breakpoint with our own command.
* Replace 'bpl' command with our own version and different output. The original can be called with 'breakpoint list'.
* Fix the crack cmds for arm64
* Add missing pointer authenticated branches and add missing PAC removal from pointers
v3.0 - 20/04/2023
-----------------
* Full arm64 (AArch64) support for most commands and displays.
* Add new `bm` command to break when specific images/modules are loaded. Super useful to break on dynamic libraries for malware analysis and other reversing tasks. This could be done manually with stop on shared library events setting but this command automates and simplifies the process.
* Cleaned up, simplified, improved and updated code.
* Bug fixes.
* Small changes and improvements to UI.
* Dark theme support. Not really a dark theme for now other than fixing basic colors to look ok. Pull requests?