Detect-It-Easy/db/PE/protector_NET_Spider.2.sg
2026-05-25 21:03:46 +03:00

13 lines
No EOL
341 B
JavaScript
Executable file

// Detect It Easy: detection rule file
// Author: horsicq <horsicq@gmail.com>
meta("protector", ".NET Spider");
function detect() {
if (PE.isNet() && PE.isSignatureInSectionPresent(0, "'Protected_By_Attribute'00'NETSpider.Attribute'")) {
sVersion = "0.5-1.3";
bDetected = true;
}
return result();
}