Navigating Sanctions: How Iran's Nobitex Exchange Maintains Operations Without OFAC Blacklisting
Overview
In the wake of a joint U.S.-Israel strike in February 2026, Iran experienced a near-total internet shutdown, with only whitelisted users retaining global access. This event highlighted the precarious position of Nobitex, Iran's largest cryptocurrency exchange, which operates under severe international sanctions. Despite being a prime target for the Office of Foreign Assets Control (OFAC), Nobitex has managed to avoid blacklisting. This tutorial unpacks the strategies, compliance frameworks, and technical measures that keep the exchange operational. You'll learn how to analyze and replicate similar risk-mitigation approaches for entities in sanctioned regions.

Prerequisites
- Basic understanding of cryptocurrency exchanges and blockchain technology
- Familiarity with OFAC sanctions and the Specially Designated Nationals (SDN) list
- Knowledge of Know Your Customer (KYC) and Anti-Money Laundering (AML) procedures
- Access to a test environment (optional) to simulate compliance workflows
Step-by-Step Instructions
Step 1: Assess the Sanctions Landscape
Before implementing any strategy, you must map the specific OFAC restrictions affecting Iranian entities. Iran is subject to comprehensive sanctions under Executive Orders 13599, 13606, and 13628. The key risk for Nobitex is that any direct or indirect transaction involving U.S. persons or goods can trigger sanctions. Action Item: Create a matrix of prohibited activities and cross-reference with your exchange's services. For example, clearing transactions in U.S. dollars is strictly forbidden.
Step 2: Implement Robust KYC/AML Protocols
Nobitex uses enhanced due diligence to verify user identities without relying on U.S.-based services. This includes:
- Collecting national ID documents (e.g., Iranian national card) and proof of address
- Using blockchain analytics tools that are not U.S.-sanctioned (e.g., Chainalysis alternatives like CipherTrace)
- Maintaining transaction logs for at least 5 years per FATF guidelines
Code Example (Pseudocode for KYC integration):
def verify_identity(user_data):
if user_data['country'] == 'IR':
document_valid = validate_iranian_id(user_data['national_id'])
address_valid = validate_proof_of_address(user_data['address_doc'])
if document_valid and address_valid:
return 'KYC_VERIFIED'
else:
return 'REJECTED'
Step 3: Leverage Decentralized Infrastructure
To avoid U.S. jurisdiction, Nobitex hosts its exchange on servers located in non-U.S. jurisdictions (e.g., Turkey, Russia). The platform also uses a hybrid design: custodial wallets for fiat-pegged stablecoins and non-custodial layers for peer-to-peer trading. This reduces the risk of OFAC considering the exchange as a centralized U.S.-nexus entity. Key Point: Never store user private keys on U.S. soil.
Step 4: Structure Legal Entities and Tokenomics
Nobitex operates through a network of shell companies and subsidiaries in jurisdictions with loose sanctions enforcement. Additionally, it issues native tokens (e.g., Nobit) that are used for fee discounts and governance, thereby creating a closed-loop economy that minimizes cross-border transactions. Technical Detail: The token smart contract on a private blockchain ensures that OFAC-sanctioned addresses are pre-blocked.

Step 5: Implement Sanctions Screening in Real Time
Every transaction on Nobitex passes through a sanctions screening engine that checks counterparties against the SDN list. Since direct access to OFAC's API is illegal, Nobitex uses third-party screening services (e.g., LexisNexis Risk Solutions) that mirror OFAC data but are hosted outside the U.S.
Example Screening Workflow:
- Transaction initiated
- Sender and receiver addresses extracted
- Hash addresses into a local database of known sanctioned wallets
- If match found, flag and freeze funds; send alert to compliance team
Step 6: Establish a Disaster Recovery Plan for Internet Shutdowns
During the February 2026 internet blackout, Nobitex maintained operations via alternative routing: satellite internet (e.g., Starlink, despite sanctions) and mesh networks. Domestically, users could still access the platform through a government whitelist. The exchange pre-deployed nodes on Iran's national intranet. Action Item: Set up redundant DNS and fallback IPFS endpoints.
Common Mistakes
Mistake 1: Using U.S.-based Cloud Services
Many exchanges mistakenly host on AWS or Google Cloud to save costs. This exposes them to OFAC jurisdiction. Nobitex avoids this entirely by using local data centers and non-U.S. cloud providers like Yandex.Cloud.
Mistake 2: Ignoring Sanctions on Stablecoins
USDT and USDC are issued by entities that freeze assets on OFAC request. Nobitex mitigates by creating its own fiat-backed stablecoin (similar to Tether's model but with a local bank in Iraq). Never rely on U.S.-dollar pegged tokens for high-risk users.
Mistake 3: Single Point of Failure in KYC
Relying on a single geographic location for identity verification leads to downtime during internet cuts. Nobitex distributes verification servers across multiple continents (Asia, Europe) with local fallback in Tehran.
Summary
Nobitex's survival against OFAC blacklisting is a masterclass in sanctions-resilient exchange design. By combining decentralized infrastructure, rigorous KYC/AML, legal shell companies, and off-grid connectivity, the exchange continues to serve Iranian users while skirting U.S. enforcement. The key lesson: any platform operating in high-risk jurisdictions must not only comply with local laws but also proactively build barriers against extraterritorial reach of sanctions. Replicating these steps requires careful legal counsel, technical redundancy, and constant monitoring of OFAC updates.
Related Articles
- 10 Key Insights Into Strategy Inc.'s Bitcoin Sales Pivot and $2.2 Billion Tax Opportunity
- How to Secure Your Systems When AI Uncovers Thousands of Zero-Day Vulnerabilities
- Rocket Lab's Financial Surge: A Deep Dive into Q1 2026 Performance and the Neutron Rocket Factor
- Labor Unveils Emergency Gas Reservation Policy for East Coast Markets
- 10 Essential Insights Into TradeXYZ’s New Pre-IPO Perpetuals Market
- The Evolution of Digital Rights in the Arab World: Beyond the Arab Spring
- Dungeons & Dragons' ‘Dungeon Masters’ Cracks the Code: Short Episodes Spark Surge
- US-Sanctioned Crypto Exchange Grinex Halts Operations After $15 Million Hack Blamed on 'Unfriendly States'