Detect-It-Easy/db/PE/ByteGuard.2.sg
2025-03-23 12:41:20 +03:00

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();
}