Skip to content

Commit

Permalink
add report for Manalyze Clamav plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromeleonard committed Sep 18, 2018
1 parent cf7d699 commit c9cedcf
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions thehive-templates/FileInfo_4_0/long.html
Expand Up @@ -436,7 +436,7 @@ <h4 class="panel-title">
</dl>
</div>
<div uib-accordion-group
ng-if="r.submodule_section_header!=='Manalyze raw output' && r.submodule_section_header!=='Exploit mitigation techniques' && r.submodule_section_header!=='Packer' "
ng-if="r.submodule_section_header!=='Manalyze raw output' && r.submodule_section_header!=='Exploit mitigation techniques' && r.submodule_section_header!=='Packer' && r.submodule_section_header!=='Clamav'"
ng-class="{'panel-danger': r.submodule_section_content.level === 3, 'panel-warning': r.submodule_section_content.level === 2, 'panel-info': r.submodule_section_content.level <= 1}"
heading="{{r.submodule_section_header}}" is-open="true"
is-disabled="status.isFirstDisabled">
Expand All @@ -452,7 +452,17 @@ <h4 class="panel-title">
</tr>
</table>
</div>

<div uib-accordion-group
ng-if="r.submodule_section_header== 'Clamav' "
ng-class="{'panel-danger': r.submodule_section_content.level === 3, 'panel-warning': r.submodule_section_content.level === 2, 'panel-info': r.submodule_section_content.level <= 1}"
heading="{{r.submodule_section_header}}" is-open="true"
is-disabled="status.isFirstDisabled">
<p><b>Summary</b>: {{r.submodule_section_content.summary || "None" }}</p>
<dl class="dl-horizontal" ng-repeat="(k, v) in r.submodule_section_content.content">
<dt>{{k}}</dt>
<dd>{{v}}</dd>
</dl>
</div>
<div uib-accordion-group
ng-if="r.submodule_section_header== 'Packer' "
ng-class="{'panel-danger': r.submodule_section_content.level === 3, 'panel-warning': r.submodule_section_content.level === 2, 'panel-info': r.submodule_section_content.level <= 1}"
Expand Down

0 comments on commit c9cedcf

Please sign in to comment.