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

14 lines
No EOL
320 B
JavaScript

// Detect It Easy: detection rule file
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();
}