Back to Intelligence

DOJ Seizes CFAKE & SOCFAKE: Deepfake Domain Blocking and Detection Guide

SA
Security Arsenal Team
June 15, 2026
5 min read

The U.S. Department of Justice announced Friday that it has seized the domains CFAKE.com and SOCFAKE.com, notorious hubs for nonconsensual AI-generated nude imagery. This enforcement action marks the first public domain seizure under the TAKE IT DOWN Act, signaling a significant shift in how the federal government addresses the distribution of Non-Consensual Intimate Imagery (NCII).

For security practitioners, this is not just legal news; it is a critical intelligence update. Accessing these domains—whether intentionally by users or inadvertently via malicious redirects—poses severe compliance risks, creates legal liability for organizations, and exposes networks to potential malvertising associated with illicit content ecosystems.

Technical Analysis: Threat Vector and Infrastructure

While this news involves a legal takedown rather than a software vulnerability (CVE), the technical delivery mechanism remains web-based infrastructure hosting abusive content.

  • Affected Infrastructure: cfake.com, socfake.com.
  • Threat Vector: Direct web access and SEO poisoning. Users may be directed to these sites via malicious links in spam campaigns, compromised ad networks, or social engineering.
  • Exploitation Status: The domains are currently under U.S. government control. Users attempting to visit these sites will likely encounter a seizure banner. However, historical traffic to these IPs or residual DNS cache entries can indicate prior policy violations or compromised user activity.
  • Defensive Concern: The hosting of NCII is often co-located with other high-risk cybercriminal activities. Networks permitting access to these domains frequently exhibit gaps in DNS filtering and Security Web Gateway (SWG) policies.

Detection & Response

Security teams must immediately audit network logs to identify if internal assets have communicated with these domains. This is essential for internal investigations, HR compliance, and ensuring your DNS sinkholes are effectively routing traffic.

SIGMA Rules

Use the following rules to detect network connections or DNS queries to the seized domains across your endpoints and network devices.

YAML
---
title: DNS Query for Seized Deepfake Domain - CFAKE
id: 8c4d9a12-3f41-4b7a-8e50-1d2b3c4d5e6f
status: experimental
description: Detects DNS queries for cfake.com, a domain seized by the DOJ for hosting nonconsensual deepfake content.
references:
 - https://www.justice.gov/opa/pr
author: Security Arsenal
date: 2026/04/11
tags:
 - attack.command_and_control
 - attack.t1071.004
logsource:
 category: dns
 product: windows
detection:
 selection:
  QueryName|endswith: 'cfake.com'
 condition: selection
falsepositives:
 - None (Domain seized/sinkholed)
level: high
---
title: DNS Query for Seized Deepfake Domain - SOCFAKE
id: 9e5e0b23-4g52-5c8b-9f61-2e3c4d5e6f70
status: experimental
description: Detects DNS queries for socfake.com, a domain seized by the DOJ for hosting nonconsensual deepfake content.
references:
 - https://www.justice.gov/opa/pr
author: Security Arsenal
date: 2026/04/11
tags:
 - attack.command_and_control
 - attack.t1071.004
logsource:
 category: dns
 product: windows
detection:
 selection:
  QueryName|endswith: 'socfake.com'
 condition: selection
falsepositives:
 - None (Domain seized/sinkholed)
level: high


**KQL (Microsoft Sentinel / Defender)**

Hunt for historical or active connections to these domains in your network logs.

KQL — Microsoft Sentinel / Defender
// Hunt for connections to seized deepfake domains
DeviceNetworkEvents
| where RemoteUrl in~ ("cfake.com", "socfake.com")
  or RemoteUrl has_suffix ("cfake.com")
  or RemoteUrl has_suffix ("socfake.com")
| project Timestamp, DeviceName, InitiatingProcessAccountName, RemoteUrl, RemoteIP, ActionType
| order by Timestamp desc


**Velociraptor VQL**

Investigate endpoint DNS caches to see if these domains were recently resolved, even if the browser history was cleared.

VQL — Velociraptor
-- Hunt for recent DNS cache entries related to seized domains
SELECT Name, Type, Data, TimeStamp
FROM dns_client_cache()
WHERE Name =~ 'cfake.com'
   OR Name =~ 'socfake.com'


**Remediation Script (PowerShell)**

This script audits the local DNS cache for indicators of access to the seized domains and can be deployed via Endpoint Management (MEM/Intune) for compliance auditing.

PowerShell
<#
.SYNOPSIS
    Audits local DNS cache for DOJ-seized deepfake domains.
.DESCRIPTION
    Checks the client DNS resolver cache for entries related to cfake.com or socfake.com.
#>

$SeizedDomains = @('cfake.com', 'socfake.com')
$DnsCache = Get-DnsClientCache

$Results = foreach ($Domain in $SeizedDomains) {
    $Matches = $DnsCache | Where-Object { $_.Entry -like "*$Domain*" }
    if ($Matches) {
        Write-Warning "[ALERT] Found DNS cache entry for seized domain: $Domain"
        $Matches | Select-Object Entry, Data, TimeToLive
    } else {
        Write-Host "[OK] No cache entry found for: $Domain"
    }
}

if ($Results) {
    # Log to Event Log for SIEM correlation if necessary
    Write-Error "Compliance Alert: Seized domain artifacts found on host."
    exit 1
} else {
    exit 0
}

Remediation

To fully mitigate the risk and ensure compliance with the TAKE IT DOWN Act and corporate acceptable use policies, take the following steps immediately:

  1. Block at the DNS Layer: Update your internal DNS servers (Windows DNS, BIND) and upstream DNS security providers (Cisco Umbrella, Cloudflare, etc.) to block cfake.com and socfake.com. Sinkhole these domains to a block page or 0.0.0.0.
  2. Update Proxy/SWG Rules: Add these domains to the "Adult Content" or "Illegal" block lists in your Secure Web Gateway (Zscaler, Netskope, Palo Alto Networks).
  3. Review Web Proxy Logs: Conduct a retroactive search (last 90 days) of your proxy logs for any successful HTTP/HTTPS connections to these domains to identify users who may have accessed this material on corporate assets.
  4. User Notification: Update your acceptable use policy reminders to explicitly reference the prohibition of accessing NCII and the use of corporate resources for deepfake generation or consumption.

Related Resources

Security Arsenal Managed SOC Services AlertMonitor Platform Book a SOC Assessment soc-mdr Intel Hub

mdrthreat-huntingendpoint-detectionsecurity-monitoringdeepfakedomain-blockingcfakesocfake

Is your security operations ready?

Get a free SOC assessment or see how AlertMonitor cuts through alert noise with automated triage.