mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
17 lines
No EOL
443 B
JavaScript
17 lines
No EOL
443 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
|
|
|
|
init("protector", "SecShell");
|
|
|
|
function detect() {
|
|
bDetected =
|
|
APK.isArchiveRecordPresent("assets/secData0.jar") ||
|
|
APK.isArchiveRecordPresent("lib/armeabi/libSecShell-x86.so") ||
|
|
APK.isArchiveRecordPresent("lib/armeabi/libSecShell.so");
|
|
|
|
return result();
|
|
} |