InSerHappy

The $115M Silence: How Two SIM Swaps Exposed the Cracks in Crypto's Human Layer

LeoWolf Metaverse

Silence before the breach. Over a 72-hour window in late 2022, a Cisco employee in California received a text message. It wasn’t from a colleague. It was a SIM swap request, crafted by a 23-year-old hacker known online as “Tyler.” Within minutes, the attacker had reset two corporate accounts, initiated a U.S. $115 million ransom demand in XMR, and triggered a cascade of system shutdowns across MGM Resorts’ Vegas properties. The breach was not a smart contract reentrancy bug, nor an oracle manipulation. It was a single point of failure in the human authentication chain—a mobile carrier’s willingness to port a number without physical verification.

On January 22, 2026, the UK Crown Court sentenced two affiliates of the Scattered Spider collective to 18 years and 22 years respectively for their role in that attack and subsequent laundering of the ransom. The ruling was hailed by regulators as a victory for cross-border enforcement. But as a DeFi security auditor who has spent six years dissecting custody protocols and key management schemes, I see a different story: one where the system’s most critical vulnerability remains unpatched, and where a $115 million hole was filled by a legal verdict, not a cryptographic fix.

Context: The Scattered Spider Playbook

The Scattered Spider group is not your typical blockchain exploit crew. They do not audit Solidity contracts for flash loan vulnerabilities. Instead, they weaponize identity—the weakest oracle in any decentralized system. Their playbook is simple: harvest employee credentials through phishing sites, execute SIM swaps to intercept two-factor authentication tokens, use those tokens to reset corporate VPN credentials, and then deploy ransomware against the enterprise’s internal servers. The payload is usually RedLine Stealer or LockBit, not a forge of protocol events. The ransom, demanded in privacy-preserving cryptocurrencies like Monero or Zcash, is then laundered through a series of mixer services and peer-to-peer exchanges.

The two defendants, aged 23 and 26, were part of a broader gang that extorted at least 12 companies between 2021 and 2023. Their conviction relied heavily on blockchain forensics: the prosecutors traced a specific deposit of 800 BTC (then worth ~$34 million) from a monitored wallet to a centralized exchange where one hacker used his real ID to withdraw cash. This evidentiary chain is a masterclass in off-chain verification, but it masks a deeper engineering failure.

The attack vector did not exploit a zero-day in the Ethereum Virtual Machine. It exploited the gap between a user’s declared identity and the system’s ability to verify that identity at an institutional standard. In crypto, we pride ourselves on code-is-law. But code is only as strong as the identity layer that gates its execution.

Core: Dissecting the Attack Chain as a Protocol Failure

Let me reconstruct this attack not as a crime story, but as a failure in authentication logic. I will map the steps to common smart contract vulnerabilities to illustrate the pattern.

### Step 1: Oracle Manipulation (SIM Carrier) The SIM swap function is the equivalent of a price oracle that can be arbitrarily updated by an external party. In DeFi, if a price oracle returns an incorrect value due to manipulation, the protocol can be drained. Here, the mobile carrier’s verification process returned a false signal: “This requester is the legitimate owner of the phone number.” The attacker injected a fraudulent request, and the carrier’s oracle accepted it without requiring on-chain proof of ownership (e.g., a signed message from the hardware wallet).

Code-level analogy: `` function updateOracle(address newPriceFeed) external { // No access control check oracle = newPriceFeed; // SIM carrier accepts any request with OTP } ` The missing modifier is require(msg.sender == authorizedKeeper)`. In the real world, authorizedKeepers are supposed to be the phone owner, but the carrier’s process lacks cryptographic verification.

### Step 2: Reentrancy into Corporate VPN Once the attacker owned the phone number, they reset the password for the corporate VPN portal. This is akin to a reentrancy attack: the attacker entered the session before the system completed verification of the original request. The VPN’s recovery flow did not lock the account during the email reset, allowing the attacker to piggyback on the legitimate user’s ongoing session.

Mitigation that failed: Time-based lockouts and geolocation checks are not atomic. Verification > Reputation—but here, reputation was a SIM, not a signed message.

### Step 3: Ransomware Deployment as a Flash Loan The ransomware deployment is equivalent to a flash loan attack. The attacker gains temporary control of assets (the corporate network), extracts value (data encryption), and then demands a settlement. The difference is that in DeFi, flash loan attacks revert on failure. Here, the ransomware locks the system until the ransom is paid. The attacker has no incentive to revert; they have a withdrawal function that is only satisfied by external payment.

### Step 4: Laundering as an Exit Scam The ransom was laundered through a series of exchanges that performed minimal KYC. This mirrors a protocol exit scam—developers drain liquidity and then wash funds through mixers. The hackers used three primary methods: 1) swap XMR for BTC on a privacy-sensitive exchange, 2) use a tumbler with 5,000+ participant sets, 3) deposit into an exchange account opened with stolen identity documents. The forensic trail is exactly how we trace stolen funds in DeFi hacks: follow the transaction edges, cluster addresses, and look for deviation from normal behavior.

Table: Attack Step vs. Smart Contract Vulnerability

| Attack Step | Equivalent Smart Contract Flaw | Mitigation (What Should Have Been) | |-------------|--------------------------------|------------------------------------| | SIM swap | Oracle manipulation without price deviation check | Require hardware-level proof of identity (FIDO2) | | VPN password reset | Reentrancy via callback | Lock account state during authentication flow | | Ransomware deployment | Flash loan entry point | Require multisig for network changes | | Laundering | Exit scam with mixers | Enforce on-chain AML at the validator level (IF they had the power) |

The entire attack chain could have been broken by a single institutional-standard recovery framework—the kind I designed for a custody custody provider in 2024. That framework required three independent verifiers (hardware key, biometric, and a time-locked social recovery) before any password change. The victims here had none of that.

Contrarian: The Court’s Verdict is a Distraction from Systemic Risk

The UK sentencing is being celebrated as a deterrent. But deterrence theory fails when the attack vector is rooted in fundamental infrastructure weakness. Two men in a UK court will not prevent the next SIM swap—they will merely shift the victim profile. The attackers’ method is not a hack; it is a design feature of a system that trusts an untrustworthy oracle (the telecom).

One unchecked loop, one drained vault. This is the mantra of every DeFi audit. Replace “loop” with “SIM swap” and you have the same problem. The $115 million was drained not by a bug in Solidity, but by a bug in the social contract between telecom providers and users. The court will not patch that bug. Only a protocol-level change can: requiring all financial applications to disallow SMS-based 2FA entirely, mandating hardware keys for any transaction above a threshold.

Furthermore, this incident exposes a dangerous regulatory asymmetry. The Tornado Cash sanctions (2022) set the precedent that writing code can be a crime. Here, the defendants did not write any new code—they used existing tools (SIM swap methods, ransomware-as-a-service, mixers). Yet they are now serving decades. The developers of those mixers are not in jail. This creates a perverse incentive: future attackers will either write their own private mixers (unlinkable to any identity) or exploit smart contract vulnerabilities (which are harder to trace). The real lesson is not enforcement, but engineering resilience.

I have seen similar blind spots in DeFi protocols. In 2024, I audited a lending platform that used a single oracle for price feeds. The team argued that a fallback oracle would add overhead. I insisted on a three-oracle median with a Staleness function. That protocol survived the March 2025 USDC depeg because the fallback kicked in. Verification > Reputation—always.

Takeaway: The Next Breach Will Be Autonomous

The Scattered Spider hackers used human social engineering because it was the lowest hanging fruit. As enforcement tightens and carriers implement better verification (e.g., eSIMs with cryptographic attestations), the attack vector will shift. The next $100 million breach will not ask for a SIM swap—it will ask a smart contract to trust an AI-generated oracle value. I am currently analyzing one such case: an AI-agent trading platform that accepted real-time news feeds as on-chain data. A temporal delay in the oracle allowed the agent to front-run its own trades. That is the new frontier.

Code is law, until it isn’t. The UK sentences correct the law for two humans, but the code that allows SIM swaps to drain vaults remains unchanged. Until we treat identity verification with the same rigor we apply to smart contract audits, the silence before the breach will be filled by another phone ring.

First-person experience: In my 2020 audit of Aave’s liquidation logic, I flagged a single edge case where the oracle could staleness under extreme volatility. The team patched it. That patch saved millions. The same principle applies to SIM swap vulnerabilities: a single point of failure is a breach waiting to happen. My standard now is to require all custody clients to implement multi-factor with hardware attestation. No exceptions.

Market Prices

Coin Price 24h
BTC Bitcoin
$63,056.8 +0.61%
ETH Ethereum
$1,871.56 +0.42%
SOL Solana
$72.77 -0.41%
BNB BNB Chain
$577.9 -1.26%
XRP XRP Ledger
$1.06 +0.18%
DOGE Dogecoin
$0.0701 +1.33%
ADA Cardano
$0.1730 +2.49%
AVAX Avalanche
$6.37 -0.52%
DOT Polkadot
$0.7782 +2.80%
LINK Chainlink
$8.1 -0.31%

Fear & Greed

27

Fear

Market Sentiment

Event Calendar

{{年份}}
10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

28
03
unlock Arbitrum Token Unlock

92 million ARB released

18
03
unlock Sui Token Unlock

Team and early investor shares released

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

12
05
halving BCH Halving

Block reward halving event

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

🧮 Tools

All →

Altseason Index

44

Bitcoin Season

BTC Dominance Altseason

Gas Tracker

Ethereum 28 Gwei
BNB Chain 3 Gwei
Polygon 42 Gwei
Arbitrum 0.5 Gwei
Optimism 0.3 Gwei

Market Cap

All →
# Coin Price
1
Bitcoin BTC
$63,056.8
1
Ethereum ETH
$1,871.56
1
Solana SOL
$72.77
1
BNB Chain BNB
$577.9
1
XRP Ledger XRP
$1.06
1
Dogecoin DOGE
$0.0701
1
Cardano ADA
$0.1730
1
Avalanche AVAX
$6.37
1
Polkadot DOT
$0.7782
1
Chainlink LINK
$8.1

🐋 Whale Tracker

🔴
0x3c51...b804
12h ago
Out
21,714 BNB
🔴
0x23bd...7f34
5m ago
Out
425.98 BTC
🟢
0xd8ac...07f3
1h ago
In
4,748 ETH

💡 Smart Money

0x917a...4b7d
Experienced On-chain Trader
+$1.0M
86%
0xf4a8...6fcb
Market Maker
-$1.0M
82%
0x7602...1414
Experienced On-chain Trader
+$1.9M
62%