Fix Roxxe false positive (#294)

This commit is contained in:
TheRogueArchivist
2024-04-02 22:57:23 -06:00
committed by GitHub
parent 553703c30e
commit e469dc38bf

View File

@@ -47,8 +47,9 @@ namespace BinaryObjectScanner.Protection
if (strs.Any(s => s.Contains("CommonPRRT")))
return "Roxxe (Possibly remnants)";
if (strs.Any(s => s.Contains("roxe")))
return "Roxxe (Possibly remnants)";
// Currently overmatches, will likely be a viable check when better Delphi executable parsing is available.
// if (strs.Any(s => s.Contains("roxe")))
// return "Roxxe (Possibly remnants)";
}
return null;