summaryrefslogtreecommitdiffstats
path: root/peekaboo/toolbox/cuckoo.py
diff options
context:
space:
mode:
Diffstat (limited to 'peekaboo/toolbox/cuckoo.py')
-rw-r--r--peekaboo/toolbox/cuckoo.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/peekaboo/toolbox/cuckoo.py b/peekaboo/toolbox/cuckoo.py
index 47966aa..8b0b646 100644
--- a/peekaboo/toolbox/cuckoo.py
+++ b/peekaboo/toolbox/cuckoo.py
@@ -535,6 +535,20 @@ class CuckooReport(object):
return []
@property
+ def signature_descriptions(self):
+ """
+ Gets the description of triggered Cuckoo signatures from report.
+
+ @returns: The description of triggered signatures from the Cuckoo
+ report or empty list if there was an error parsing the
+ Cuckoo report.
+ """
+ descriptions = []
+ for sig in self.signatures:
+ descriptions.append(sig['description'])
+ return descriptions
+
+ @property
def score(self):
"""
Gets the score from the Cuckoo report.