Skip to content

Commit abae20d

Browse files
committed
Monitor updates: see changelog for details
1 parent c68a67c commit abae20d

File tree

7 files changed

+9
-5
lines changed

7 files changed

+9
-5
lines changed

analyzer/windows/bin/loader.exe

6 KB
Binary file not shown.

analyzer/windows/bin/loader_x64.exe

-6.5 KB
Binary file not shown.

analyzer/windows/dll/capemon.dll

11 KB
Binary file not shown.

analyzer/windows/dll/capemon_x64.dll

17 KB
Binary file not shown.

changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### [28.04.2025]
2+
* Monitor updates:
3+
* .NET JIT cache dumps: off by default, configurable limit with option jit-dumps=X
4+
* Windows Loader Snaps: vDbgPrintExWithPrefixInternal hook & option 'snaps=1' for loader snaps output in analysis log
5+
* Disable AMSI dumps by default (and uncheck web submission tickbox)
6+
* Native hookset (ntdll only) option: native=1
7+
* CryptDuplicateKey hook (thanks @KillerInstinct)
8+
19
### [02.04.2025]
210
* Monitor updates:
311
* Trace: allow custom stepping behavior with 'stepmode' option, stepmode=1 steps into short calls (e.g. Rhadamanthys control flow flattening)

web/submission/views.py

-4
Original file line numberDiff line numberDiff line change
@@ -357,10 +357,6 @@ def index(request, task_id=None, resubmit_hash=None):
357357
if request.POST.get("job_category"):
358358
job_category = request.POST.get("job_category")
359359

360-
# amsidump is enabled by default in the monitor for Win10+
361-
if web_conf.amsidump.enabled and not request.POST.get("amsidump"):
362-
options += "amsidump=0,"
363-
364360
options = options[:-1]
365361

366362
opt_apikey = False

web/templates/submission/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@
617617
{% if config.amsidump %}
618618
<div class="form-check">
619619
<label>
620-
<input type="checkbox" name="amsidump" checked/> AMSI dumps <span class="text-muted"><small>(Windows 10+ Anti-Malware Scan Interface)</small></span>
620+
<input type="checkbox" name="amsidump" /> AMSI dumps <span class="text-muted"><small>(Windows 10+ Anti-Malware Scan Interface)</small></span>
621621
</label>
622622
</div>
623623
{% endif %}

0 commit comments

Comments
 (0)