mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
13 lines
No EOL
264 B
JavaScript
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();
|
|
} |