Iranian Hackers Are Quietly Targeting America’s Critical Infrastructure Through Internet-Exposed PLCs

Listen to this Post

Featured ImageIntroduction: A Silent Cyber Threat Against Critical Infrastructure

Cyberattacks against critical infrastructure are becoming more sophisticated every year, but the latest warning from U.S. federal agencies highlights a particularly alarming evolution. Instead of exploiting software vulnerabilities or deploying destructive malware, Iranian-affiliated threat actors are quietly abusing legitimate engineering tools and valid credentials to infiltrate industrial control systems (ICS). This approach allows attackers to blend seamlessly into normal maintenance operations while secretly manipulating the logic that controls essential services.

The updated Joint Cybersecurity Advisory (AA26-097A), revised on July 22, 2026, demonstrates that the threat extends far beyond isolated incidents. Government facilities, water treatment plants, energy providers, and industrial environments are all considered potential targets. The campaign reflects a broader shift in cyber warfare where operational technology (OT) has become one of the most attractive targets for nation-state attackers seeking strategic influence without launching conventional military operations.

Federal Agencies Expand Cybersecurity Warning

Six U.S. federal agencies—including CISA, the FBI, NSA, Department of Energy (DOE), Environmental Protection Agency (EPA), and U.S. Cyber Command—have jointly updated their cybersecurity advisory to warn organizations that Iranian-linked hackers are actively targeting internet-facing Programmable Logic Controllers (PLCs).

The original advisory, released in April 2026, primarily focused on a limited number of industrial devices. However, the July revision dramatically broadens both the scope of affected manufacturers and the techniques used by the attackers.

Unlike traditional cyberattacks that exploit software flaws, these operations depend on exposed industrial systems, weak remote-access configurations, and compromised legitimate credentials.

Attackers Behave Like Authorized Engineers

Perhaps the most concerning aspect of the campaign is that the attackers are not using sophisticated zero-day vulnerabilities.

Instead, they simply authenticate into exposed PLCs using legitimate engineering software—the exact applications used daily by industrial technicians.

From a monitoring perspective, the activity appears almost identical to normal maintenance.

Security tools may observe:

Authorized engineering sessions

Legitimate PLC programming software

Correct authentication credentials

Expected industrial communication protocols

Because nothing technically “looks malicious,” many organizations may never realize an attacker has already gained access.

Manipulating PLC Logic Without Detection

Once attackers establish access, they begin modifying the PLC logic responsible for controlling industrial processes.

In some documented incidents, the attackers also manipulated Human Machine Interface (HMI) displays, preventing operators from immediately noticing that equipment behavior had changed.

This creates a dangerous situation where:

Operators believe systems are functioning normally.

Industrial processes continue using altered logic.

Safety systems may behave unexpectedly.

Physical equipment can be damaged before alarms appear.

Rather than immediately shutting down operations, attackers can quietly influence industrial processes over extended periods.

A Major Evolution From the 2023 Campaign

Security researchers note significant differences between this campaign and Iranian attacks observed in 2023.

Earlier attacks against Unitronics PLCs relied heavily on default passwords and exposed devices. Those compromises were relatively simple and could often be mitigated by changing credentials.

The 2026 campaign demonstrates far greater operational maturity.

Attackers now use:

Valid credentials

Professional engineering software

Operational knowledge of industrial environments

Carefully timed logic modifications

Techniques designed to avoid operator suspicion

This represents a clear evolution from opportunistic intrusion toward long-term operational compromise.

More Industrial Vendors Now Included

The revised advisory expands the list of affected industrial equipment manufacturers.

Originally, the advisory focused primarily on:

Rockwell Automation

Allen-Bradley CompactLogix

Allen-Bradley Micro850

The updated version now includes additional major industrial automation vendors:

Siemens

Schneider Electric

This wider scope suggests the attackers possess expertise across multiple industrial control platforms rather than focusing on a single vendor ecosystem.

Supply Chain Risks Inside PLC Programming

One of the newest concerns highlighted in the advisory involves reusable PLC code modules.

Industrial environments frequently share standardized function blocks across hundreds—or even thousands—of PLCs.

If attackers modify one commonly reused module, every future deployment could inherit the malicious logic.

Unlike software supply-chain attacks targeting operating systems or applications, this type of compromise affects industrial automation directly.

A single modified logic block may quietly spread throughout an organization’s production environment without triggering traditional security alerts.

Network Exposure Remains the Biggest Weakness

Experts emphasize that these attacks are not exploiting an unpatched vulnerability.

Trend Micro notes that the root cause is poor architecture rather than defective software.

Common issues include:

PLCs directly connected to the public internet.

Weak remote-access policies.

Poor network segmentation.

Missing Multi-Factor Authentication (MFA).

Default or weak administrative credentials.

Public internet scans continue to reveal tens of thousands of industrial devices accessible from anywhere in the world.

Many remain exposed years after security guidance recommended their removal from public networks.

Industrial Protocols Used During the Attacks

Investigators observed malicious communications across several commonly used industrial communication ports.

These include:

TCP 22 – Secure Shell (SSH)

TCP 102 – Siemens S7comm (ISO-TSAP)

TCP 502 – Modbus TCP

TCP 2222

TCP 44818 – EtherNet/IP

Because these ports are routinely used in industrial environments, unusual traffic may blend into legitimate engineering operations unless organizations perform detailed behavioral analysis.

Recommended Mitigation Measures

Federal agencies recommend immediate defensive actions for organizations operating industrial control systems.

These include:

Remove PLCs from direct internet exposure.

Use secure VPNs or dedicated remote-access gateways.

Require Multi-Factor Authentication for engineering access.

Keep PLC physical mode switches in RUN mode during production.

Only enable PROGRAM or REMOTE modes during supervised maintenance.

Review firewall, VPN, and IDS logs for indicators of compromise.

Investigate unexpected engineering sessions from overseas infrastructure.

Monitor changes to PLC logic and project files.

Organizations should also verify that engineering workstations themselves are adequately protected, as compromised maintenance computers can become trusted entry points into operational technology environments.

Indicators of Compromise (IOCs)

The advisory publishes multiple defanged IP addresses and domains associated with command-and-control infrastructure used during the campaign.

Examples include:

185.82.73[.]175

141.11.164[.]153

175.110.121[.]42

79.133.46[.]209

88.80.150[.]199

135.136.1[.]133

ocferda[.]com

tylarion867mino[.]com

Administrators should only re-fang these indicators within trusted threat intelligence platforms such as MISP, VirusTotal, or enterprise SIEM solutions to avoid accidental connections.

Deep Analysis

This advisory reveals a fundamental change in how nation-state attackers approach operational technology. Instead of investing millions of dollars into discovering zero-day vulnerabilities, attackers increasingly exploit trust, poor architecture, and weak identity management. By leveraging valid credentials and authorized engineering software, they bypass many traditional detection methods that focus on malware signatures or exploit behavior.

Another critical observation is that industrial environments often prioritize operational uptime over cybersecurity. Many PLCs remain directly connected to the internet to simplify remote maintenance, unintentionally exposing highly sensitive systems. Once attackers gain legitimate access, they can modify process logic, alter operator displays, and potentially disrupt essential services while remaining virtually invisible.

Security teams should also recognize that OT monitoring differs significantly from traditional IT security. Detecting these attacks requires continuous verification of PLC logic, engineering workstation integrity, change management records, and behavioral analytics rather than relying solely on endpoint detection tools.

Useful Investigation Commands

Identify listening industrial ports

sudo ss -tulnp | egrep "22|102|502|2222|44818"

Search firewall logs for suspicious PLC connections

grep -Ei "102|502|44818|2222" /var/log/firewall.log

Detect outbound connections to suspicious IPs

sudo tcpdump -nn host 185.82.73.175

Scan internal network for exposed PLC services

nmap -Pn -sS -p 22,102,502,2222,44818 192.168.1.0/24

Verify remote sessions

last
who

Review authentication logs

sudo journalctl -u ssh

Capture industrial protocol traffic

sudo tcpdump -i eth0 port 502 -w modbus_capture.pcap
What Undercode Say:

The updated advisory should serve as a wake-up call for every organization operating industrial environments.

The attackers are no longer depending on software vulnerabilities.

They are exploiting trust.

This represents a major strategic evolution.

Traditional patch management alone cannot solve this problem.

Identity security has become just as important as vulnerability management.

Industrial control systems remain among the least monitored assets in many organizations.

Many companies still expose PLCs directly to the internet for convenience.

Remote maintenance remains one of the largest attack surfaces.

Legitimate engineering software has become an effective attack weapon.

Behavior-based detection will become increasingly important.

Security teams must continuously validate PLC programming changes.

Engineering workstations deserve the same protection as domain controllers.

Zero Trust principles should extend into operational technology.

Network segmentation is no longer optional.

Every engineering session should be logged and reviewed.

Privileged accounts should require MFA.

Remote vendor access must be tightly controlled.

Physical PLC mode switches remain an overlooked security control.

Supply-chain risks now include reusable PLC code modules.

Organizations should digitally sign approved PLC projects.

Configuration drift monitoring should become standard practice.

Industrial asset inventories need constant updates.

Threat hunting should include engineering software activity.

Traditional antivirus provides limited visibility into PLC manipulation.

Organizations should establish baseline PLC logic.

Unauthorized logic changes must trigger immediate investigations.

Continuous backup of PLC projects is essential.

Incident response plans should include OT environments.

Recovery exercises should test PLC restoration procedures.

Cross-functional collaboration between IT and OT teams is now critical.

Nation-state actors increasingly view infrastructure as strategic targets.

Future campaigns will likely expand beyond electricity and water systems.

Manufacturers should eliminate insecure default configurations.

Security features should never be premium add-ons.

Government advisories continue to emphasize architectural improvements over emergency patching.

Organizations that modernize remote-access security today will significantly reduce future risk.

Ignoring exposed industrial assets is becoming an unacceptable business risk.

Cyber resilience now depends as much on operational discipline as on technology.

✅ Fact: Six U.S. federal agencies jointly updated Advisory AA26-097A warning about Iranian-affiliated actors targeting internet-exposed PLCs. This aligns with the reported revision and reflects a coordinated government response.

✅ Fact: The attackers primarily use legitimate engineering software and valid credentials instead of exploiting software vulnerabilities. This makes the activity difficult to distinguish from authorized maintenance and represents a significant shift in attacker methodology.

✅ Fact: Removing PLCs from direct internet exposure, enforcing MFA, strengthening network segmentation, and monitoring engineering activity are among the primary mitigation recommendations. These measures address architectural weaknesses rather than relying solely on software patches.

Prediction

(+1) Industrial cybersecurity will experience a major transformation over the next several years as governments and critical infrastructure operators accelerate Zero Trust adoption, strengthen identity-based security, deploy continuous OT monitoring, and invest heavily in secure remote-access architectures. Organizations that proactively modernize their industrial environments will dramatically reduce the likelihood of successful nation-state intrusions while improving overall operational resilience against increasingly sophisticated cyber threats.

🕵️‍📝Let’s dive deep and fact‑check.

🎓 Live Courses & Certifications:

Join Undercode Academy for Verified Certifications

🚀 Request a Custom Project:

Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands

References:

Reported By: cyberpress.org
Extra Source Hub (Possible Sources for article):
https://www.instagram.com
Wikipedia
OpenAi & Undercode AI

Image Source:

Unsplash
Undercode AI DI v2

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeNews & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky | 🐘Mastodon | 📺Youtube