Detect-It-Easy/db/PE/BoxedApp.2.sg
2025-03-23 12:29:12 +03:00

24 lines
No EOL
507 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://www.boxedapp.com/
init("packer", "BoxedApp");
function detect() {
const boxedAppSection = PE.section[".bxpck"];
if (boxedAppSection) {
const mainSection = PE.section[boxedAppSection.Number + 1];
if (mainSection && mainSection.Name === ".main") {
bDetected = true;
}
}
return result();
}