Detect-It-Easy/db/PE/library_OpenSSL.4.sg
DosX a4bf165f51 Expand OpenSSL library detection regex
Add libeay32 and ssleay32 to the OpenSSL detection regex in db/PE/library_OpenSSL.4.sg so the PE scanner also recognizes legacy Windows OpenSSL library names (libeay32/ssleay32) in addition to libssl/libcrypto.
2026-06-17 17:39:58 +03:00

16 lines
No EOL
330 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
meta("library", "OpenSSL");
function detect() {
if (PE.isLibraryPresentExp(/libssl|libcrypto|libeay32|ssleay32/i)) {
bDetected = true;
}
return result();
}