Security1 publisher2 min readPublished
Keyword filtering caught one in ten malicious intents on a 1,100-intent 6G benchmark
University of Ottawa and Nokia Bell Labs begin their threat model with an API key the attacker already holds, so everything they test is detection. Their supervised model caught 75 to 96 percent of the runs containing a malicious request.
The Watch · Security desk

What happened
- Researchers at the University of Ottawa and Nokia Bell Labs describe an attack in which someone holding a compromised API key submits malicious intents that pass as routine policy updates.
- The paper lists denial of service, privilege escalation, traffic redirection and backdoors as possible consequences, and its experiments cover only the detection of the injected intents.
- The evaluation uses 1,100 intents the authors constructed themselves, partly with help from a large language model, so every reported figure describes that dataset.
- A rule-based classifier built from 88 discriminating terms caught about 10 percent of the malicious intents, though 96 percent of what it did flag carried a malicious label.
- Reading short runs of consecutive requests, the supervised detector flagged between three-quarters and 96 percent of the runs that contained a malicious intent, depending on arrival pattern.
Compiled by The WatchSomething wrong?How this is made
Why it matters
- exposure Any credential authorized to submit intents reaches the policy plane. Ordinary key theft then becomes control over routing and logging.
- capability Rewording a rule preserves its effect, so a hand-maintained term list on an intent endpoint has to be updated faster than an attacker can paraphrase.
- constraint A buyer cannot read these percentages as deployment performance, and the review labor the run-level flagging implies falls on the operator's own analysts.
- decision Anyone procuring an IBN system has to decide whether intent submission is authorized per class of action, because every defense on offer here starts after the intent is accepted.
One of the nine variants takes a rule that drops traffic with logging enabled and rewrites it to null-route the same traffic with logging set to a limited mode [9]. The traffic is still discarded and less of it is written down. Multiply the base intents out and the malicious side of the corpus is 200 items [19]. The authors then relabeled 40 malicious intents as benign and 90 benign intents as malicious to model ambiguity [10], so 130 of the 1,100, about 12 percent, carry a deliberately wrong label [20].
A flag lands on the run, not on the request inside it, so a reviewer gets a batch of up to six intents to adjudicate [13]. The four arrival patterns the team modeled were a fixed average pace, random scatter, an accelerating rate and a decelerating one [12]. The unsupervised detector, trained only on normal activity and offered to teams with little advance knowledge of what attacks look like [14], led in three of those four patterns and missed about a third of the fixed-pace runs [16], catching roughly two in three of them [21]. The older per-request detector the authors compared against flagged between half and 60 percent of malicious cases [17]. The Help Net Security account of the paper gives those detection rates and does not report false-alarm rates for either sequence model [23].
Exploitability starts with the credential. The threat model assumes the attacker already holds an API key the system accepts [5], which puts the first control at the submission point, before any classifier sees the request. Intents are machine-readable requests, often JSON, that the system translates into network policy [4]. Intent-based networking is at the front of AI-native 6G designs, where operators state an outcome and software works out the policy [1]. Scoping follows from that: one key does not have to be allowed both to change a logging mode and to change a route.
The University of Ottawa and Nokia Bell Labs researchers argue the abstraction itself opens new ground for attackers, and they test two machine-learning detectors against one opening [2]. They call it adversarial intent injection, hiding malicious instructions among legitimate ones [3].
What to watch
- Whether the 75 to 96 percent range holds on the more varied JSON policy configurations the team plans to build next.
- The authors list explainable-AI methods as future work; those would tell a reviewer why a batch of six intents was flagged.
- A first reported case of an intent API key abused against a live IBN deployment would move this from benchmark figures to incident data.