Back to Intelligence

MacSync Stealer, Phantom Infostealer & Global Phishing Surge: OTX Pulse Analysis

SA
Security Arsenal Team
July 31, 2026
5 min read

Threat Summary

OTX pulses from 2026-07-31 reveal a coordinated surge in credential theft operations spanning macOS, Windows, and mobile platforms, driven by both crimeware and espionage actors.

  1. macOS Malvertising (MacSync): A sophisticated six-stage attack chain named "MacSync" is being distributed via malicious Google Ads impersonating Claude AI installation guides. This campaign deploys a complex loader sequence (zsh -> AppleScript -> Mach-O RAT) designed to steal TCC permissions and cryptocurrency wallets.
  2. Windows Infostealing (Phantom Stealer): A .NET-based malware, "Phantom Stealer," is actively harvesting browser credentials and crypto assets using steganography to hide payloads within images and PowerShell loaders for execution.
  3. Regionalized Phishing: Massive credential harvesting campaigns are leveraging geo-specific urgency. In India, taxpayers are targeted via WhatsApp with fake tax penalties delivering Android malware. In Chile, the "PasasteSinTAG" campaign has rotated 99 new domains to harvest government credentials.
  4. Espionage (Central Asia): State-aligned actors utilizing "OctLurk" and "SilkLurk" (PlugX variants) are targeting Central Asian government entities, utilizing credential dumping tools (Impacket, FSCAN) for lateral movement.

Threat Actor / Malware Profile

Malware / CampaignTarget PlatformDistribution MethodKey Behaviors
MacSync / AMOSmacOSMalvertising (Google Ads), Fake Claude AI guides6-stage payload chain, TCC bypass, Crypto wallet theft, SectopRAT deployment.
Phantom StealerWindowsPhishing, Cracked Software, Discord/Telegram links.NET payload, Steganography (hidden in images), PowerShell download cradle, Clipboard hijacking.
Indian Tax PhishingAndroid / WebWhatsApp messages, Fake Office MemorandumsSocial engineering (72-hour deadline), ITD.zip delivery, OTP theft.
PasasteSinTAGWebDomain Rotation, TyposquattingBrand impersonation, Credential harvesting, Mass registration of .click/.cfd domains.

IOC Analysis

The provided pulses offer a mix of file hashes and network infrastructure critical for detection:

  • File Hashes: Multiple SHA256 and MD5 hashes are provided for MacSync components (Mach-O binaries, zsh loaders) and Phantom Stealer ( payloads). These should be blocked immediately on endpoints.
  • Domains: A significant volume of domains (105 indicators) relates to the PasasteSinTAG campaign (e.g., pasastesintag.pics, parastesintago.click). Indian Tax phishing indicators include gov-xnui.com and indiaaba.com.
  • Operationalization: SOC teams should ingest these hashes into EDR solutions for immediate quarantine. Domains should be added to DNS firewall/Blocklists (RPZ). The high volume of PasasteSinTAG domains suggests an algorithmic generation pattern; regex matching for *pasastesintag* is recommended.

Detection Engineering

Sigma Rules

YAML
title: MacSync Stealer Suspicious Shell Execution via Curl
id: 8a1b2c3d-4e5f-6a7b-8c9d-0e1f2a3b4c5d
description: Detects potential MacSync infection chain involving curl downloading scripts piped to zsh.
status: experimental
date: 2026/07/31
author: Security Arsenal
references:
    - https://otx.alienvault.com/pulse/macsync-stealer-rat-reverse-engineering
tags:
    - attack.execution
    - attack.t1059.004
logsource:
    product: macos
    category: process_creation
detection:
    selection:
        Image|endswith: '/curl'
        CommandLine|contains:
            - 'claude.ai'
            - 'paste'
        CommandLine|contains: '|'
    condition: selection
falsepositives:
    - Legitimate developer tool installation
level: high
---
title: Phantom Stealer PowerShell Loader Activity
id: 9b2c3d4e-5f6a-7b8c-9d0e-1f2a3b4c5d6e
description: Detects PowerShell patterns used by Phantom Stealer, including downloading cradles and steganography references.
status: experimental
date: 2026/07/31
author: Security Arsenal
references:
    - https://otx.alienvault.com/pulse/phantom-stealer-unmasked
tags:
    - attack.execution
    - attack.t1059.001
logsource:
    product: windows
    category: process_creation
detection:
    selection_pwsh:
        Image|endswith:
            - '\powershell.exe'
            - '\pwsh.exe'
    selection_suspicious:
        CommandLine|contains:
            - 'DownloadString'
            - 'FromBase64String'
            - '.bmp'
            - '.png'
            - 'clipboard'
    condition: all of selection_*
falsepositives:
    - Administrative scripts
level: high
---
title: PasasteSinTAG Credential Harvesting Domain Access
id: 0c3d4e5f-6a7b-8c9d-0e1f-2a3b4c5d6e7f
description: Detects network connections to domains associated with the PasasteSinTAG phishing campaign.
status: experimental
date: 2026/07/31
author: Security Arsenal
references:
    - https://otx.alienvault.com/pulse/pasastesintag-phishing
tags:
    - attack.command_and_control
    - attack.t1071.001
logsource:
    category: network_connection
    product: windows
detection:
    selection:
        Initiated: 'true'
        DestinationHostname|contains:
            - 'pasastesintag'
            - 'parastesintago'
            - 'pasastesintap'
    condition: selection
falsepositives:
    - Unknown
level: critical

KQL (Microsoft Sentinel)

KQL — Microsoft Sentinel / Defender
// Hunt for PasasteSinTAG and Indian Tax Phishing Domains
DeviceNetworkEvents
| where RemoteUrl has "pasastesintag" 
   or RemoteUrl has "parastesintago" 
   or RemoteUrl has "gov-xnui.com" 
   or RemoteUrl has "indiaaba.com" 
   or RemoteUrl has "laoshunfa.xyz"
| project Timestamp, DeviceName, InitiatingProcessFileName, InitiatingProcessAccountName, RemoteUrl, RemoteIP
| order by Timestamp desc

// Hunt for Phantom Stealer File Hashes
union DeviceFileEvents, DeviceProcessEvents
| where SHA256 in (
    "2d5003d9318ae85eb22de99d19705a3cd7bf8e5c3349df979dfb3bdfa080908e", 
    "b588caa5365451a6c60fd73fec5b73f13ac41bcc2a3a3bed7244df5917a62f32",
    "be119a21bedc3a79bf4dea8bcf5adf18304997a01ea23e276b9c31be37b789ab"
)
| project Timestamp, DeviceName, ActionType, FileName, FolderPath, SHA256, InitiatingProcessAccountName

PowerShell Hunt Script

PowerShell
<#
.SYNOPSIS
    Hunt script for Phantom Stealer artifacts and credential harvesting indicators.
.DESCRIPTION
    Scans for Phantom Stealer file hashes and checks for suspicious process execution patterns.
#>

$PhantomHashes = @(
    "2d5003d9318ae85eb22de99d19705a3cd7bf8e5c3349df979dfb3bdfa080908e",
    "b588caa5365451a6c60fd73fec5b73f13ac41bcc2a3a3bed7244df5917a62f32",
    "be119a21bedc3a79bf4dea8bcf5adf18304997a01ea23e276b9c31be37b789ab",
    "382233c398cbc35dcee845ee17046815f37588a382a8106bfb9b0252ea803961"
)

Write-Host "[!] Hunting for Phantom Stealer Hashes..." -ForegroundColor Yellow

# Scan C: drive for known hashes (Recursive, skipping hidden/system dirs to speed up)
Get-ChildItem -Path "C:\Users" -Recurse -ErrorAction SilentlyContinue -File | ForEach-Object {
    $file = $_
    try {
        $hash = (Get-FileHash -Path $file.FullName -Algorithm SHA256 -ErrorAction Stop).Hash
        if ($PhantomHashes -contains $hash) {
            Write-Host "[+] MATCH FOUND: $($file.FullName)" -ForegroundColor Red
            Write-Host "    Hash: $hash"
        }
    } catch {
        # Ignore access errors
    }
}

Write-Host "[!] Checking for suspicious PowerShell processes (Steganography/DownloadString)..." -ForegroundColor Yellow

$SuspiciousProcs = Get-Process -Name powershell -ErrorAction SilentlyContinue | Where-Object { 
    $_.StartTime -gt (Get-Date).AddHours(-24) 
}

if ($SuspiciousProcs) {
    Write-Host "[+] Recent PowerShell processes found. Investigate command lines via EDR." -ForegroundColor Cyan
}

Response Priorities

  • Immediate: Block all IOCs associated with PasasteSinTAG (domain regex) and MacSync (file hashes) on perimeter gateways and EDR. Quarantine any devices matching Phantom Stealer hashes.
  • 24h: Conduct credential audits for users who may have interacted with the "Indian Tax" phishing campaign or accessed PasasteSinTAG domains. Force password resets and enable MFA for affected accounts.
  • 1 Week: Harden environments against MacSync vectors by blocking access to unauthorized software repositories and educating users on the risks of malvertising for AI tools.

Related Resources

Security Arsenal Incident Response Managed SOC & MDR Services AlertMonitor Threat Detection From The Dark Side Intel Hub

Is your security operations ready?

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