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