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.
This commit is contained in:
DosX 2026-06-17 17:39:58 +03:00
commit a4bf165f51

View file

@ -8,7 +8,7 @@
meta("library", "OpenSSL");
function detect() {
if (PE.isLibraryPresentExp(/libssl|libcrypto/i)) {
if (PE.isLibraryPresentExp(/libssl|libcrypto|libeay32|ssleay32/i)) {
bDetected = true;
}