Skip to content

Commit 3bd3395

Browse files
v9.1.0 (#2614)
Co-authored-by: Mike Hunhoff <mike.hunhoff@gmail.com>
1 parent 7ecf292 commit 3bd3395

File tree

3 files changed

+44
-15
lines changed

3 files changed

+44
-15
lines changed

CHANGELOG.md

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,11 @@
66

77
### Breaking Changes
88

9-
### New Rules (4)
9+
### New Rules (0)
1010

11-
- host-interaction/registry/change-registry-key-timestamp wballenthin@google.com
12-
- host-interaction/mutex/check-mutex-and-terminate-process-on-windows @_re_fox moritz.raabe@mandiant.com mehunhoff@google.com
13-
- anti-analysis/anti-forensic/clear-logs/clear-windows-event-logs-remotely 99.elad.levi@gmail.com
1411
-
1512

1613
### Bug Fixes
17-
- only parse CAPE fields required for analysis @mike-hunhoff #2607
18-
- main: render result document without needing associated rules @williballenthin #2610
19-
- vmray: only verify process OS and monitor IDs match @mike-hunhoff #2613
20-
- render: don't assume prior matches exist within a thread @mike-hunhoff #2612
2114

2215
### capa Explorer Web
2316

@@ -26,8 +19,30 @@
2619
### Development
2720

2821
### Raw diffs
29-
- [capa v9.0.0...master](https://github.com/mandiant/capa/compare/v9.0.0...master)
30-
- [capa-rules v9.0.0...master](https://github.com/mandiant/capa-rules/compare/v9.0.0...master)
22+
- [capa v9.1.0...master](https://github.com/mandiant/capa/compare/v9.1.0...master)
23+
- [capa-rules v9.1.0...master](https://github.com/mandiant/capa-rules/compare/v9.1.0...master)
24+
25+
## v9.1.0
26+
27+
This release improves a few aspects of dynamic analysis, relaxing our validation on fields across many CAPE versions, for example.
28+
It also includes an updated rule pack in which many dynamic rules make better use of the "span of calls" scope.
29+
30+
31+
### New Rules (3)
32+
33+
- host-interaction/registry/change-registry-key-timestamp wballenthin@google.com
34+
- host-interaction/mutex/check-mutex-and-terminate-process-on-windows @_re_fox moritz.raabe@mandiant.com mehunhoff@google.com
35+
- anti-analysis/anti-forensic/clear-logs/clear-windows-event-logs-remotely 99.elad.levi@gmail.com
36+
37+
### Bug Fixes
38+
- only parse CAPE fields required for analysis @mike-hunhoff #2607
39+
- main: render result document without needing associated rules @williballenthin #2610
40+
- vmray: only verify process OS and monitor IDs match @mike-hunhoff #2613
41+
- render: don't assume prior matches exist within a thread @mike-hunhoff #2612
42+
43+
### Raw diffs
44+
- [capa v9.0.0...v9.1.0](https://github.com/mandiant/capa/compare/v9.0.0...v9.1.0)
45+
- [capa-rules v9.0.0...v9.1.0](https://github.com/mandiant/capa-rules/compare/v9.0.0...v9.1.0)
3146

3247
## v9.0.0
3348

capa/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "9.0.0"
15+
__version__ = "9.1.0"
1616

1717

1818
def get_major_version():

web/public/index.html

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -214,22 +214,36 @@ <h2 class="mt-3">Rule Updates</h2>
214214

215215
<ul class="mt-2 ps-5">
216216
<!-- TODO(williballenthin): add date -->
217+
218+
<li>
219+
added:
220+
<a href="./rules/change registry key timestamp/">
221+
change registry key timestamp
222+
</a>
223+
</li>
224+
217225
<li>
218226
added:
219-
<a href="./rules/use bigint function/">
220-
use bigint function
227+
<a href="./rules/check mutex and terminate process on windows/">
228+
check mutex and terminate process on Windows
221229
</a>
222230
</li>
223231

224232
<li>
225233
added:
226-
<a href="./rules/encrypt data using RSA via embedded library/">
227-
encrypt data using RSA via embedded library
234+
<a href="./rules/clear windows event logs remotely/">
235+
clear windows event logs remotely
228236
</a>
229237
</li>
230238
</ul>
231239

232240
<h2 class="mt-3">Tool Updates</h2>
241+
242+
<h3 class="mt-2">v9.1.0 (<em>2025-03-02</em>)</h3>
243+
<p class="mt-0">
244+
This release improves a few aspects of dynamic analysis, relaxing our validation on fields across many CAPE versions, for example.
245+
It also includes an updated rule pack in which many dynamic rules make better use of the "span of calls" scope.
246+
</p>
233247

234248
<h3 class="mt-2">v9.0.0 (<em>2025-02-05</em>)</h3>
235249
<p class="mt-0">

0 commit comments

Comments
 (0)