Detect-It-Easy/db/PE/Windows_Authenticode.7.sg
2024-11-12 20:11:38 +03:00

13 lines
No EOL
264 B
JavaScript

// Detect It Easy: detection rule file
init("sign tool", "Windows Authenticode");
function detect() {
if (PE.compareOverlay("........00020200")) {
sVersion = "2.0";
sOptions = "PKCS #7";
bDetected = true;
}
return result();
}