A single RDP connection from a Ukraine-geolocated IP (77.83.36[.]6, host WIN-L1MS2GT1R2G) logged in with valid credentials for the default domain Administrator account. No brute force. The logon was a resumed/unlocked session (Windows Event 4778, logon type 7), and prior remote logins to the same host appeared in the preceding weeks - suggesting an access broker or recurrent adversary.
DeviceLogonEvents
| where LogonType == "RemoteInteractive"
| where isnotempty(RemoteIP) and ipv4_is_private(RemoteIP) == false
| where AccountName == "Administrator"
| project Timestamp, DeviceName, AccountName, RemoteIP, RemoteDeviceNameFP / FN: FP: remote admins, jump hosts, home office without VPN. CRITICAL FN RISK: this intrusion used a RESUMED/unlocked session (Event 4778 / type 7), which may NOT surface as 'RemoteInteractive' - the naive query above could MISS this exact case. Textbook gap between static-reviewed (looks right) and lab-tested (actually fires). Validate against 4624 type 7 + 4778 before trusting it.