mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
14 lines
No EOL
332 B
JavaScript
Executable file
14 lines
No EOL
332 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: Jason Hood <jadoxa@yahoo.com.au>
|
|
|
|
init("extender", "WDos/X");
|
|
|
|
function detect() {
|
|
if (MSDOS.compare("'WDOSX'", 52)) {
|
|
sVersion = MSDOS.getString(58, 4);
|
|
sOptions = "1996-1999 by Michael Tippach";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |