News· Last updated April 18, 2026

OFAC Issues 18 Designations in 4 Days: Sudan, Iran, Nicaragua, Counter-Narcotics — April 14-17, 2026

OFAC published sanctions updates on four consecutive days between April 14-17, 2026, covering Sudan, Iran, Nicaragua, counter-terrorism, and counter-narcotics programs. What compliance teams must update immediately.

OFAC Issues 18 Designations in 4 Days: Sudan, Iran, Nicaragua, Counter-Narcotics — April 14-17, 2026

The Office of Foreign Assets Control (OFAC) ended the week of April 14-17, 2026 with one of its most active designation sequences of the year, publishing sanctions list updates on four consecutive days across five distinct sanctions programs. Compliance teams that update their screening lists weekly rather than in real time may have missed one or more of these actions — exposing their organizations to liability under OFAC's strict liability enforcement framework.

According to OFAC's Recent Actions page, the sequence of updates covered:

DateProgramAction Type
April 14Counter NarcoticsDesignations
April 14Counter TerrorismDesignations
April 15Iran-relatedDesignations
April 15Counter TerrorismDesignations
April 16Nicaragua-relatedDesignations
April 17SudanDesignations

This four-day burst reflects the current enforcement posture of the Treasury Department, which has increasingly used rapid-fire designations to deny sanctioned networks time to restructure assets before screening systems can be updated.

Why Consecutive-Day Updates Matter for Compliance

OFAC's strict liability standard means that a company can face civil penalties for a sanctions violation even if it had no knowledge that the counterparty was designated. The only defense is a robust compliance program — and the cornerstone of that program is a sanctions screening system that reflects the current state of the SDN list, not last week's version.

When OFAC issues updates on consecutive days, organizations with daily batch screening run the risk of missing an interim designation. A counterparty added to the SDN list on April 14 would not be caught by a screening run that last pulled the list on April 13. If a payment to that counterparty settles on April 15 before the next batch run, the transaction is a violation regardless of intent.

The OFAC Compliance Guide published by SanctionsLawyers.net notes that OFAC penalties can reach up to $1.3 million per violation, with voluntary self-disclosure reducing exposure by up to 50% — but only if the organization discovers the violation independently and reports it before OFAC initiates an investigation.

A Closer Look at Each Program Area

Sudan Designations (April 17)

The Sudan program has been active since 1997 and targets individuals and entities connected to the Government of Sudan and affiliated armed groups. The April 17 additions reflect OFAC's continued focus on parties involved in the ongoing civil conflict, including financial facilitators and arms procurement networks.

Nicaragua-related sanctions under Executive Order 13851 target individuals undermining democratic institutions and human rights in Nicaragua. The April 16 designations continue a pattern of incremental additions targeting business interests connected to the Ortega government.

Iran-related designations are among the most operationally significant for financial institutions because the Iran sanctions program contains some of the broadest secondary sanctions provisions in OFAC's portfolio. Entities that conduct transactions with newly designated Iranian parties — even if those entities are not themselves subject to U.S. jurisdiction — may face secondary sanctions exposure.

Counter Terrorism Designations (April 14 and 15)

Counter terrorism designations under Executive Orders 13224 and 13886 cover a global network of individuals and organizations. Back-to-back counter terrorism updates on consecutive days are unusual and likely reflect coordinated intelligence-sharing with partner agencies.

Counter Narcotics Designations (April 14)

Counter narcotics designations under the NARCO sanctions program and the Foreign Narcotics Kingpin Designation Act target drug trafficking organizations and their financial networks. These designations frequently include shell companies and financial intermediaries that may appear in routine commercial transactions.

The Operational Challenge: Keeping Up With Real-Time Designations

OFAC does not operate on a predictable schedule. Some weeks see no updates; some weeks see multiple updates per day. The only reliable approach is real-time API integration with a sanctions data provider that monitors OFAC's publication feed and propagates updates within minutes of release.

Manual list downloads from the OFAC website — even when performed daily — introduce a structural lag that creates compliance exposure during high-activity periods like the week of April 14-17.

How SanctionShield AI Handles Real-Time Designation Updates

SanctionShield AI connects directly to OFAC's data sources and propagates list updates within minutes of publication. When OFAC published the Sudan, Iran, Nicaragua, counter-terrorism, and counter-narcotics designations this week, SanctionShield AI's SDN dataset was updated before most organizations had opened their morning compliance dashboards.

Real-time list updates: OFAC SDN, OFAC Consolidated List, OFAC non-SDN lists — updated within 15 minutes of publication.

Change notification API: Webhook support to notify your compliance team immediately when entities matching your customer or counterparty base appear on newly published lists.

Retroactive screening: Run historical transaction data against newly added entities to identify any prior exposures that occurred before the designation date.

import requests
 
def check_recent_ofac_additions(days_back: int = 7) -> list:
    """Retrieve entities added to OFAC lists in the past N days."""
    response = requests.get(
        "https://apivult.com/api/sanctionshield/recent-additions",
        headers={"X-RapidAPI-Key": "YOUR_API_KEY"},
        params={
            "days_back": days_back,
            "programs": ["SDN", "IRAN", "SUDAN", "NICARAGUA", "COUNTER_NARCOTICS", "SDGT"],
            "format": "structured"
        }
    )
    additions = response.json()["new_entities"]
    print(f"OFAC added {len(additions)} entities in the past {days_back} days")
    for entity in additions[:5]:
        print(f"  [{entity['program']}] {entity['name']} — added {entity['designation_date']}")
    return additions
 
def screen_counterparty(name: str, country: str = None) -> dict:
    """Real-time screen against current OFAC lists."""
    payload = {"query": name, "threshold": 0.82}
    if country:
        payload["country"] = country
    
    response = requests.post(
        "https://apivult.com/api/sanctionshield/screen",
        headers={"X-RapidAPI-Key": "YOUR_API_KEY"},
        json=payload
    )
    return response.json()
 
# Check what OFAC added this week
recent_additions = check_recent_ofac_additions(days_back=7)
 
# Screen a counterparty against the current list
result = screen_counterparty("Mohammed Al-Rashid Trading LLC", country="SD")
if result["match_found"]:
    print(f"ALERT: Sanctions match — {result['matched_entity']} ({result['program']})")

Immediate Action Items for Compliance Teams

Given the volume of OFAC activity this week, compliance teams should:

  1. Confirm your screening system updated for all five program areas by running a test screen against one of the newly designated entity names
  2. Review pending transactions involving Sudan, Nicaragua, Iran, or counterparties in counter-narcotics-risk jurisdictions against the updated lists
  3. Check your update frequency — if your system pulls lists daily, consider whether intraday updates are warranted during high-activity periods

The pace of OFAC designations in April 2026 is a reminder that sanctions compliance is a real-time problem, not a weekly one.

Sources