Suspicious Remote Registry Modification
Description
Identifies registry modification via the Remote Registry service to point to an executable or script file, or to make a COM object remotely activatable. This may indicate an attempt to move laterally via remote configuration changes, including DCOM-based .NET deserialization lateral movement (e.g. DCOMIllusionist) which remotely associates a CLSID with an AppID, stands up a DllSurrogate, or points an InprocServer32 at a managed assembly.
Query · eql
registry where event.action == "modification" and user.id : ("S-1-5-21*", "S-1-12-*") and
process.name : "svchost.exe" and process.thread.Ext.call_stack_summary : "*regsvc.dll|rpcrt4.dll*" and
(
registry.data.strings : ("*:\\*\\*", "*.exe*", "*.dll*", "*rundll32*", "*powershell*", "*.exe*http*", "* /c *", "*COMSPEC*", "\\\\*.*",
"*Version=*Culture=*PublicKeyToken=*") or
registry.path :
("HKLM\\SYSTEM\\ControlSet*\\Services\\*\\ServiceDLL",
"HKLM\\SYSTEM\\ControlSet*\\Services\\*\\ImagePath",
"HKEY_USERS\\*Classes\\*\\InprocServer32\\",
"HKEY_USERS\\*Classes\\*\\LocalServer32\\",
"HKLM\\SOFTWARE\\Classes\\CLSID\\*\\AppID",
"HKLM\\SOFTWARE\\WOW6432Node\\Classes\\CLSID\\*\\AppID",
"HKLM\\SOFTWARE\\Classes\\CLSID\\*\\InprocServer32*",
"HKLM\\SOFTWARE\\WOW6432Node\\Classes\\CLSID\\*\\InprocServer32*",
"HKLM\\SOFTWARE\\Classes\\AppID\\*\\DllSurrogate",
"H*\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\\*",
"HKLM\\SOFTWARE\\Classes\\AppID\\*",
"HKEY_USERS\\*Classes\\AppID\\*",
"HKLM\\SYSTEM\\ControlSet*\\Control\\Lsa\\*") or
(registry.value : "Start" and registry.data.strings : "4")
) and
not registry.data.strings : "C:\\Windows\\System32\\svchost.exe -k localService" and
not registry.path : ("HKLM\\SOFTWARE\\Microsoft\\SMS\\*",
"HKLM\\SYSTEM\\*ControlSet*\\Services\\EventLog\\*",
"HKLM\\SOFTWARE\\EMCO\\Remote Agents\\Remote Installer\\*",
"HKLM\\SOFTWARE\\Microsoft\\Service Fabric\\*",
"HKLM\\SOFTWARE\\WOW6432Node\\Varonis\\*",
"HKLM\\SOFTWARE\\Varonis\\*",
"HKLM\\SOFTWARE\\JavaSoft\\*",
"HKLM\\SOFTWARE\\WOW6432Node\\ODBC\\ODBC.INI\\*",
"HKLM\\SYSTEM\\ControlSet001\\Control\\Session Manager\\PendingFileRenameOperations",
"HKLM\\SYSTEM\\ControlSet001\\Services\\mrxsmb10\\Start",
"HKLM\\SOFTWARE\\WOW6432Node\\JavaSoft\\*",
"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon\\UserLockInternetURL",
"HKLM\\SYSTEM\\ControlSet001\\Services\\MTAppManager\\ImagePath",
"HKLM\\SYSTEM\\ControlSet001\\Services\\MAST\\ImagePath",
"HKLM\\SYSTEM\\ControlSet001\\Services\\VMagicPPII\\ImagePath",
"HKLM\\SYSTEM\\ControlSet001\\Services\\MEDITECH*",
"HKLM\\SYSTEM\\ControlSet001\\Services\\ANPServer*",
"HKLM\\SYSTEM\\ControlSet001\\Services\\MSO\\ImagePath",
"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Print\\Printers\\*\\sPMigratedPrinterName")