summaryrefslogtreecommitdiffstats
path: root/peekaboo/ruleset/rules.py
diff options
context:
space:
mode:
Diffstat (limited to 'peekaboo/ruleset/rules.py')
-rw-r--r--peekaboo/ruleset/rules.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/peekaboo/ruleset/rules.py b/peekaboo/ruleset/rules.py
index f112a70..e7eff77 100644
--- a/peekaboo/ruleset/rules.py
+++ b/peekaboo/ruleset/rules.py
@@ -159,7 +159,7 @@ class FileTypeOnGreylistRule(Rule):
return self.result(Result.unknown,
_("File type is not on the list of types to "
- "analyse (%s)") % (str(sample.mimetypes)),
+ "analyse (%s)") % sample.mimetypes,
False)
@@ -248,7 +248,7 @@ class CuckooEvilSigRule(CuckooRule):
# check if there is a "bad" signatures and return bad
matched_bad_sigs = []
for sig in bad_sigs:
- match = re.search(sig, str(sigs))
+ match = re.search(sig, "\n".join(sigs))
if match:
matched_bad_sigs.append(sig)