Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions analyzer/windows/data/yara/Rhadamanthys.yar
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,15 @@ rule RhadaAnti
condition:
all of them
}

rule RhadUnhook
{
meta:
cape_options = "bp0=$scan*,action0=scan:rbx,count=0,patch=$target+21:9090"
packed = "dd4af0f1888977f6d9eb820b19f4afc2a73d1c494a132ab4261498328005dda7"
strings:
$scan = {48 85 DB 0F 84 E1 00 00 00 4C 8D 44 24 70 48 8D 54 24 40 48 8B CE 44 89 7C 24 50 4C 89 64 24 40 48 C7 44 24 48 00 00 00 00 C6 44 24 54 00 FF}
$target = {4D 85 C9 48 8B C6 4A 8D 0C 1E 74 15 48 2B D8 49 2B DB 8A 04 0B 88 01 48 83 C1 01 49 83 E9 01 75 F1 5F 5E 5D 5B C3}
condition:
any of them
}
4 changes: 3 additions & 1 deletion data/html/sections/behavior.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h4>{{process.process_name}} <small>PID: {{process.process_id}}, Parent PID: {{p
<div>
<h4><a href="javascript:showHide('process_{{process.process_id}}');">{{process.process_name}}</a>
<small>PID: {{process.process_id}}, Parent PID: {{process.parent_id}}, Full Path: <b>{{process.module_path}}</b>
{% if process.environ.CommandLine %}
{% if process.environ and process.environ.CommandLine %}
, Command Line: <b>{{ process.environ.CommandLine }}</b>
{% endif %}
</small>
Expand Down Expand Up @@ -158,6 +158,7 @@ <h4><a href="javascript:showHide('process_{{process.process_id}}');">{{process.p
Nothing to display.
{% endif %}
{% endif %}
{% if results.behavior and results.behavior.summary %}
<div class="card card-body">
<b>Accessed Files</b>
{% if results.behavior.summary.files %}
Expand Down Expand Up @@ -266,4 +267,5 @@ <h4><a href="javascript:showHide('process_{{process.process_id}}');">{{process.p
Nothing to display.
{% endif %}
</div>
{% endif %}
</section>
Loading