Skip to content

Commit

Permalink
#66 fix wording and typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromeleonard committed Jul 4, 2017
1 parent fa91033 commit 5cafb3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion analyzers/FireHOLBlocklists/firehol_blocklists.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def _check_ip(self, ip):
def summary(self, raw):
taxonomies = []
level = "info"
namespace = "Filehol"
namespace = "Firehol"
predicate = "Blocklists"
value = "\"0 hit\""

Expand Down
4 changes: 2 additions & 2 deletions analyzers/Hippocampe/hippo.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ def summary(self, raw):


if (self.service == 'hipposcore'):
r = self.scoreSummary(raw).get("data", 0)
r = self.scoreSummary(raw).get(self.data, 0).get("hipposcore", 0)
value = r
if r > 0:
level = "malicious"
taxonomies.append(taxonomy)
elif (self.service == 'more'):
r = self.moreSummary(raw).get("data", 0)
r = len(self.moreSummary(raw).get(self.data, 0))
value = "\"{} record(s)\"".format(r)
if r > 0:
level = "malicious"
Expand Down
2 changes: 1 addition & 1 deletion thehive-templates/Virusshare_2_0/long.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
</div>
<div class="panel-body">
<dl class="dl-horizontal" ng-if="content.errorMessage">
<dt><i class="fa fa-warning"></i> PassiveDNS: </dt>
<dt><i class="fa fa-warning"></i> Virusshare: </dt>
<dd class="wrap">{{content.errorMessage}}</dd>
</dl>
</div>
Expand Down

0 comments on commit 5cafb3e

Please sign in to comment.