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
2 changes: 1 addition & 1 deletion web/templates/analysis/behavior/_processes.html
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ <h5 class="alert-heading fw-bold">{{process.process_name}}</h5>
</div>

<button class="btn btn-sm btn-link text-white-50" type="button" data-bs-toggle="collapse" data-bs-target="#advFilter_{{process.process_id}}">
Advanced Filters <i class="fas fa-chevron-down"></i>
Advanced Filters <i class="fas fa-chevron-down float-end text-white-50 ms-1"></i>
</button>

<div class="collapse mt-2" id="advFilter_{{process.process_id}}">
Expand Down
2 changes: 1 addition & 1 deletion web/templates/analysis/generic/_file_info.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div class="card bg-dark border-secondary mb-3">
<div class="card-header border-secondary d-flex justify-content-between align-items-center">
<h5 class="mb-0 text-white"><i class="fas fa-file-alt me-2 text-primary"></i> File Information</h5>
<h5 class="mb-0 text-white"><i class="fas fa-file-alt me-2 text-info"></i> File Information</h5>
{% if file.dropdir %}
<a href="{% url "file" tab_name id file.dropdir %}" class="btn btn-sm btn-outline-light"><i class="fas fa-download"></i> Download</a>
{% else %}
Expand Down
2 changes: 1 addition & 1 deletion web/templates/analysis/generic/_virustotal.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h5 class="mb-0 text-white">
<small class="text-white-50 ms-2">({{file.virustotal.positives}}/{{file.virustotal.total}}){% if file.virustotal.detection %} - {{file.virustotal.detection}}{% endif %}</small>
</h5>
<button class="btn btn-sm btn-outline-light collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#virustotal_binary" aria-expanded="false">
<i class="fas fa-chevron-down"></i>
<i class="fas fa-chevron-down float-end text-white-50 ms-1"></i>
</button>
</div>

Expand Down
2 changes: 1 addition & 1 deletion web/templates/analysis/network/_dns.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<section id="domains">
<div class="card bg-dark border-secondary">
<div class="card-header border-secondary">
<h5 class="mb-0 text-white"><i class="fas fa-globe-dns me-2 text-info"></i>DNS Requests</h5>
<h5 class="mb-0 text-white"><i class="fas fa-globe me-2 text-info"></i>DNS Requests</h5>
</div>
{% if network.dns %}
<div class="card-body">
Expand Down
2 changes: 1 addition & 1 deletion web/templates/analysis/network/_tcp.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h5 class="mb-0 text-white"><i class="fas fa-network-wired me-2 text-info"></i>T
<div class="card-body">
<div class="row">
<div class="col-md-6">
<table class="table table-dark table-striped table-bordered">
<table class="table table-dark table-striped table-bordered" style="width: 100%;margin-left: auto;margin-right: auto;">
<tr>
<th>Source</th>
<th>Source Port</th>
Expand Down
2 changes: 1 addition & 1 deletion web/templates/analysis/overview/_info.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h5 class="d-inline-block me-2 font-weight-bold">Status:</h5>
<!-- Analysis Details Card -->
<div class="card bg-dark border-secondary mb-3">
<div class="card-header border-secondary d-flex justify-content-between align-items-center">
<h5 class="mb-0 text-white"><i class="fas fa-info-circle me-2 text-primary"></i> Analysis Details</h5>
<h5 class="mb-0 text-white"><i class="fas fa-info-circle me-2 text-info"></i> Analysis Details</h5>
{% if settings.REPROCESS_TASKS %}
<a class="btn btn-sm btn-outline-secondary" href="{% url "reprocess_tasks" id %}" role="button" data-bs-toggle="tooltip" title="Reprocess Task">
<i class="fas fa-redo"></i>
Expand Down
2 changes: 1 addition & 1 deletion web/templates/analysis/overview/_signatures.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h5 class="mb-0 text-white"><i class="fas fa-file-signature me-2 text-warning"><
{% endif %}
{{signature.description}}
</div>
<small class="text-dark"><i class="fas fa-chevron-down"></i></small>
<small class="text-dark"><i class="fas fa-chevron-down float-end text-white-50 ms-1"></i></small>
</div>
</a>
<div class="collapse" id="signature_collapse_{{signature.name}}">
Expand Down
2 changes: 1 addition & 1 deletion web/templates/analysis/overview/_summary.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<section id="summary" class="mb-4">
<div class="card bg-dark border-secondary">
<div class="card-header border-secondary">
<h5 class="mb-0 text-white"><i class="fas fa-list-alt me-2 text-primary"></i> Summary</h5>
<h5 class="mb-0 text-white"><i class="fas fa-list-alt me-2 text-info"></i> Summary</h5>
</div>
<div class="card-body">
<div class="row">
Expand Down
1 change: 1 addition & 0 deletions web/templates/analysis/overview/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ <h2 class="mb-0">
{% if analysis.info.has_cents_rules %}
<a class="btn btn-sm btn-outline-info me-3" href="{% url "filereport" analysis.info.id "cents" %}"><i class="fas fa-download me-1"></i> CENTS Rules</a>
{% endif %}
<i class="fas fa-chevron-down m-1i"></i>
</div>
</button>
</h2>
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 @@ -11,7 +11,7 @@
</div>
</form>
<div class="text-center mt-3">
<p class="text-white-50 mb-0">Need help? <a href="#help" class="text-info" data-bs-toggle="collapse" role="button" aria-expanded="false" aria-controls="help">Click here for search syntax <i class="fas fa-chevron-down"></i></a></p>
<p class="text-white-50 mb-0">Need help? <a href="#help" class="text-info" data-bs-toggle="collapse" role="button" aria-expanded="false" aria-controls="help">Click here for search syntax <i class="fas fa-chevron-down float-end text-white-50 ms-1"></i></a></p>
</div>
</div>
</div>
Expand Down
Loading
Loading