mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
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:
parent
4eb1f22b4e
commit
a4bf165f51
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue