mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
16 lines
No EOL
438 B
JavaScript
Executable file
16 lines
No EOL
438 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: horsicq <horsicq@gmail.com>
|
|
|
|
meta("protector", "Copy Protector");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("2EA2....5351521E06B4..1E0E1FBA....CD211F")) {
|
|
sVersion = "2.0";
|
|
bDetected = true;
|
|
} else if (MSDOS.compareEP("E9....505351521E0657E8....5F83EF..B4..1E0E1F")) {
|
|
sVersion = "2.0";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |