mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
19 lines
No EOL
446 B
JavaScript
19 lines
No EOL
446 B
JavaScript
// Detect It Easy: detection rule file
|
|
|
|
// Author: DosX
|
|
// E-Mail: collab@kay-software.ru
|
|
// GitHub: https://github.com/DosX-dev
|
|
// Telegram: @DosX_dev
|
|
|
|
// https://github.com/mt-code/ByteGuard
|
|
init("protector", "ByteGuard");
|
|
|
|
function detect() {
|
|
if (PE.isNET() &&
|
|
PE.isNetUStringPresent("C# version only supports level 1 and 3") &&
|
|
!PE.isNetObjectPresent("VMProtect")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |