mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Refined the Intel C/C++ detection rule to better extract version information and updated author metadata. Enhanced CodeBase library detection by setting sOptions to 'static' when the export function is present.
15 lines
No EOL
368 B
JavaScript
15 lines
No EOL
368 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: BJNFNE <bjnfne@web.de>
|
|
|
|
// https://github.com/MPSystemsServices/CodeBase-for-DBF
|
|
meta("library", "CodeBase");
|
|
|
|
function detect() {
|
|
if (PE.isExportFunctionPresent("??4l4linkSt@@QAEAAU0@ABU0@@Z")) {
|
|
sVersion = "4.0";
|
|
sOptions = "static"; // EAT
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |