2016-05-24 22:53:03 -04: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 16:33:16 -05:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2009-10-18 09:26:04 +00:00
|
|
|
|
2016-05-24 22:53:03 -04:00
|
|
|
from hscommon.trans import tr
|
|
|
|
|
|
|
|
from core.scanner import Scanner, ScanType, ScanOption
|
2009-10-18 09:26:04 +00:00
|
|
|
|
2022-05-09 01:40:08 -05:00
|
|
|
from core.pe import matchblock, matchexif
|
2009-10-18 09:26:04 +00:00
|
|
|
|
2019-12-31 20:16:27 -06:00
|
|
|
|
2009-10-18 09:26:04 +00:00
|
|
|
class ScannerPE(Scanner):
|
2010-01-14 16:14:26 +01:00
|
|
|
cache_path = None
|
2009-10-18 09:26:04 +00:00
|
|
|
match_scaled = False
|
2024-02-19 07:19:33 -08:00
|
|
|
match_rotated = False
|
2016-05-24 22:53:03 -04:00
|
|
|
|
2016-05-29 16:52:07 -04:00
|
|
|
@staticmethod
|
|
|
|
def get_scan_options():
|
2016-05-24 22:53:03 -04:00
|
|
|
return [
|
2021-08-21 18:02:02 -05:00
|
|
|
ScanOption(ScanType.FUZZYBLOCK, tr("Contents")),
|
|
|
|
ScanOption(ScanType.EXIFTIMESTAMP, tr("EXIF Timestamp")),
|
2016-05-24 22:53:03 -04:00
|
|
|
]
|
|
|
|
|
2009-10-18 09:26:04 +00:00
|
|
|
def _getmatches(self, files, j):
|
2021-08-21 18:02:02 -05:00
|
|
|
if self.scan_type == ScanType.FUZZYBLOCK:
|
2016-08-22 21:35:46 -04:00
|
|
|
return matchblock.getmatches(
|
|
|
|
files,
|
|
|
|
cache_path=self.cache_path,
|
|
|
|
threshold=self.min_match_percentage,
|
|
|
|
match_scaled=self.match_scaled,
|
2024-02-19 07:19:33 -08:00
|
|
|
match_rotated=self.match_rotated,
|
2019-12-31 20:16:27 -06:00
|
|
|
j=j,
|
2016-08-22 21:35:46 -04:00
|
|
|
)
|
2021-08-21 18:02:02 -05:00
|
|
|
elif self.scan_type == ScanType.EXIFTIMESTAMP:
|
2011-06-15 10:13:03 -04:00
|
|
|
return matchexif.getmatches(files, self.match_scaled, j)
|
2011-04-21 17:17:19 +02:00
|
|
|
else:
|
2021-08-21 18:02:02 -05:00
|
|
|
raise ValueError("Invalid scan type")
|