Skip to content

Commit

Permalink
small gui improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
doomedraven committed Dec 20, 2024
1 parent ec68d5c commit cdb2202
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/processing/behavior.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,8 @@ def _parse(self, row):
if (
api_name == "DllLoadNotification"
and len(arguments) == 3
and arguments[0].get("value", "") == "load"
and arguments[-1].get("name", "") == "DllBase"
and arguments[0].get("value", "") == "load"
and "DllBase" not in self.environdict
and _clean_path(arguments[1]["value"], self.options.replace_patterns) in self.environdict.get("CommandLine", "")
):
Expand Down
2 changes: 1 addition & 1 deletion web/templates/analysis/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<div class="card ">
<div class="card-header">Recent Files</div>
{% if files %}
<table class="table table-striped table-sm" style="table-layout: fixed;">
<table class="table table-striped table-sm table-hover" style="table-layout: fixed;">
<thead>
<tr>
<th width="5%">ID</th>
Expand Down
2 changes: 1 addition & 1 deletion web/templates/analysis/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div id="help" class="collapse">
<p class="text-muted" style="margin-top: 10px;">ElasticSearch queries do not use a prefix. ie: '*windows.*' would match 'time.windows.com'</p>
<p class="text-muted" style="margin-top: 10px;">For MD5, SHA1, SHA3 SHA256 and SHA512 no prefix is needed(will match any file generated by this analysis as binary/dropped/CAPEdump/etc).</p>
<table class="table table-striped table-centered">
<table class="table table-striped table-centered table-hover">
<thead>
<tr>
<th style="text-align: center;">Prefix</th>
Expand Down

0 comments on commit cdb2202

Please sign in to comment.