mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
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.
16 lines
No EOL
330 B
JavaScript
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();
|
|
} |