mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
18 lines
No EOL
515 B
JavaScript
Executable file
18 lines
No EOL
515 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
|
|
init("protector", "CodeWall");
|
|
|
|
function detect() {
|
|
if (PE.isNET()) {
|
|
if (PE.isNetObjectPresent("CodeWallTrialVersion")) {
|
|
sVersion = "4.X";
|
|
sOptions = "Evaluation";
|
|
bDetected = true;
|
|
} else if (PE.isSignatureInSectionPresent(0, "9161d281........11..175813..11..11..32..28........11..6f........13..7e........2d..73")) {
|
|
sVersion = "4.X";
|
|
bDetected = true;
|
|
}
|
|
}
|
|
|
|
return result();
|
|
} |