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