Skip to content

Commit

Permalink
Malware classification interface
Browse files Browse the repository at this point in the history
  • Loading branch information
lucascarvalhoroncoroni committed Jun 20, 2017
1 parent d2ea1c3 commit 131de65
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
9 changes: 9 additions & 0 deletions mainProject/SFAnalytics/static/css/malwareResultStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@
background-color: #f5f5f0;
}

.red{
color: red;
}

.green{
color: green;

}

#opcodeTable{
overflow: auto;
overflow-y: auto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,25 @@ <h1>{{fileAnalysed.name}}</h1>
</div>
</div>
<div id="Body" class="container-fluid">
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-8 list-group">
{% if fileAnalysed.isMalware%}
<div class="list-group-item container-fluid back">
<span class="col-lg-5">Classification of the file : Malware</span>
<div class="col-lg-6"></div>
<span class="glyphicon glyphicon-remove text-danger"></span>
</div>
{% else %}
<div class="list-group-item container-fluid back">
<span class="col-lg-5">Classification of the file : Software</span>
<div class="col-lg-6"></div>
<span class="glyphicon glyphicon-ok text-success"></span>
</div>
{% endif %}
</div>
<div class="col-lg-2"></div>
</div>
<div class="row">
<div id="opcodeTable" class="col-sm-3">
<table class="container-fluid table-bordered table-striped">
Expand Down Expand Up @@ -85,6 +104,23 @@ <h1>{{fileAnalysed.name}}</h1>
</table>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="pager">
<li><a href="http://127.0.0.1:8000/SFAnalytics/malwareResult/opcodes">More opcodes</a></li>
</div>
</div>
<div class="col-sm-6">
<div class="pager">
<li><a href="http://127.0.0.1:8000/SFAnalytics/malwareResult/Strings">More strings</a></li>
</div>
</div>
<div class="col-sm-3">
<div class="pager">
<li><a href="http://127.0.0.1:8000/SFAnalytics/malwareResult/dlls">More dlls</a></li>
</div>
</div>
</div>
</div>
<script src="{% static 'js/jquery.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
Expand Down

0 comments on commit 131de65

Please sign in to comment.