mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
21 lines
No EOL
816 B
JavaScript
Executable file
21 lines
No EOL
816 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("compiler", "ASIC-Basic");
|
|
|
|
function detect() {
|
|
if (Binary.compare("e9$$$$33dbb4..cd108916....cc90b0..ba....33c9b7..b4..cd1031d28916....b4..30ffcd1090")) {
|
|
sVersion = "5.0";
|
|
sOptions = "1994 by David Visti of 80/20 Software";
|
|
bDetected = true;
|
|
} else if (Binary.compare("e9$$$$33dbb4..cd108916....cc90b0..a2....ba....a0....3c..75..b4..b0..cd2172..a3")) {
|
|
sOptions = "by David Visti of 80/20 Software";
|
|
bDetected = true;
|
|
} else if (Binary.compare("e9$$$$33dbb4..cd108916....cc90fcb9....be....bf....f3a490fcb9....be....bf....f3a4")) {
|
|
sVersion = "3.0";
|
|
sOptions = "by David Visti of 80/20 Software";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |