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
15 lines
No EOL
338 B
JavaScript
// Detect It Easy: detection rule file
|
|
|
|
init("operation system", "MS-DOS");
|
|
|
|
function detect() {
|
|
if (MSDOS.isVerbose()) {
|
|
sName = MSDOS.getOperationSystemName();
|
|
sVersion = MSDOS.getOperationSystemVersion();
|
|
sOptions = MSDOS.getOperationSystemOptions();
|
|
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |