mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Rename many db/MSDOS detection rules to include category prefixes (e.g. compiler_, extender_, immunizer_, linker_, protector_, other_) for clearer organization. Add sLang assignment for Microsoft_C rule to set "C" or "C/C++" based on sName. Normalize formatting/whitespace in several scripts and remove executable bit from a few rule files. No detection logic changes besides the explicit sLang assignment.
13 lines
No EOL
295 B
JavaScript
13 lines
No EOL
295 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("other", "Header Changer");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("8cdb81c3....53bb....53501e068cdb81c3....53bb")) {
|
|
sOptions = "by Shay Lev Ary";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |