DLL Control Panel Items Registry Modification
Description
Identifies the modification of DLL Control Panel Items registry. Adversaries may load a malicious DLL when Control Panel is executed via setting the CPLs subkey to the DLL path.
Query · eql
registry where
registry.path :
("HKEY_USERS\\S-1-5-*\\Software\\Microsoft\\Windows\\CurrentVersion\\Control Panel\\CPLs\\*",
"HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Control Panel\\CPLs\\*") and
process.executable != null and registry.data.strings != null and not registry.data.type : "REG_DWORD" and
not (process.executable :
("?:\\Windows\\System32\\svchost.exe",
"?:\\Windows\\System32\\DriverStore\\FileRepository\\*.exe",
"?:\\Windows\\System32\\drvinst.exe",
"?:\\Windows\\System32\\msiexec.exe") and user.id : ("S-1-5-18", "S-1-5-19", "S-1-5-20")) and
not (process.code_signature.subject_name : "Wacom Co., Ltd." and process.code_signature.trusted == true) and
not registry.data.strings : ("C:\\Program Files\\*", "C:\\Program Files (x86)\\*")