Detect-It-Easy/db/PE/NET_Spider.2.sg
2024-11-07 00:17:07 +03:00

14 lines
No EOL
327 B
JavaScript

// Detect It Easy: detection rule file format
init("protector", ".NET Spider");
function detect() {
if (PE.isNET()) {
if (PE.isSignatureInSectionPresent(0, "'Protected_By_Attribute'00'NETSpider.Attribute'")) {
sVersion = "0.5-1.3";
bDetected = true;
}
}
return result();
}