Soham Hans, Stacy Marsella, Sofia Hirschmann, Nikolos Gurney
5 min
Traditional cybersecurity defense relies on manual interpretation of fragmented, low-level network logs to understand attacker intent. This study investigates whether Large Language Models (LLMs) can bridge the semantic gap between raw network telemetry (Suricata IDS logs) and high-level adversarial strategy, as defined by the MITRE ATT&CK framework, to enable cognitive-adaptive cyber defense.
The authors propose a two-stage framework. First, they use an LLM to perform 'action segmentation,' grouping continuous, fragmented log entries into semantically coherent behavioral units. Second, they employ a Retrieval-Augmented Generation (RAG-LLM) system to map these segmented actions to specific MITRE ATT&CK techniques. The researchers benchmarked this telemetry-only approach against a baseline that utilized 'OPNOTES'—real-time journals written by attackers—to determine how well machine-only data can approximate the accuracy of human-authored accounts.
The study demonstrates that LLMs can effectively reconstruct the structure of an attack from network logs alone. The model achieved high precision in identifying ATT&CK tactics that have clear network-layer signatures, such as reconnaissance and collection. However, the model showed lower recall for host-resident or internal activities, such as persistence or command-and-control, which are less visible on the wire. The results suggest that while telemetry-driven inference cannot capture every internal decision, it is highly effective at identifying the behavioral phases and shifts that signal an attacker's strategic intent.
This research provides a pathway for automating threat intelligence in operational environments where human-authored notes are unavailable. By enabling systems to infer not just 'what' an attacker is doing, but the underlying strategic phases, this framework supports the development of cognitive-adaptive defenses that can anticipate adversarial moves based on observed behavioral patterns.
Alex: So it captures reconnaissance and initial collection well, because those phases depend on visible network activity, but it loses the thread once the attacker goes quiet on the network and moves laterally through the host.
Sam: Precisely. And the authors are careful to frame this as a data-source boundary, not a modeling failure. The framework isn't misinterpreting the evidence—it's simply hitting the limit of what can be inferred from network traffic alone. Where traffic signatures exist, the model does successfully reconstruct the structure of the attack.
Alex: That distinction matters for how you'd deploy this in practice. You'd want analysts to understand they're seeing a partial reconstruction, not a complete picture.
Sam: Which is actually one of the more useful outputs of the framework—making that partiality explicit. Rather than returning a single verdict, the system surfaces which ATT&CK phases it has high-confidence coverage on and where the observability drops off. That's operationally useful for a SOC analyst who'd otherwise be chasing individual signatures without any sense of which phase of the kill chain they're in.
Alex: Does the paper push further into what you could actually do with a behavioral profile once you have one?
Sam: It does, and this is where the work gets more speculative—the authors flag it as a direction rather than a validated finding. The idea is that if you can infer an attacker's cognitive bias from their behavior—say, identifying someone as particularly loss-averse based on how they route around high-risk targets—you could potentially anticipate their next move. A risk-averse attacker might pivot to a safer subnet rather than probe a primary server directly. That's the "Theory of Mind" framing the authors invoke.
Alex: Which would shift the analyst's job from alert triage to something closer to adversarial modeling.
Sam: That's the long-term claim. Instead of chasing individual signatures, you're reasoning about the human intent behind the machine events. The honest read of this paper is that it demonstrates the first step of that pipeline is feasible—behavioral segmentation and ATT&CK mapping from raw logs—while the predictive layer remains an open research question.
Alex: So the load-bearing finding is really the precision of the tactic identification, with the recall gap as the main constraint on how far you can trust it?
Sam: That's the right read. High precision means the framework earns its place as a triage tool. The recall gap means it shouldn't be treated as a complete forensic account. And the observability ceiling is the limitation that most constrains generalization—until you fuse host-level telemetry with the network data, later-stage attack phases will remain structurally underrepresented.
Alex: A clear-eyed result. The shift from "what happened" to "why it happened" using only the data already on the wire is a meaningful step, even if the full pipeline isn't there yet. Thanks for walking through the mechanism.
Sam: Thanks for listening to ResearchPod.