Skip to content

Commit 9d21add

Browse files
Merge pull request #1763 from mandiant/v6.1.0
version: v6.1.0
2 parents 934d0f9 + 9accb60 commit 9d21add

File tree

2 files changed

+33
-10
lines changed

2 files changed

+33
-10
lines changed

CHANGELOG.md

+32-9
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,37 @@
33
## master (unreleased)
44

55
### New Features
6-
- ELF: implement file import and export name extractor #1607 #1608 @Aayush-Goel-04
7-
- bump pydantic from 1.10.9 to 2.1.1 #1582 @Aayush-Goel-04
8-
- develop script to highlight the features that are not used during matching #331 @Aayush-Goel-04
96

107
### Breaking Changes
118

9+
### New Rules (0)
10+
11+
-
12+
13+
### Bug Fixes
14+
15+
### capa explorer IDA Pro plugin
16+
17+
### Development
18+
19+
### Raw diffs
20+
- [capa v6.1.0...master](https://github.com/mandiant/capa/compare/v6.1.0...master)
21+
- [capa-rules v6.1.0...master](https://github.com/mandiant/capa-rules/compare/v6.1.0...master)
22+
23+
## v6.1.0
24+
25+
capa v6.1.0 is a bug fix release, most notably fixing unhandled exceptions in the capa explorer IDA Pro plugin.
26+
@Aayush-Goel-04 put a lot of effort into improving code quality and adding a script for rule authors.
27+
The script shows which features are present in a sample but not referenced by any existing rule.
28+
You could use this script to find opportunities for new rules.
29+
30+
Speaking of new rules, we have eight additions, coming from Ronnie, Jakub, Moritz, Ervin, and [email protected]!
31+
32+
### New Features
33+
- ELF: implement import and export name extractor #1607 #1608 @Aayush-Goel-04
34+
- bump pydantic from 1.10.9 to 2.1.1 #1582 @Aayush-Goel-04
35+
- develop script to highlight features not used during matching #331 @Aayush-Goel-04
36+
1237
### New Rules (8)
1338

1439
- executable/pe/export/forwarded-export [email protected]
@@ -18,11 +43,11 @@
1843
- anti-analysis/anti-vm/vm-detection/check-for-foreground-window-switch [email protected]
1944
- linking/static/sqlite3/linked-against-cppsqlite3 [email protected]
2045
- linking/static/sqlite3/linked-against-sqlite3 [email protected]
21-
-
2246

2347
### Bug Fixes
2448

25-
- Fix binja backend stack string detection. #1473 @xusheng6
49+
- rules: fix forwarded export characteristic #1656 @RonnieSalomonsen
50+
- Binary Ninja: Fix stack string detection #1473 @xusheng6
2651
- linter: skip native API check for NtProtectVirtualMemory #1675 @williballenthin
2752
- OS: detect Android ELF files #1705 @williballenthin
2853
- ELF: fix parsing of symtab #1704 @williballenthin
@@ -32,11 +57,9 @@
3257
### capa explorer IDA Pro plugin
3358
- fix unhandled exception when resolving rule path #1693 @mike-hunhoff
3459

35-
### Development
36-
3760
### Raw diffs
38-
- [capa v6.0.0...master](https://github.com/mandiant/capa/compare/v6.0.0...master)
39-
- [capa-rules v6.0.0...master](https://github.com/mandiant/capa-rules/compare/v6.0.0...master)
61+
- [capa v6.0.0...v6.1.0](https://github.com/mandiant/capa/compare/v6.0.0...v6.1.0)
62+
- [capa-rules v6.0.0...v6.1.0](https://github.com/mandiant/capa-rules/compare/v6.0.0...v6.1.0)
4063

4164
## v6.0.0
4265

capa/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Unless required by applicable law or agreed to in writing, software distributed under the License
66
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
77
# See the License for the specific language governing permissions and limitations under the License.
8-
__version__ = "6.0.0"
8+
__version__ = "6.1.0"
99

1010

1111
def get_major_version():

0 commit comments

Comments
 (0)