mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Renamed multiple db/MSDOS detection rule files to include category prefixes (compiler_, library_, protector_, self-displayer_, sfx_) for clearer organization. Cleared executable bits on LSI_C and Khrome_Crypt files (100755 → 100644). Added sLang = "C" to the LSI C detection rule to explicitly mark the language. No other functional changes.
13 lines
No EOL
301 B
JavaScript
13 lines
No EOL
301 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("protector", "MultiLoop Protection");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("1e06b8....8ec0b0..b9....be....2e300404..46e2")) {
|
|
sOptions = "1992 by J&A";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |