Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for THREAT-Capability-MaliciousAIToolAbuse.

Upgrade to Pro
THREAT-Capability-MaliciousAIToolAbuse IBM QRadar · QRadar

Detect Underground and Jailbroken LLM Services Obtained for Phishing Lure and Malware Generation in IBM QRadar

Adversaries increasingly obtain artificial-intelligence capabilities rather than developing them from scratch, subscribing to underground uncensored LLM services (WormGPT-style and FraudGPT-style offerings sold on cybercrime forums) or abusing jailbreak prompts against mainstream commercial AI APIs to generate polished phishing email copy, localized BEC lures, obfuscated malware/loader code, and voice-cloned audio for vishing pretexts. This lowers the skill floor for producing convincing, grammatically flawless social-engineering content and functional malicious code without in-house development expertise. From a defender's vantage point this capability-acquisition activity is largely invisible until it manifests downstream, so detection pivots to two observable surfaces: (1) corporate egress traffic to known underground-AI-service infrastructure or anomalous, high-volume API usage patterns against legitimate LLM providers from unexpected internal contexts (e.g., a build server or unmanaged workstation making sustained completions-API calls), and (2) content-based indicators in received email and documents consistent with AI-generated phishing (unusually well-formed but semantically generic lure text, absent from any known template library, arriving from a newly-observed sender at high volume). This detection focuses defenders on the egress/API-abuse side of the equation, since it is the most directly observable within typical enterprise telemetry.

MITRE ATT&CK

Tactic
Resource Development

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT
  DATEFORMAT(devicetime,'yyyy-MM-dd HH:mm:ss') AS EventTime,
  sourceip, destinationip, "URL" AS RequestedUrl, "Image" AS Process,
  CASE
    WHEN "URL" ILIKE '%wormgpt%' OR "URL" ILIKE '%fraudgpt%' OR "URL" ILIKE '%evilgpt%' THEN 90
    WHEN "URL" ILIKE '%api.openai.com%' OR "URL" ILIKE '%api.anthropic.com%' THEN 40
    ELSE 30
  END AS RiskScore
FROM events
WHERE
  ("URL" ILIKE '%wormgpt%' OR "URL" ILIKE '%fraudgpt%' OR "URL" ILIKE '%worm-gpt%' OR "URL" ILIKE '%fraud-gpt%'
   OR "URL" ILIKE '%evilgpt%' OR "URL" ILIKE '%escapegpt%'
   OR "URL" ILIKE '%api.openai.com%' OR "URL" ILIKE '%api.anthropic.com%'
   OR "URL" ILIKE '%generativelanguage.googleapis.com%' OR "URL" ILIKE '%api.mistral.ai%')
  AND LOGSOURCETYPENAME(devicetype) ILIKE '%proxy%'
ORDER BY RiskScore DESC
LAST 24 HOURS
medium severity low confidence

QRadar AQL detection for outbound requests to underground AI-service infrastructure (high risk score) or legitimate LLM API providers (lower baseline score, intended for downstream volumetric analysis), supporting detection of AI-capability acquisition or abuse for phishing/malware generation.

Data Sources

Web proxy logs

Required Tables

events

False Positives & Tuning

  • Legitimate AI/ML development or automation workloads
  • Authorized security research into underground AI marketplaces
  • SaaS integrations proxying LLM API calls through an on-prem gateway

Other platforms for THREAT-Capability-MaliciousAIToolAbuse


Testing Methodology

Validate this detection against 2 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Outbound Connection Referencing Underground AI Service Naming Pattern

    Expected signal: Sysmon Event ID 3 / DeviceNetworkEvents: outbound connection attempt from powershell.exe to a hostname containing 'wormgpt'. DNS resolution will fail (NXDOMAIN) since the domain is a placeholder, but the connection attempt and DNS query are logged.

  2. Test 2Sustained High-Volume Requests to Legitimate LLM API Endpoint

    Expected signal: Sysmon Event ID 3 / DeviceNetworkEvents: approximately 55 outbound connections from powershell.exe to api.openai.com within roughly 15 seconds. Requests will return 401 Unauthorized due to the invalid test key, but the connection attempts are logged regardless.

Unlock playbooks & atomic tests with Pro

Get the full detection package for THREAT-Capability-MaliciousAIToolAbuse — response playbook and atomic red team tests, plus investigation guidance and hunting queries.

df00tech Pro — £29/user/month

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections