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