Skip to content

Commit 8ae19ec

Browse files
authoredSep 11, 2024··
Merge pull request #1295 from ragusaa/CLAM-2585-OleCheckEncrypted_3
Clam 2585 ole check encrypted 3
2 parents 51e2390 + 6d50a60 commit 8ae19ec

17 files changed

+942
-22
lines changed
 

‎libclamav/ole2_extract.c

+341-22
Large diffs are not rendered by default.

‎unit_tests/clamscan/ole2_encryption_test.py

+587
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

‎unit_tests/testcase.py

+14
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,20 @@ def execute_command(self, cmd, **kwargs):
508508
"""
509509
return self.execute(cmd, **kwargs)
510510

511+
# Find the metadata.json file and verify its contents.
512+
def verify_metadata_json(self, tempdir, expected=[], unexpected=[]):
513+
for parent, dirs, files in os.walk(tempdir):
514+
for f in files:
515+
if "metadata.json" == f:
516+
with open(os.path.join(parent, f)) as handle:
517+
metadata_json = handle.read()
518+
self.verify_output(metadata_json, expected=expected, unexpected=unexpected)
519+
520+
# There is only one metadata.json per scan.
521+
# We found it, so we can break out of the loop.
522+
break
523+
524+
511525

512526
class Logger(object):
513527

0 commit comments

Comments
 (0)
Please sign in to comment.