Merge pull request #570 from mvt-project/fix/files-detection-bug

Fix error to due extra equal character in Files detection
This commit is contained in:
Donncha Ó Cearbhaill
2024-10-31 20:04:33 +01:00
committed by GitHub

View File

@@ -74,7 +74,7 @@ class Files(AndroidQFModule):
for result in self.results:
ioc = self.indicators.check_file_path(result["path"])
if ioc:
result["matched_indicator"] == ioc
result["matched_indicator"] = ioc
self.detected.append(result)
continue