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