mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Renamed and reorganized numerous database files across APK, DEX, ELF, PE, and other directories to use consistent prefixes such as 'library_', 'protector_', 'packer_', 'cryptor_', 'tool_', and similar. This improves clarity, maintainability, and categorization of the database entries.
23 lines
No EOL
661 B
JavaScript
23 lines
No EOL
661 B
JavaScript
// Detect It Easy: detection rule file
|
|
|
|
// Author: DosX
|
|
// E-Mail: collab@kay-software.ru
|
|
// GitHub: https://github.com/DosX-dev
|
|
// Telegram: @DosX_dev
|
|
|
|
// https://libsndfile.github.io/libsamplerate/
|
|
meta("library", "Secret Rabbit Code");
|
|
|
|
function detect() {
|
|
if (PE.isLibraryPresentExp(/^libsamplerate/i) ||
|
|
PE.isFunctionPresent("src_set_ratio")) {
|
|
bDetected = true;
|
|
} else if (
|
|
PE.isExportFunctionPresent("src_set_ratio") ||
|
|
PE.isExportFunctionPresent("src_simple") ||
|
|
PE.isExportFunctionPresent("src_is_valid_ratio")) {
|
|
sOptions = "static"; // EAT
|
|
bDetected = true;
|
|
}
|
|
return result();
|
|
} |