mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Renamed and reorganized numerous database files across APK, DEX, ELF, PE, and other directories to use consistent prefixes such as 'library_', 'protector_', 'packer_', 'cryptor_', 'tool_', and similar. This improves clarity, maintainability, and categorization of the database entries.
25 lines
No EOL
698 B
JavaScript
25 lines
No EOL
698 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/ZermangoLove/OneVM-Source-Code
|
|
meta("protector", "OneVM");
|
|
|
|
function detect() {
|
|
if (PE.isNet() &&
|
|
PE.isNetObjectPresent("Koi") &&
|
|
PE.isNetObjectPresent("OneVM.Runtime") &&
|
|
PE.isSignatureInSectionPresent(0, "72 .. .. .. .. 73 .. .. .. .. 7A") && // throw
|
|
PE.isSignatureInSectionPresent(0, "%% 00 %% %% %% %% %% %% %% %% 00 %%")) {
|
|
bDetected = true;
|
|
|
|
if (PE.isNetUStringPresent("OneVM V2 BETA")) {
|
|
sVersion = "2.0, beta";
|
|
}
|
|
}
|
|
|
|
return result();
|
|
} |