Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ See our demo [here](https://pulorsok.github.io/ruleviewer/web-report-demo).
quark -a sample.apk -s -w quark_report.html
```

![](https://i.imgur.com/hG3Ag8t.png)
![](https://i.imgur.com/uizHQan.jpg)

## Navigate the Rules

Expand Down
2 changes: 1 addition & 1 deletion quark/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "22.9.1"
__version__ = "22.10.1"
2 changes: 1 addition & 1 deletion quark/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def entry_point(

show_comparison_graph(
title=f"Malicious Actions Comparison Between {len(apk)} Malwares",
lables=selected_label,
labels=selected_label,
malware_confidences=malware_confidences,
font_size=22,
)
Expand Down
4 changes: 2 additions & 2 deletions quark/utils/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def call_graph(call_graph_analysis, output_format="png"):
)


def show_comparison_graph(title, lables, malware_confidences, font_size=22):
def show_comparison_graph(title, labels, malware_confidences, font_size=22):
"""
show radar chart based on max label confidence of several malwares
:param title: title of the graph to be displayed
Expand Down Expand Up @@ -246,7 +246,7 @@ def show_comparison_graph(title, lables, malware_confidences, font_size=22):
fig.add_trace(
go.Scatterpolar(
r=malware_confidences[malware_name],
theta=lables,
theta=labels,
fill="toself",
name=malware_name,
line=dict(
Expand Down
2 changes: 1 addition & 1 deletion quark/webreport/analysis_report_layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ <h4>Sample Information</h4>
<div class="row radar-chart">
<div class="col-md-6"><canvas id="myChart" width="400" height="400"></canvas></div>
<div class="col-md-6">
<h3>Select lables to see max confidence in radare chart</h3>
<h3>Select labels to see max confidence in radare chart</h3>
<div class="label-group">
$all_labels_html$
</div>
Expand Down