mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
17 lines
No EOL
481 B
JavaScript
Executable file
17 lines
No EOL
481 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: horsicq <horsicq@gmail.com>
|
|
|
|
meta("protector", "Obfuscator.NET 2009");
|
|
|
|
function detect() {
|
|
if (PE.isNet()) {
|
|
if (PE.isNetUStringPresent("Macrobject.Obfuscator")) {
|
|
bDetected = true;
|
|
} else if (PE.isNetUStringPresent("Obfuscated by Macrobject Obfuscator.NET UNREGISTRED")) {
|
|
sOptions = "Unregistered";
|
|
bDetected = true;
|
|
}
|
|
}
|
|
|
|
return result();
|
|
} |