mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
16 lines
No EOL
435 B
JavaScript
Executable file
16 lines
No EOL
435 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: horsicq <horsicq@gmail.com>
|
|
|
|
meta("protector", "CrypteXeC");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("FD25....E8....3EBA....EC0C..26EE..B9....5151..87C9")) {
|
|
sVersion = "1.01";
|
|
bDetected = true;
|
|
} else if (MSDOS.compareEP("06b4..cd2107e8....acac3ee8....d7e9")) {
|
|
sVersion = "1.01";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |