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