Module dll

Module dll 

Source
Expand description

These fields contain information about code libraries dynamically loaded into processes.

Many operating systems refer to “shared code libraries” with different names, but this field set refers to all of the following:

  • Dynamic-link library (.dll) commonly used on Windows
  • Shared Object (.so) commonly used on Unix-like operating systems
  • Dynamic library (.dylib) commonly used on macOS

Constants§

DLL_CODE_SIGNATURE_DIGEST_ALGORITHM
The hashing algorithm used to sign the process. This value can distinguish signatures when a file is signed multiple times by the same signer but with a different digest algorithm.
DLL_CODE_SIGNATURE_EXISTS
Boolean to capture if a signature is present.
DLL_CODE_SIGNATURE_SIGNING_ID
The identifier used to sign the process. This is used to identify the application manufactured by a software vendor. The field is relevant to Apple *OS only.
DLL_CODE_SIGNATURE_STATUS
Additional information about the certificate status. This is useful for logging cryptographic errors with the certificate validity or trust status. Leave unpopulated if the validity or trust of the certificate was unchecked.
DLL_CODE_SIGNATURE_SUBJECT_NAME
Subject name of the code signer
DLL_CODE_SIGNATURE_TEAM_ID
The team identifier used to sign the process. This is used to identify the team or vendor of a software product. The field is relevant to Apple *OS only.
DLL_CODE_SIGNATURE_TIMESTAMP
Date and time when the code signature was generated and signed.
DLL_CODE_SIGNATURE_TRUSTED
Stores the trust status of the certificate chain. Validating the trust of the certificate chain may be complicated, and this field should only be populated by tools that actively check the status.
DLL_CODE_SIGNATURE_VALID
Boolean to capture if the digital signature is verified against the binary content. Leave unpopulated if a certificate was unchecked.
DLL_HASH_MD5
MD5 hash.
DLL_HASH_SHA1
SHA1 hash.
DLL_HASH_SHA256
SHA256 hash.
DLL_HASH_SHA384
SHA384 hash.
DLL_HASH_SHA512
SHA512 hash.
DLL_HASH_SSDEEP
SSDEEP hash.
DLL_HASH_TLSH
TLSH hash.
DLL_NAME
Name of the library. This generally maps to the name of the file on disk.
DLL_PATH
Full file path of the library.
DLL_PE_ARCHITECTURE
CPU architecture target for the file.
DLL_PE_COMPANY
Internal company name of the file, provided at compile-time.
DLL_PE_DESCRIPTION
Internal description of the file, provided at compile-time.
DLL_PE_FILE_VERSION
Internal version of the file, provided at compile-time.
DLL_PE_GO_IMPORTS
List of imported Go language element names and types.
DLL_PE_GO_IMPORTS_NAMES_ENTROPY
Shannon entropy calculation from the list of Go imports.
DLL_PE_GO_IMPORTS_NAMES_VAR_ENTROPY
Variance for Shannon entropy calculation from the list of Go imports.
DLL_PE_GO_IMPORT_HASH
A hash of the Go language imports in a PE file excluding standard library imports. An import hash can be used to fingerprint binaries even after recompilation or other code-level transformations have occurred, which would change more traditional hash values. The algorithm used to calculate the Go symbol hash and a reference implementation are available here.
DLL_PE_GO_STRIPPED
Set to true if the file is a Go executable that has had its symbols stripped or obfuscated and false if an unobfuscated Go executable.
DLL_PE_IMPHASH
A hash of the imports in a PE file. An imphash – or import hash – can be used to fingerprint binaries even after recompilation or other code-level transformations have occurred, which would change more traditional hash values. Learn more at https://www.fireeye.com/blog/threat-research/2014/01/tracking-malware-import-hashing.html.
DLL_PE_IMPORTS
List of imported element names and types.
DLL_PE_IMPORTS_NAMES_ENTROPY
Shannon entropy calculation from the list of imported element names and types.
DLL_PE_IMPORTS_NAMES_VAR_ENTROPY
Variance for Shannon entropy calculation from the list of imported element names and types.
DLL_PE_IMPORT_HASH
A hash of the imports in a PE file. An import hash can be used to fingerprint binaries even after recompilation or other code-level transformations have occurred, which would change more traditional hash values. This is a synonym for imphash.
DLL_PE_ORIGINAL_FILE_NAME
Internal name of the file, provided at compile-time.
DLL_PE_PEHASH
A hash of the PE header and data from one or more PE sections. An pehash can be used to cluster files by transforming structural information about a file into a hash value. Learn more at https://www.usenix.org/legacy/events/leet09/tech/full_papers/wicherski/wicherski_html/index.html.
DLL_PE_PRODUCT
Internal product name of the file, provided at compile-time.
DLL_PE_SECTIONS
An array containing an object for each section of the PE file. The keys that should be present in these objects are defined by sub-fields underneath pe.sections.*.
DLL_PE_SECTIONS_ENTROPY
Shannon entropy calculation from the section.
DLL_PE_SECTIONS_NAME
PE Section List name.
DLL_PE_SECTIONS_PHYSICAL_SIZE
PE Section List physical size.
DLL_PE_SECTIONS_VAR_ENTROPY
Variance for Shannon entropy calculation from the section.
DLL_PE_SECTIONS_VIRTUAL_SIZE
PE Section List virtual size. This is always the same as physical_size.