Skip to content

Commit

Permalink
#77 #23 fix value format in short report
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromeleonard committed Jul 25, 2017
1 parent 35ca0a3 commit d1cd661
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analyzers/CuckooSandbox/cuckoosandbox_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def summary(self, raw):
elif result["malscore"] > 0:
level = "safe"

taxonomies.append(self.build_taxonomy(level, namespace, predicate, result["malscore"]))
taxonomies.append(self.build_taxonomy(level, namespace, "Malfamily", result["malfamily"]))
taxonomies.append(self.build_taxonomy(level, namespace, predicate, "\"{}\"".format(result["malscore"])))
taxonomies.append(self.build_taxonomy(level, namespace, "Malfamily", "\"{}\"".format(result["malfamily"])))

return {"taxonomies": taxonomies}

Expand Down

0 comments on commit d1cd661

Please sign in to comment.