mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
14 lines
No EOL
366 B
JavaScript
14 lines
No EOL
366 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("loader", "DOS32 loader");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("8cd88ccb2bd88bc4b1..d3e803d843b4..cd218e06....8cd80e1fa3....a3....a3....fc33c033ffeb")) {
|
|
sVersion = "3.3";
|
|
sOptions = "1995 by Adam Seychell";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |