-
Notifications
You must be signed in to change notification settings - Fork 565
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
1,034 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
[mypy] | ||
|
||
[mypy-halo.*] | ||
ignore_missing_imports = True | ||
|
||
[mypy-tqdm.*] | ||
ignore_missing_imports = True | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,14 @@ | |
- add function in capa/helpers to load plain and compressed JSON reports #1883 @Rohit1123 | ||
- document Antivirus warnings and VirusTotal false positive detections #2028 @RionEV @mr-tz | ||
- Add json to sarif conversion script @reversingwithme | ||
- render maec/* fields #843 @s-ff | ||
- replace Halo spinner with Rich #2086 @s-ff | ||
- optimize rule matching #2080 @williballenthin | ||
|
||
### Breaking Changes | ||
|
||
|
||
### New Rules (8) | ||
### New Rules (17) | ||
|
||
- impact/wipe-disk/delete-drive-layout-via-ioctl [email protected] | ||
- host-interaction/driver/interact-with-driver-via-ioctl [email protected] | ||
|
@@ -22,6 +25,15 @@ | |
- nursery/unmount-volume-via-ioctl [email protected] | ||
- data-manipulation/encryption/rc4/encrypt-data-using-rc4-via-systemfunction033 [email protected] | ||
- anti-analysis/anti-forensic/self-deletion/self-delete-using-alternate-data-streams [email protected] | ||
- nursery/change-memory-permission-on-linux [email protected] | ||
- nursery/check-file-permission-on-linux [email protected] | ||
- nursery/check-if-process-is-running-under-android-emulator-on-android [email protected] | ||
- nursery/map-or-unmap-memory-on-linux [email protected] | ||
- persistence/act-as-share-provider-dll [email protected] | ||
- persistence/act-as-windbg-extension [email protected] | ||
- persistence/act-as-time-provider-dll [email protected] | ||
- host-interaction/gui/window/hide/hide-graphical-window-from-taskbar [email protected] | ||
- compiler/dart/compiled-with-dart [email protected] | ||
- | ||
|
||
### Bug Fixes | ||
|
@@ -42,6 +54,8 @@ | |
- ci: update github workflows to use latest version of actions that were using a deprecated version of node #1967 #2003 capa-rules#883 @sjha2048 @Ana06 | ||
- ci: update binja version to stable 4.0 #2016 @xusheng6 | ||
- ci: update github workflows to reflect the latest ghidrathon installation and bumped up jep, ghidra versions #2020 @psahithireddy | ||
- ci: include rule caching in PyInstaller build process #2097 @s-ff | ||
- add deptry support #1497 @s-ff | ||
|
||
### Raw diffs | ||
- [capa v7.0.1...master](https://github.com/mandiant/capa/compare/v7.0.1...master) | ||
|
@@ -295,7 +309,7 @@ For those that use capa as a library, we've introduced some limited breaking cha | |
- [capa-rules v5.1.0...v6.0.0](https://github.com/mandiant/capa-rules/compare/v5.1.0...v6.0.0) | ||
|
||
## v5.1.0 | ||
capa version 5.1.0 adds a Protocol Buffers (protobuf) format for result documents. Additionally, the [Vector35](https://vector35.com/) team contributed a new feature extractor using Binary Ninja. Other new features are a new CLI flag to override the detected operating system, functionality to read and render existing result documents, and a output color format that's easier to read. | ||
capa version 5.1.0 adds a Protocol Buffers (protobuf) format for result documents. Additionally, the [Vector35](https://vector35.com/) team contributed a new feature extractor using Binary Ninja. Other new features are a new CLI flag to override the detected operating system, functionality to read and render existing result documents, and an output color format that's easier to read. | ||
|
||
Over 25 capa rules have been added and improved. | ||
|
||
|
@@ -1494,7 +1508,7 @@ The IDA Pro integration is now distributed as a real plugin, instead of a script | |
- updates distributed PyPI/`pip install --upgrade` without touching your `%IDADIR%` | ||
- generally doing thing the "right way" | ||
|
||
How to get this new version? Its easy: download [capa_explorer.py](https://raw.githubusercontent.com/mandiant/capa/master/capa/ida/plugin/capa_explorer.py) to your IDA plugins directory and update your capa installation (incidentally, this is a good opportunity to migrate to `pip install flare-capa` instead of git checkouts). Now you should see the plugin listed in the `Edit > Plugins > FLARE capa explorer` menu in IDA. | ||
How to get this new version? It's easy: download [capa_explorer.py](https://raw.githubusercontent.com/mandiant/capa/master/capa/ida/plugin/capa_explorer.py) to your IDA plugins directory and update your capa installation (incidentally, this is a good opportunity to migrate to `pip install flare-capa` instead of git checkouts). Now you should see the plugin listed in the `Edit > Plugins > FLARE capa explorer` menu in IDA. | ||
|
||
Please refer to the plugin [readme](https://github.com/mandiant/capa/blob/master/capa/ida/plugin/README.md) for additional information on installing and using the IDA Pro plugin. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.