mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
22 lines
No EOL
957 B
JavaScript
Executable file
22 lines
No EOL
957 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
// CodeRunneR is an effective tool for creating new TSRs and porting existing applications to a TSR environment.
|
|
// http://www.drdobbs.com/msis-coderunner-makes-your-tsrs-run/184402267?pgno=5
|
|
|
|
init("other", "CodeRunneR");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("e9$$$$e8$$$$fc5e8cdaa1....bd....8edd8ec5a3....b9....bf....2bcf33c02ea3....41d1e9f3ab8916")) {
|
|
sOptions = "1989 by Micro Systems Software, Inc.";
|
|
bDetected = true;
|
|
} else if (MSDOS.compareEP("e9$$$$e8$$$$fc5e8cda8b1e....bd....8edd8ec5b9....bf....2bcf33c02ea3....41d1e9f3ab891e")) {
|
|
sOptions = "1989 by Micro Systems Software, Inc.";
|
|
bDetected = true;
|
|
} else if (MSDOS.compareEP("e9$$$$e8$$$$fc5e8cdaa1....bd....8edd8ec5a3....b9....bf....2bcf33c02ea3....d1e9f3ab8916")) {
|
|
sOptions = "1992 by OP";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |