This commit is contained in:
huoji
2025-04-25 16:08:22 +08:00
parent db31cd90b5
commit e160fd0d57
8 changed files with 937 additions and 349 deletions

View File

@@ -375,8 +375,13 @@ int main(int argc, char* argv[]) {
}
std::string filePath = argv[1];
std::string filePath = "";
DetectEngine scanner;
DetectEngineType result = scanner.DetectMalware(filePath);
printf("result: %d \n", result);
//DetectMalwareInDirectory(filePath);
*/
std::string filePath = "Z:\\123";
DetectMalwareInDirectory(filePath);
return 0;
}