mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
16 lines
No EOL
358 B
JavaScript
16 lines
No EOL
358 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("patcher", "simple patch");
|
|
|
|
function detect() {
|
|
if (PE.compareEP("33c040c2")) {
|
|
bDetected = true;
|
|
} else if (PE.compareEP("33c0c3")) {
|
|
bDetected = true;
|
|
} else if (PE.compareEP("b801000000c2")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |