mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Standardize db/MSDOS filenames by adding type prefixes (compiler_, cryptor_, protector_, sfx_, other_PK_). Rename multiple detection rule files accordingly. Also normalize file modes for protector_DAEMON_Protect.2.sg and sfx_Disk_eXPress.1.sg (100755 -> 100644) and apply minor formatting/whitespace normalization; no detection logic changes.
14 lines
No EOL
366 B
JavaScript
14 lines
No EOL
366 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("protector", "CSCRYPT Pro");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("8d36....565f81ef....b8....81ef....81c0....81f7....2e2935474781c6....e9")) {
|
|
sVersion = "3.30/386";
|
|
sOptions = "1995-97 by Christian Schwarz";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |