mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
15 lines
No EOL
342 B
JavaScript
Executable file
15 lines
No EOL
342 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
|
|
init("operation system", "Android");
|
|
|
|
function detect() {
|
|
if (APK.isVerbose()) {
|
|
sName = APK.getOperationSystemName();
|
|
sVersion = APK.getOperationSystemVersion();
|
|
sOptions = APK.getOperationSystemOptions();
|
|
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |