diff --git a/rules/windows/credential_access_mod_wdigest_security_provider.toml b/rules/windows/credential_access_mod_wdigest_security_provider.toml index a415fe95c..58faf8624 100644 --- a/rules/windows/credential_access_mod_wdigest_security_provider.toml +++ b/rules/windows/credential_access_mod_wdigest_security_provider.toml @@ -1,7 +1,7 @@ [metadata] creation_date = "2021/01/19" maturity = "production" -updated_date = "2021/03/03" +updated_date = "2022/02/03" [rule] author = ["Elastic"] @@ -28,9 +28,10 @@ timestamp_override = "event.ingested" type = "eql" query = ''' -registry where event.type in ("creation", "change") and - registry.path:"HKLM\\SYSTEM\\*ControlSet*\\Control\\SecurityProviders\\WDigest\\UseLogonCredential" and - registry.data.strings:"1" +registry where event.type : ("creation", "change") and + registry.path : + "HKLM\\SYSTEM\\*ControlSet*\\Control\\SecurityProviders\\WDigest\\UseLogonCredential" + and registry.data.strings : ("1", "0x00000001") '''