Name:Detect Computer Changed with Anonymous Account id:1400624a-d42d-484d-8843-e6753e6e3645 version:10 date:2026-03-18 author:Rod Soto, Jose Hernandez, Splunk status:production type:Hunting Description:The following analytic detects changes to computer accounts using an anonymous logon.
It leverages Windows Security Event Codes 4742 (Computer Change) with a SubjectUserName of a value "ANONYMOUS LOGON".
This activity can be significant because anonymous logons should not typically be modifying computer accounts, indicating potential unauthorized access or misconfiguration.
If confirmed malicious, this could allow an attacker to alter computer accounts, potentially leading to privilege escalation or persistent access within the network.
Data_source:
-Windows Event Log Security 4742
search:`wineventlog_security` EventCode=4742 SubjectUserName="ANONYMOUS LOGON" PasswordLastSet="*" | stats count min(_time) as firstTime max(_time) as lastTime BY action app dest ProcessID PasswordLastSet signature signature_id src_user status SubjectDomainName user user_group vendor_product | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)` | `detect_computer_changed_with_anonymous_account_filter`