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