-
Notifications
You must be signed in to change notification settings - Fork 82
DLLs
Tony Phipps edited this page May 7, 2018
·
5 revisions
Execution, Persistence
Monitor DLL load operations in lsass.exe
SELECT DLLName
WHERE Process CONTAINS lsass
Persistence, Privilege Escalation
Monitor DLL loads by processes, specifically looking for DLLs that are not recognized or not normally loaded into a process.
SELECT DLLName, Process
GROUP BY DLLName
Persistence, Privilege Escalation
Monitor DLL loads by processes that load user32.dll and look for DLLs that are not recognized or not normally loaded into a process.
SELECT Process
WHERE DLLName CONTAINS user32
Defense Evasion, Persistence, Privilege Escalation
Changes in the set of DLLs that are loaded by a process (compared with past behavior) that do not correlate with known software, patches, etc., are suspicious.
SELECT *