Introduction
Security Arsenal analysts are tracking a surge in social engineering campaigns specifically targeting organizations leveraging AI solutions. As we observe in the latest intelligence, threat actors have pivoted from traditional financial themes to impersonating high-profile AI service providers, such as ChatGPT. These campaigns exploit the rapid adoption of AI tools and the critical nature of the access they provide. By leveraging the psychological trigger of "fear of loss"—specifically the loss of access to vital AI capabilities or data—attackers are successfully bypassing standard user skepticism. Defenders must recognize that AI infrastructure is now a high-value target for brand impersonation and credential harvesting.
Technical Analysis
- Affected Products & Platforms: The primary vector targets end-users via email clients (Outlook, Webmail) and web browsers. While the specific "product" is the AI service being impersonated (e.g., ChatGPT), the compromise occurs at the user authentication layer.
- The Threat Vector: Social Engineering / Brand Impersonation.
- Attack Chain:
- Initial Contact: Targeted phishing emails spoofing AI service domains (e.g., support@chatgpt-security-update.com).
- Lure: The message fabricates a scenario invoking fear or urgency, such as "Your API access will be revoked due to policy violation" or "Verify identity to prevent account suspension."
- Exploitation: The victim clicks a link leading to a credential harvesting page (Typosquatting).
- Objective: Exfiltration of valid credentials for the AI service or associated SSO accounts.
- Exploitation Status: Active. Reports indicate these emails are currently bypassing basic spam filters by using sophisticated HTML templates and low-volume, high-targeting approaches.
Detection & Response
To combat these campaigns, we must focus on detecting the network artifacts associated with brand impersonation (typosquatting) and the user interaction with these suspicious endpoints. The following rules identify attempts to connect to domains masquerading as legitimate AI services.
---
title: Potential Typosquatting Connection to AI Service Providers
id: 8a4b2c1d-5e6f-4a3b-8c9d-1e2f3a4b5c6d
status: experimental
description: Detects network connections to domains containing AI brand keywords that are not hosted on official legitimate domains. This targets social engineering campaigns impersonating ChatGPT or OpenAI.
references:
- https://isc.sans.edu/diary/rss/33206
author: Security Arsenal
date: 2026/08/01
tags:
- attack.initial_access
- attack.t1566
- attack.credential_access
- attack.t1059
logsource:
category: network_connection
product: windows
detection:
selection:
DestinationHostname|contains:
- 'chatgpt'
- 'openai'
filter_legit:
DestinationHostname|endswith:
- '.openai.com'
- '.chatgpt.com'
condition: selection and not filter_legit
falsepositives:
- Legitimate internal tools using similar naming conventions
level: high
---
title: Suspicious Process Execution with AI-Themed Keywords
id: 9c5d3e2f-6f7a-5b4c-9d0e-2f3a4b5c6d7e
status: experimental
description: Detects execution of files or scripts with filenames mimicking AI brands, often delivered as malicious attachments in phishing campaigns.
references:
- https://isc.sans.edu/diary/rss/33206
author: Security Arsenal
date: 2026/08/01
tags:
- attack.execution
- attack.t1204
logsource:
category: process_creation
product: windows
detection:
selection:
Image|contains:
- 'chatgpt'
- 'openai'
- 'ai-invoice'
- 'ai-access'
filter_legit:
Image|contains:
- '\AppData\Local\Programs\'
- '\Program Files\'
condition: selection and not filter_legit
falsepositives:
- User-created scripts with legitimate AI function
level: medium
**Microsoft Sentinel / Defender KQL**
This query hunts for network connections to domains containing AI-related keywords, excluding known legitimate infrastructure. It helps identify users engaging with potential phishing landing pages.
DeviceNetworkEvents
| where Timestamp > ago(7d)
| where RemoteUrl has_any ("chatgpt", "openai", "chat-gpt", "open-ai")
| where RemoteUrl !endswith ".openai.com"
| where RemoteUrl !endswith ".chatgpt.com"
| where RemoteUrl !contains "microsoft.com"
| project Timestamp, DeviceName, InitiatingProcessAccountName, RemoteUrl, ActionType
| summarize count() by RemoteUrl, DeviceName
| order by count_ desc
**Velociraptor VQL**
This artifact hunts for active network connections or DNS cache entries that match the typosquatting patterns identified in the campaign.
-- Hunt for suspicious AI-related domains in network connections
SELECT
Timestamp,
PID,
ProcessName,
RemoteAddress,
RemotePort
FROM watch_netstat()
WHERE RemoteAddress =~ 'chatgpt'
OR RemoteAddress =~ 'openai'
OR RemoteAddress =~ 'chat-gpt'
OR RemoteAddress =~ 'open-ai'
-- Note: Filter logic for legitimate domains should be applied based on known whitelists
**Remediation Script (PowerShell)**
This script performs a "hardening" check by scanning the local DNS cache for suspicious AI-related domains that may indicate a user has interacted with a phishing link. It also provides a function to flush the cache if malicious entries are found.
<#
.SYNOPSIS
Checks for and remediates suspicious AI-themed domains in the DNS Cache.
.DESCRIPTION
This script scans the client DNS cache for entries matching known typosquatting patterns used in social engineering campaigns against AI providers.
#>
function Check-AIPhishingIndicators {
$SuspiciousKeywords = @('chatgpt', 'openai', 'chat-gpt', 'open-ai')
$LegitimateDomains = @('openai.com', 'chatgpt.com', 'auth0.com', 'microsoft.com')
Write-Host "[+] Scanning DNS Cache for AI-related phishing indicators..." -ForegroundColor Cyan
$DnsCache = Get-DnsClientCache
$BadEntries = $DnsCache | Where-Object {
($SuspiciousKeywords | Where-Object { $_.Entry -like "*$($_)*" }) -and
-not ($LegitimateDomains | Where-Object { $_.Entry -like "*$($_)*" })
}
if ($BadEntries) {
Write-Host "[!] WARNING: Found suspicious DNS entries potentially related to AI phishing:" -ForegroundColor Red
$BadEntries | Format-Table Entry, Data, Type -AutoSize
# Remediation: Clear DNS Cache
Write-Host "[*] Attempting remediation by clearing DNS Cache..." -ForegroundColor Yellow
Clear-DnsClientCache
Write-Host "[+] DNS Cache flushed." -ForegroundColor Green
} else {
Write-Host "[+] No suspicious AI-related domains found in DNS cache." -ForegroundColor Green
}
}
Check-AIPhishingIndicators
Remediation
- User Awareness & Training: Immediately alert your workforce about these specific campaigns. Emphasize that AI providers will rarely, if ever, threaten account suspension via email without prior in-platform notification.
- Email Filtering: Update secure email gateways (SEG) to block emails containing keywords such as "urgent," "suspended access," or "verification required" in conjunction with references to "ChatGPT" or "OpenAI." Implement DMARC, SPF, and DKIM strictly to prevent spoofing of your own domain.
- Report Mechanisms: Ensure users have a simple "Report Phishing" button integrated into the email client.
- Conditional Access: Enforce Multi-Factor Authentication (MFA) for all cloud services, including AI platforms. If possible, restrict access to known AI services to corporate-managed devices only.
Related Resources
Security Arsenal Penetration Testing Services AlertMonitor Platform Book a SOC Assessment vulnerability-management Intel Hub
Is your security operations ready?
Get a free SOC assessment or see how AlertMonitor cuts through alert noise with automated triage.