Skip to content

Commit

Permalink
Tweak to CAPE auto-submissions to cater for DLLs that trigger Compres…
Browse files Browse the repository at this point in the history
…sion or

Injection.
  • Loading branch information
kevoreilly committed Feb 23, 2017
1 parent 91bfcd8 commit ade2a11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/reporting/submitCAPE.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def run(self, results):
if parent_package=='doc':
detections.add('CAPE_Injection_doc')
continue
if parent_package=='dll':
if parent_package=='dll' or parent_package=='regsvr':
detections.add('CAPE_Injection_dll')
continue
if parent_package=='zip':
Expand All @@ -137,7 +137,7 @@ def run(self, results):

elif entry["name"] == "CAPE Compression":
if report["info"].has_key("package"):
if parent_package=='dll':
if parent_package=='dll' or parent_package=='regsvr':
detections.add('CAPE_Compression_dll')
continue
if parent_package=='doc':
Expand Down

0 comments on commit ade2a11

Please sign in to comment.