Policypublished

Microsoft Finds Phishers Using Invisible Unicode to Dodge Email Filters

The campaign turns a technique associated with hidden instructions for AI systems into a filter-evasion tactic, exposing a weak point where email text looks different to people and software.

By 3 min read
Microsoft Finds Phishers Using Invisible Unicode to Dodge Email Filters
Microsoft Finds Phishers Using Invisible Unicode to Dodge Email Filters

Listen to this story

The audio brief

About 1:34
0:001:34
Read transcript
Microsoft recorded more than 2.37 million detections of an email-obfuscation technique on February 26, revealing a phishing campaign that made finance-themed messages look normal to people while trying to confuse filters. The trick uses invisible Unicode tag characters inserted inside lure words such as “funding.” A recipient still sees “funding,” but a security system may split the word into unfamiliar fragments and fail to recognize it. Microsoft says activity rose from about 21,000 signature detections a day to more than 1.3 million in early February, then reached millions per day across roughly 150 finance-themed sender domains. The pattern was mostly weekday traffic, with sharp weekend drops, and declined substantially after May 15 while continuing at lower levels through at least mid-June. These figures are signature matches—not successful phishing attempts, confirmed compromises, or recipient losses. The technique is called ASCII smuggling. It had previously been associated with hiding prompt-injection instructions from people while leaving them readable to AI systems. The same mismatch now targets ordinary email defenses, especially pipelines that tokenize text before applying keywords, signatures, or regex rules. Microsoft recommends stripping or folding invisible Unicode before those checks, and says optical character recognition, or OCR, can help by extracting the text people actually see. The open operational question is whether email-security and AI-assistant systems normalize untrusted content before their models or rules process it.

Story brief

3 key points

Microsoft’s telemetry indicates that Unicode tag characters have moved from an AI prompt-injection trick into a large-scale email-evasion campaign. Finance-themed messages used invisible characters to fragment lure terms during filtering, with detections reaching millions per day across roughly 150 sender domains. The counts measure signature matches—not successful compromises—but expose a gap between what...

  1. 01

    Microsoft recorded more than 2.37 million detections on February 26; activity later declined but continued through at least mid-June.

  2. 02

    Most traffic came from roughly 150 finance-themed domains and followed a weekday-heavy pattern.

  3. 03

    Detections measure the obfuscation signature, not successful phishing attempts, recipient losses, or confirmed compromises.

Microsoft has identified a phishing campaign that inserted invisible Unicode tag characters inside finance-related lure words, making messages appear normal to recipients while attempting to evade email content filters. The technique, known as ASCII smuggling, previously drew attention for concealing prompt-injection instructions from people while leaving them readable to AI systems.

The method exploits a mismatch in text processing. ASCII smuggling uses 128 Unicode tag characters that computers can read but people can barely see. An attacker can place one inside a visible word such as “funding,” leaving a recipient to read “funding” while a filter may split it into unfamiliar pieces rather than recognize the original term.

A normal-looking lure can become unrecognizable text

That can defeat more than a simple keyword blacklist. Email classifiers often turn text into tokens, or smaller word fragments, before scoring it. A hidden tag can cause a familiar lure to become rare or unknown fragments. Microsoft also warned that filters relying on text processing rather than rendering a message and extracting its visible text with optical character recognition may miss the obfuscation.

The underlying evasion idea predates the current AI discussion: spammers have long used zero-width and non-breaking spaces to disrupt literal text matching. What changed here is the adoption of Unicode tag characters that had been associated with indirect prompt injection, where hidden instructions are placed in documents or webpages for a large language model to process.

The volume suggests a campaign, not an isolated bypass

Microsoft Defender for Office saw signatures rise from roughly 21,000 a day to more than 1.3 million in early February; within four days, the company recorded 2.5 million daily detections. Most messages came from about 150 finance-themed sender domains. Activity ran mainly on weekdays, dropped sharply on weekends, then declined substantially after May 15 while continuing at lower levels through at least mid-June.

The figures describe detections of the signature, not a count of successful phishing attempts or recipient losses. They do, however, show that an obscuring method once framed as an AI-specific concern can operate at the volume and regular cadence of mass email campaigns.

The defensive fix begins before classification

Microsoft’s recommended control is to normalize text before evaluating keywords, signatures, or regular expressions: strip or fold invisible and non-rendering Unicode code points so inserted tags cannot split a lure word. It also advises defenders to ensure that normalization and tokenization handle those characters consistently, rather than treating them differently at separate stages of a filtering pipeline.

That remediation has a second use for organizations feeding inbound email into AI assistants. Microsoft says the same normalization and tokenization controls can reduce ASCII-smuggling exposure for those systems. The unresolved operational question is whether email-security and AI-assistant pipelines apply that cleanup before their models or rules interpret untrusted content.

Sources

  1. arstechnica.comOnce popular for attacking AI, ASCII smuggling is embraced by spammers
  2. theregister.comASCII smuggling isn