-
Notifications
You must be signed in to change notification settings - Fork 566
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #863 from mandiant/v3.1.0
version: v3.1.0
- Loading branch information
Showing
2 changed files
with
35 additions
and
6 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 |
---|---|---|
|
@@ -2,17 +2,47 @@ | |
|
||
## master (unreleased) | ||
|
||
### New Features | ||
|
||
### Breaking Changes | ||
|
||
### New Rules (0) | ||
|
||
- | ||
|
||
### Bug Fixes | ||
|
||
### capa explorer IDA Pro plugin | ||
|
||
### Development | ||
|
||
### Raw diffs | ||
- [capa v3.1.0...master](https://github.com/mandiant/capa/compare/v3.1.0...master) | ||
- [capa-rules v3.1.0...master](https://github.com/mandiant/capa-rules/compare/v3.1.0...master) | ||
|
||
## v3.1.0 (2022-01-10) | ||
This release improves the performance of capa while also adding 23 new rules and many code quality enhancements. We profiled capa's CPU usage and optimized the way that it matches rules, such as by short circuiting when appropriate. According to our testing, the matching phase is approximately 66% faster than v3.0.3! We also added support for Python 3.10, aarch64 builds, and additional MAEC metadata in the rule headers. | ||
|
||
This release adds 23 new rules, including nine by Jakub Jozwiak of Mandiant. @ryantxu1 and @dzbeck updated the ATT&CK and MBC mappings for many rules. Thank you! | ||
|
||
And as always, welcome first time contributors! | ||
|
||
- @kn0wl3dge | ||
- @jtothej | ||
- @cl30 | ||
|
||
|
||
### New Features | ||
|
||
- engine: short circuit logic nodes for better performance #824 @williballenthin | ||
- engine: add optimizer the order faster nodes first #829 @williballenthin | ||
- engine: optimize rule evaluation by skipping rules that can't match #830 @williballenthin | ||
- support python 3.10 #816 @williballenthin | ||
- support aarch64 #683 | ||
- support aarch64 #683 @williballenthin | ||
- rules: support maec/malware-family meta #841 @mr-tz | ||
- engine: better type annotations/exhaustiveness checking #839 @cl30 | ||
|
||
### Breaking Changes | ||
### Breaking Changes: None | ||
|
||
### New Rules (23) | ||
|
||
|
@@ -36,7 +66,6 @@ | |
- host-interaction/process/inject/inject-shellcode-using-a-file-mapping-object [email protected] | ||
- load-code/shellcode/execute-shellcode-via-copyfile2 [email protected] | ||
- malware-family/plugx/match-known-plugx-module [email protected] | ||
- | ||
|
||
### Rule Changes | ||
|
||
|
@@ -61,8 +90,8 @@ | |
- show features script: add backend flag #430 @kn0wl3dge | ||
|
||
### Raw diffs | ||
- [capa <release>...master](https://github.com/mandiant/capa/compare/v3.0.3...master) | ||
- [capa-rules <release>...master](https://github.com/mandiant/capa-rules/compare/v3.0.3...master) | ||
- [capa v3.0.3...v3.1.0](https://github.com/mandiant/capa/compare/v3.0.3...v3.1.0) | ||
- [capa-rules v3.0.3...v3.1.0](https://github.com/mandiant/capa-rules/compare/v3.0.3...v3.1.0) | ||
|
||
|
||
## v3.0.3 (2021-10-27) | ||
|
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 +1 @@ | ||
__version__ = "3.0.3" | ||
__version__ = "3.1.0" |