mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
16 lines
No EOL
487 B
JavaScript
Executable file
16 lines
No EOL
487 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("protector", "COM-Protect");
|
|
|
|
function detect() {
|
|
if (Binary.compare("e9$$$$8b1e....83eb..b8....5053b430cd215b9ceb")) {
|
|
sOptions = "1995 by Mr.Wicked";
|
|
bDetected = true;
|
|
} else if (Binary.compare("e9$$$$565699521fe8....5d8d86....0e508f06....8f06....83c6..565f0e1fb9....b8....a3")) {
|
|
sOptions = "1994 by SiAC";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |