US Warns of Chinese AI Model Theft Campaigns

US Agencies: China-Based Firms Stealing US AI Models at Scale

HIGH
September 9, 2026
5m read
Threat ActorThreat IntelligencePolicy and Compliance

Related Entities

Organizations

Products & Tech

ClaudeGPTGeminiGrokKnowledge Distillation

Other

Full Report

Executive Summary

On September 8, 2026, three top U.S. security agencies—the NSA, CISA, and FBI—released a joint cybersecurity advisory detailing systematic, industrial-scale campaigns by China-based AI companies to illicitly extract capabilities from U.S.-developed foundational AI models. The advisory names six specific Chinese firms: DeepSeek, Moonshot AI, Alibaba, MiniMax, StepFun, and Z.AI. These companies are accused of using a technique called "knowledge distillation" to query U.S. models (including variants of Claude, GPT, Gemini, and Grok) billions of times to train their own systems. This activity, described as the "core" of their development strategy, is a violation of the U.S. companies' terms of service and constitutes a significant threat to U.S. economic competitiveness and national security in the AI domain.

Threat Overview

The threat centers on the malicious application of knowledge distillation. While a legitimate machine learning technique for creating smaller, more efficient models, the Chinese firms are allegedly using it at an unprecedented scale for intellectual property theft. The process involves using a less capable "student" model to repeatedly query a powerful "teacher" model (the U.S. platform) with a vast number of prompts. By analyzing the teacher's responses, the student model learns to replicate its capabilities, such as reasoning, domain-specific knowledge, and safety features, without undergoing the expensive and time-consuming process of training from scratch.

The U.S. agencies report that these campaigns have been ongoing since at least late 2024 and involve billions of tokens across millions of exchanges. The activity is described as "aggressive, malicious, and targeted," going far beyond academic research. The advisory suggests this is not rogue corporate espionage but a coordinated effort likely occurring with the awareness, if not direction, of the Chinese government, aligning with its national strategy to achieve global leadership in AI.

Technical Analysis

The attack is not a traditional network intrusion but an abuse of service at a massive scale. The primary TTP is the abuse of legitimate API access to the target AI models.

Attack Chain:

  1. Reconnaissance & Setup: The Chinese firms create numerous accounts on U.S. AI platforms, likely using automated scripts and distributed infrastructure to bypass basic rate limiting and account creation controls.
  2. Prompt Generation: The firms' "student" models generate millions of diverse and targeted prompts designed to elicit specific capabilities from the U.S. "teacher" models. This could include complex reasoning problems, coding challenges, or questions about specialized domains.
  3. Large-Scale Querying (T1486 - Data Destruction): The prompts are sent to the U.S. models' APIs from a distributed network of IP addresses to evade detection. This constitutes an abuse of service that can also be viewed through the lens of economic denial of service due to the high computational cost incurred by the U.S. providers.
  4. Response Collection & Distillation: The responses from the U.S. models are collected and used as training data for the Chinese models. The student model's parameters are adjusted to minimize the difference between its output and the teacher's output.
  5. Evasion: The firms likely employ techniques to mask their activity, such as varying query patterns, using residential proxies, and continuously creating new accounts to avoid being fingerprinted and blocked.

Impact Assessment

The primary impact is economic and strategic. This industrial-scale knowledge theft allows Chinese companies to shortcut the multi-billion dollar research and development costs associated with building frontier AI models. This erodes the competitive advantage of U.S. AI firms and accelerates China's progress toward its goal of AI dominance. There is also a national security risk, as the stolen capabilities could be integrated into military, intelligence, and surveillance applications. For the U.S. AI companies, the attacks result in significant financial losses due to the high computational cost of serving millions of malicious queries and the devaluation of their core intellectual property.

IOCs — Directly from Articles

No traditional IOCs like IP addresses or hashes were provided. The indicators are behavioral.

Cyber Observables — Hunting Hints

U.S. AI companies should hunt for the following patterns to identify distillation campaigns:

Type
api_endpoint
Value
/v1/chat/completions
Description
High-Volume API Abuse
Context
Monitor for an unusually high volume of requests from a single organization or clusters of related accounts, especially if the prompts show high diversity and complexity.
Confidence
high
Type
user_account_pattern
Value
user[0-9]+@domain.com
Description
Suspicious Account Creation
Context
Detect rapid, automated creation of accounts from a common IP block or using programmatic usernames.
Confidence
high
Type
network_traffic_pattern
Value
Geolocation Mismatch
Description
Evasion Attempts
Context
Identify traffic where user accounts are registered in one country but API requests consistently originate from another, particularly China.
Confidence
medium
Type
other
Value
Prompt Similarity
Description
Coordinated Querying
Context
Analyze prompt semantics across many accounts to identify large sets of thematically related but slightly varied queries, indicative of a coordinated distillation effort.
Confidence
high
Type
other
Value
Token Consumption
Description
Anomalous Usage
Context
Alert on accounts or organizations with token consumption patterns that are orders of magnitude higher than typical users, without a clear business justification.
Confidence
high

Detection & Response

The advisory recommends several detection and response strategies for U.S. AI companies:

  1. Behavioral Analysis: Implement advanced monitoring to detect anomalous account behavior. This goes beyond simple rate limiting to include analysis of prompt complexity, diversity, and session patterns. This is a form of D3FEND User Behavior Analysis.

  2. Response Obfuscation (Watermarking): When a distillation campaign is suspected, subtly alter, or "watermark," the model's responses. This can involve introducing minor, non-obvious errors or stylistic quirks. When these alterations reappear in a competitor's model, it provides strong evidence of theft. This is a form of D3FEND Decoy Object.

  3. Intelligence Sharing: The advisory stresses the need for increased information sharing among U.S. AI providers. Sharing indicators of malicious accounts and query patterns can help identify distributed campaigns that might appear as noise to a single provider.

Mitigation

  1. Enhanced Account Vetting: Strengthen account creation and verification processes to make it harder for adversaries to create thousands of fake accounts for their campaigns.

  2. Contractual Enforcement: Actively enforce Terms of Service that prohibit scraping and model distillation. This includes terminating accounts and pursuing legal action against violating entities like DeepSeek and Moonshot AI.

  3. API Gating and Tiering: Implement stricter access controls and usage tiers for powerful models. Require more stringent verification and contractual agreements for high-volume API access, making it more difficult to abuse anonymously. This is a form of D3FEND Application Configuration Hardening.

  4. Geopolitical Policy: The advisory is itself a policy mitigation, signaling a more aggressive stance by the U.S. government against this form of economic espionage. This may be followed by sanctions or other trade restrictions.

Timeline of Events

1
December 31, 2024
Malicious knowledge distillation campaigns by Chinese firms reportedly began around late 2024.
2
September 8, 2026
CISA, NSA, and FBI issue a joint advisory warning of the industrial-scale AI model theft.
3
September 9, 2026
This article was published

MITRE ATT&CK Mitigations

While not a traditional endpoint, applying behavior analysis to API usage patterns is the core detection strategy.

Using techniques like response watermarking (a form of decoy object) can help identify stolen model capabilities.

Hardening API access controls, rate limits, and account creation processes can mitigate abuse.

Enforcing terms of service and implementing stricter validation for high-volume accounts helps prevent abuse.

D3FEND Defensive Countermeasures

AI providers must implement sophisticated monitoring to analyze resource access patterns on their API endpoints. Instead of simple rate limiting, this involves building a baseline of normal user behavior and detecting deviations indicative of distillation. Key indicators to model include: query rate, prompt complexity (token count, structure), semantic diversity of prompts from a single account/organization, and the ratio of unique queries to repeated queries. Machine learning models can be trained to distinguish between human-like interaction, legitimate application usage, and the systematic, exhaustive patterns of a distillation attack. Alerts should be triggered when a cluster of accounts exhibits highly coordinated, high-volume, and complex querying behavior, especially when originating from geographies associated with the named threat actors.

When a distillation campaign is suspected, AI providers can employ a 'decoy object' strategy by subtly watermarking the model's output. This is not a traditional honeypot but a dynamic defense. For requests flagged as suspicious, the model can be instructed to embed a unique, non-obvious identifier or a specific, slightly incorrect fact into its response. For example, it could consistently misstate a minor historical date or use a unique turn of phrase. If this watermark later appears in the output of a competitor's model (e.g., DeepSeek's), it provides strong, attributable evidence of model theft. This technique shifts the defense from pure prevention to detection and attribution, creating a significant deterrent for adversaries.

Harden the API and account management systems to increase the cost and difficulty of these campaigns. This includes: 1) Stricter account verification processes that are resistant to automation. 2) Implementing dynamic, behavior-based rate limiting that is more sophisticated than simple request-per-second thresholds. 3) Gating access to the most powerful models behind more rigorous identity verification and contractual agreements. 4) Using advanced bot detection and CAPTCHA-like challenges during account creation and for suspicious traffic patterns. These measures collectively harden the application's configuration to make industrial-scale abuse economically and logistically infeasible.

Timeline of Events

1
December 31, 2024

Malicious knowledge distillation campaigns by Chinese firms reportedly began around late 2024.

2
September 8, 2026

CISA, NSA, and FBI issue a joint advisory warning of the industrial-scale AI model theft.

Article Author

Jason Gomes

Jason Gomes

• Cybersecurity Practitioner

Cybersecurity professional with over 10 years of specialized experience in security operations, threat intelligence, incident response, and security automation. Expertise spans SOAR/XSOAR orchestration, threat intelligence platforms, SIEM/UEBA analytics, and building cyber fusion centers. Background includes technical enablement, solution architecture for enterprise and government clients, and implementing security automation workflows across IR, TIP, and SOC use cases.

Threat Intelligence & AnalysisSecurity Orchestration (SOAR/XSOAR)Incident Response & Digital ForensicsSecurity Operations Center (SOC)SIEM & Security AnalyticsCyber Fusion & Threat SharingSecurity Automation & IntegrationManaged Detection & Response (MDR)

Editorial Standards & Analyst Review

CyberNetSec.io uses automation to assist source monitoring, deduplication, observable extraction, and structured intelligence generation. Published analysis follows human-defined editorial standards and adds defensive context including MITRE ATT&CK, D3FEND, STIX, and Sigma where applicable. Read our editorial policy.

Tags

AIArtificial IntelligenceKnowledge DistillationChinaNSACISAFBIEconomic EspionageThreat Actor

📢 Share This Article

Help others stay informed about cybersecurity threats

🎯 MITRE ATT&CK Mapped

Every tactic, technique, and sub-technique used in this threat has been identified and mapped to the MITRE ATT&CK framework for consistent, actionable threat language.

🧠 Enriched & Analyzed

Observables and indicators of compromise (IOCs) have been extracted and cataloged. Risk has been assessed and correlated with known threat actors and historical campaigns.

🛡️ Actionable Guidance

Detection rules, incident response steps, and D3FEND-aligned mitigation strategies are included so your team can act on this intelligence immediately.

🔗 STIX Visualizer

Structured threat data is packaged as a STIX 2.1 bundle and can be visualized as an interactive graph — relationships between actors, malware, techniques, and indicators.

Sigma Generator

Sigma detection rules are derived from the threat techniques in this article and can be converted for deployment across any major SIEM or EDR platform.