Detect-It-Easy/db/Binary/audio_8svx.1.sg
DosX 9e621e1954 Rename and reorganize rule files
Renamed and moved numerous .sg files in the db directory to follow a more consistent naming convention and directory structure, grouping by type (e.g., compiler, cruncher, packer, protector, etc.). This improves maintainability and clarity of the signature database organization.
2026-01-25 11:20:39 +03:00

14 lines
No EOL
394 B
JavaScript

// Detect It Easy: detection rule file
// Author: KDSS-Research
meta("audio", "8SVX");
function detect() {
if (Binary.compare("'FORM'")) {
if (Binary.findString(0, Binary.getSize(), "BODY") != -1 && Binary.findString(0, Binary.getSize(), "FORM") != -1 && Binary.findString(0, Binary.getSize(), "ANNO") != -1) {
bDetected = true;
}
}
return result();
}