2016-05-25 02:53:03 +00:00
|
|
|
# Copyright 2016 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
#
|
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
2015-01-03 21:33:16 +00:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2009-10-18 09:26:04 +00:00
|
|
|
|
2016-05-25 02:53:03 +00:00
|
|
|
from hscommon.trans import tr
|
|
|
|
|
|
|
|
from core.scanner import Scanner, ScanType, ScanOption
|
2009-10-18 09:26:04 +00:00
|
|
|
|
2022-05-09 06:40:08 +00:00
|
|
|
from core.pe import matchblock, matchexif
|
2009-10-18 09:26:04 +00:00
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2009-10-18 09:26:04 +00:00
|
|
|
class ScannerPE(Scanner):
|
2010-01-14 15:14:26 +00:00
|
|
|
cache_path = None
|
2009-10-18 09:26:04 +00:00
|
|
|
match_scaled = False
|
2016-05-25 02:53:03 +00:00
|
|
|
|
2016-05-29 20:52:07 +00:00
|
|
|
@staticmethod
|
|
|
|
def get_scan_options():
|
2016-05-25 02:53:03 +00:00
|
|
|
return [
|
2021-08-21 23:02:02 +00:00
|
|
|
ScanOption(ScanType.FUZZYBLOCK, tr("Contents")),
|
|
|
|
ScanOption(ScanType.EXIFTIMESTAMP, tr("EXIF Timestamp")),
|
2016-05-25 02:53:03 +00:00
|
|
|
]
|
|
|
|
|
2009-10-18 09:26:04 +00:00
|
|
|
def _getmatches(self, files, j):
|
2021-08-21 23:02:02 +00:00
|
|
|
if self.scan_type == ScanType.FUZZYBLOCK:
|
2016-08-23 01:35:46 +00:00
|
|
|
return matchblock.getmatches(
|
|
|
|
files,
|
|
|
|
cache_path=self.cache_path,
|
|
|
|
threshold=self.min_match_percentage,
|
|
|
|
match_scaled=self.match_scaled,
|
2020-01-01 02:16:27 +00:00
|
|
|
j=j,
|
2016-08-23 01:35:46 +00:00
|
|
|
)
|
2021-08-21 23:02:02 +00:00
|
|
|
elif self.scan_type == ScanType.EXIFTIMESTAMP:
|
2011-06-15 14:13:03 +00:00
|
|
|
return matchexif.getmatches(files, self.match_scaled, j)
|
2011-04-21 15:17:19 +00:00
|
|
|
else:
|
2021-08-21 23:02:02 +00:00
|
|
|
raise ValueError("Invalid scan type")
|