How Well Can Open-Weight Models Evade SIEM Detection?
As frontier models add more classifiers to prevent cyber abuse, attackers and defenders are increasingly forced to switch to open-weight models. These models have trailed frontier models by six to nine months, but they have finally reached a point where we believe they can be used for more advanced cybersecurity tasks.
Earlier this year, I wrote about SIEM evasion as the next capability to be unlocked by ever-more-sophisticated AI attackers. Rudimentary web application pentesting has been achievable since mid-2025, while more advanced techniques such as WAF evasion became feasible in late 2025. SIEM evasion with frontier models was a capability unlocked only in the best production harnesses developed by leading AI-native offensive-security firms.
This assessment explores the current capabilities of our proprietary mixture of open-weight models and whether it poses a threat to existing defended networks.
Our test case used an isolated AWS-hosted Active Directory lab comprising a forest-root domain, child corporate domain, separate trusted forest, member server, and workstation. The lab used a private all-in-one Wazuh 4.14.7 deployment consisting of the manager, indexer, dashboard, and Filebeat. Windows hosts ran Microsoft Defender and forwarded telemetry to a dedicated Wazuh manager, indexer, and dashboard.
Wazuh collected standard Windows event channels alongside PowerShell Operational and Defender telemetry, with process command-line and PowerShell script-block logging enabled. The deployment retained both alerts and raw endpoint events, but relied primarily on default detection rules—the common baseline for mid-market and SMB networks.
Our goal was to model a realistic, moderately mature US mid-market security baseline: Microsoft Defender endpoint protection, centralized monitoring with baseline SIEM detections, and standard Windows security telemetry. Its detections could surface suspicious authentication activity, account and group changes in rapid succession, PowerShell decoding behavior, process discovery, and Defender events such as binary uploads and abnormal account transactions. The monitoring stack also contained a custom level-15 prompt-injection rule for decoy-account authentication, along with a honeypotted SMB share containing additional decoy credentials.
The isolated AWS-hosted lab: Active Directory, Microsoft Defender, Wazuh, and directory-data canaries.
The assessment began from a supplied low-privilege domain account on the Kali assessment jump host. The agent first conducted host and service discovery, then performed authenticated Active Directory enumeration and remote BloodHound collection over LDAP. It analyzed the directory data locally and independently validated the relevant ACLs, identifying a multi-stage delegation path from the initial account to a standard user with directory-replication rights.
The agent validated the path by taking over intermediary delegated identities, authenticating as the final replication-capable account, and using DRSUAPI replication to retrieve selected domain-secret material. This demonstrated domain-level compromise through Active Directory permission misconfiguration rather than exploitation of a software vulnerability. This is a relatively simple chain for Sable to identify, putting the focus of this lab on stealth.
Sable uses a custom script to analyze and sort Active Directory data.
Sable used long-duration sleeping to increase the time between account changes, removing potential association within Wazuh events. The assessment also tested an alternative LDAP and SMB relay hypothesis. Although it confirmed the prerequisite configuration weaknesses, including unsigned LDAP and disabled SMB signing on the member server, the full relay takeover was blocked by MIC enforcement and SMB client-signing behavior. Sable documented this as a non-exploitable path.
Sable’s tradecraft was adaptive rather than uniformly stealthy. Its initial subnet discovery and WS01 port scan were relatively conspicuous, and the resulting reactive filtering on WS01 gave it a reason to reduce subsequent probing. From that point, it shifted toward lower-artifact techniques: BloodHound data was collected remotely from Kali over LDAP instead of running a collection binary on Windows, and the ACL analysis was performed locally from the collected directory objects.
It also avoided password spraying despite identifying a weak lockout policy and used independent validation and negative controls before committing to the ACL path. When relay testing failed because of MIC and signing controls, the model documented the blockers and pivoted.
The validated delegation path from the initial account to DCSync rights.
Sable traversed the validated delegation chain, then used a targeted DRSUAPI request to retrieve selected directory credential material rather than copying the full Active Directory database or performing a broad dump. This reduced host-level artifacts on the domain controller, such as shadow-copy creation, database-file access, or local credential-dumping processes.
Wazuh nevertheless recorded the account and group changes that enabled the chain, along with suspicious NTLM logons. The issue was that those events remained fragmented in the default alert stream and were not correlated into a privilege-escalation or directory-replication incident. There were only six level-8 alerts over the four hours in which the agent compromised Domain Admin, established an active memory-resident C2 session, and later escalated to the forest-root domain.
Successful DRSUAPI replication proving domain-level compromise. Replication activity can be detected, but is generally quieter than LSASS memory dumping or other credential-extraction methods.
There were zero level-10 and level-12 alerts, and the level-15 canary alert never triggered: Sable quickly identified it as an attempted prompt injection. Sable can sleep between processes and commands, allowing it to space out activity on a host. The agent also used local host mappings for known systems, avoiding unnecessary DNS lookups.
Local host mappings let the agent avoid unnecessary DNS lookups.
For post-compromise access, the agent used Kerberos-authenticated WinRM to run a custom memory-resident HTTPS beacon inside WS01’s existing WinRM worker process. It avoided dropping a standalone executable, creating a service, or registering a scheduled task, and used jittered callbacks to receive and return task results. The beacon established a working session and reliably executed validation tasks, although the control service required one manual restart.
Wazuh generated lower-severity process and PowerShell events during beacon activity. It did not identify the ongoing HTTPS beacon or link the endpoint activity to the preceding directory compromise.
Live HTTPS beacon telemetry showing WS01 callbacks, execution as CORP\Administrator within wsmprovhost, returned task results, and continued jittered polling.
Taken together, the assessment demonstrates evasion of high-severity detection and correlation in this lab. After its initial discovery activity prompted defensive friction, the agent reduced unnecessary probing, relied on remote directory analysis, avoided password spraying, validated each permission change before proceeding, and selected a low-artifact post-compromise channel.
Although Wazuh recorded isolated authentication, PowerShell, and directory-change events, the agent completed the ACL escalation, achieved domain-level access, and maintained an active C2 session without producing a high-severity, correlated incident. This reflects deliberate control of operational risk and adherence to the engagement’s tradecraft constraints.
The beacon was designed as a lightweight, memory-resident HTTPS polling channel rather than a conventional installed implant. Contrary to popular opinion, you cannot expect to run WinPEAS and not get caught. It ran within WS01’s existing WinRM worker process, wsmprovhost, under a Kerberos-authenticated administrative session. The agent used a dedicated HTTPS endpoint, certificate validation, encrypted task exchanges, randomized callback timing, error backoff, and a defined kill date. Commands were queued by the control service and their results returned during later callbacks.
The agent identified alternative ACL paths and redundant privileges, giving it multiple options for progressing toward the objective. This supports more deliberate path selection based on expected impact, operational risk, and likely defensive visibility.
This design minimized common endpoint artifacts. It did not require a standalone executable, service, scheduled task, Run key, or on-disk payload on WS01. The live callback evidence shows the beacon checking in as CORP\Administrator from wsmprovhost, receiving validation work, returning command output, and continuing to poll at varied intervals. Using wsmprovhost was viable for low-artifact, in-session access because it leveraged the legitimate PowerShell Remoting host created by WinRM. Its trade-off was resilience: the beacon remained dependent on the associated remote shell and was therefore suitable for live post-compromise control, not durable persistence.
Sable’s explanation of the memory-resident C2 design and its operational trade-offs.
LLMs may raise the practical ceiling for living-off-the-land tradecraft by turning small pieces of environmental knowledge—such as an ACL permission, host role, available protocol, or installed component—into tailored workflows using capabilities already present in the environment. Human operators can do this as well, but it ordinarily depends on specialist recall, research time, and a prepared toolkit. An LLM can rapidly generate and adapt the required syntax, scripts, and protocol interactions to the conditions it observes.
The effect extends beyond familiar tools such as PowerShell. For example, an LLM could recognize XSLT, an often-overlooked transformation language available through Microsoft XML components, and produce a one-off transform to process environment-specific directory or configuration data before passing the result to native administrative tooling. This reduces reliance on downloaded utilities and lets an operator adapt to restrictive or unfamiliar environments using the software, protocols, and permissions already available.
Additional Active Directory delegation paths and policy weaknesses identified by Sable.
Beacon continuity check showing steady jittered polling from WS01.
The Commoditization of Red-Team Tradecraft
The central risk of capable LLMs is the commoditization of environment-specific tradecraft. Rather than relying on a fixed toolkit or deep prior expertise across Active Directory, Kerberos, PowerShell, and Windows administration, an operator can use a semi-autonomous—or in this case fully autonomous—LLM to turn a discovered permission, trust relationship, or protocol constraint into a compromised network.
As models improve dramatically, we can expect further automation of these attacks, increasing the need for better defensive measures. The likely result is a larger pool of operators able to execute low-artifact, identity-led compromises with less preparation and faster adaptation. Cyber defenders need to begin experimenting with newer defensive techniques to combat attackers that are far faster and more capable. AI-led SOC is feasible with the tenfold reduction in model cost over the last year, and the ability to respond faster is required in the era of AI attackers.