mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
22 lines
No EOL
752 B
JavaScript
Executable file
22 lines
No EOL
752 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("packer", "SCRNCH");
|
|
|
|
function detect() {
|
|
if (Binary.compare("eb$$bb....b44acd2181eb....73..ba....b9....e9")) {
|
|
sVersion = "1.02";
|
|
sOptions = "1988 by Graeme W. McRae";
|
|
bDetected = true;
|
|
} else if (Binary.compare("bb....b44acd2181eb....73..ba....b9....e9$$$$0e1fb440bb....cd21b8....cd21")) {
|
|
sVersion = "1.00";
|
|
sOptions = "1988 by Graeme W. McRae";
|
|
bDetected = true;
|
|
} else if (Binary.compare("bb....b44acd2181eb....73..ba....b9....e9$$$$b440bb....cd21b8....cd21")) {
|
|
sVersion = "1.01";
|
|
sOptions = "1988 by Graeme W. McRae";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |