Module 0: ICS vs IT mindset(4/4)

Failure modes that cost lives: real cases

40 min5 min readRef: TRITON post-mortem; CISA ICS-CERT case files

title: "Failure modes that cost lives: real cases" duration: "40 min"

Why case studies matter

Theory tells you what could happen. Case studies tell you what did happen — and what the consequences looked like when they arrived not in a risk matrix but in a control room, an emergency ward, or a regulatory hearing.

This lesson examines four incidents where cybersecurity failures in industrial environments produced real-world harm. Each case maps back to specific IEC 62443 controls that, had they been in place, would have reduced or prevented the outcome.

Key takeaway

Study approach

For each case: understand the attack path, the physical consequence, and the IEC 62443 control gap. The quiz will test all three.

Case 1: Maroochy Shire sewage spill (2000)

What happened

A disgruntled former contractor used a stolen laptop and a radio transmitter to issue unauthorised commands to 150 sewage-pump stations in Queensland, Australia. Over three months he caused 800,000 litres of raw sewage to flood parks, creeks, and the grounds of a Hyatt Regency hotel.

Attack path

  1. Attacker obtained insider knowledge of the SCADA system during his employment.
  2. Used a commercially available radio modem to impersonate the central SCADA master.
  3. Sent pump-disable commands to remote telemetry units (RTUs).
  4. Alarms were generated but misattributed to equipment faults.

IEC 62443 control gaps

GapIEC 62443 control
No authentication on radio commandsFR 1 – Identification & Authentication (SR 1.1)
No revocation of former employee's accessFR 2 – Use Control (SR 2.1)
Alarms not correlated for cyber causeFR 6 – Timely Response to Events (SR 6.1)

Case 2: Davis-Besse nuclear plant worm (2003)

What happened

The Slammer worm entered the Davis-Besse nuclear power plant's corporate network, traversed an unsegmented bridge to the plant network, and disabled the Safety Parameter Display System (SPDS) for nearly five hours. Operators lost their primary dashboard for reactor safety status.

Attack path

  1. Worm entered through a contractor's VPN connection that bypassed the corporate firewall.
  2. Propagated via SQL Server vulnerability (MS02-039) to every reachable Windows host.
  3. Overwhelmed the SPDS server with traffic; the server crashed.
  4. No network segmentation between corporate and plant networks.

Physical consequence

The plant was in a scheduled outage, so no immediate safety risk. The NRC determined that if the plant had been operating, operators would have lost safety-critical instrumentation during any concurrent process upset.

IEC 62443 control gaps

  • No IDMZ between corporate and plant — violates the zone-and-conduit model (IEC 62443-3-2).
  • No VPN access control for contractor laptops — FR 1 (SR 1.2, remote access).
  • No patching programme for the SPDS server — FR 3 (SR 3.3, security patch management).

Case 3: German steel mill (2014)

What happened

The German Federal Office for Information Security (BSI) reported that attackers compromised a steel mill's corporate network via spear-phishing, then pivoted to the plant network. They gained control of furnace-management systems and prevented a controlled shutdown of a blast furnace, causing massive physical damage.

Attack path

Diagram

Physical consequence

An uncontrolled blast-furnace shutdown is one of the most expensive failures in heavy industry. Molten metal solidifies inside the vessel; the furnace must be rebuilt. The BSI described the damage as "massive."

IEC 62443 control gaps

  • Flat network between corporate and OT — no zone separation.
  • No MFA on engineering jump hosts — FR 1 (SR 1.7).
  • No application whitelisting on HMI — FR 3 (SR 3.2).
  • No network monitoring for lateral movement — FR 6 (SR 6.2).

Case 4: Oldsmar water treatment (2021)

What happened

An unknown actor remotely accessed the SCADA system at the Oldsmar, Florida water treatment plant and attempted to increase the sodium hydroxide (lye) dosage from 100 ppm to 11,100 ppm — a 111× increase that, if undetected, could have caused serious chemical burns to anyone drinking the water.

Attack path

  1. Attacker used TeamViewer installed on the HMI workstation for remote support.
  2. Shared password across multiple operators; no MFA.
  3. Attacker moved the mouse, changed the NaOH setpoint, and exited.
  4. An operator watching the screen noticed the mouse moving and reverted the change within minutes.

Worked example

The Oldsmar incident is often cited as "the attack that was caught by luck." A single operator happened to be watching the HMI at the exact moment the attacker changed the setpoint. No automated alert fired.

IEC 62443 control gaps

  • Remote-access tool with shared credentials — FR 1 (SR 1.1, SR 1.5).
  • No process-safety interlock on NaOH dosage — outside IEC 62443 scope but highlights the SIS gap.
  • No alarm on extreme setpoint change — FR 6 (SR 6.1).
  • No network segmentation — the HMI was directly reachable from the internet via TeamViewer.

Patterns across the cases

PatternCases where it appears
No network segmentation (flat network)All four
No authentication or weak authenticationMaroochy, Davis-Besse, Oldsmar
Remote access as the entry pointDavis-Besse, German steel mill, Oldsmar
Alarms missed or misattributedMaroochy, Davis-Besse, Oldsmar
Insider knowledge exploitedMaroochy
Phishing as initial accessGerman steel mill

Key takeaway

The recurring lesson

Network segmentation (zones and conduits) would have reduced the blast radius in every single case. It is the single highest-leverage control in ICS cybersecurity.

Key Takeaways

  1. Real ICS incidents have caused environmental damage, loss of safety instrumentation, physical destruction, and near-poisoning of a public water supply.
  2. The most common root cause is a flat network with no zone separation.
  3. Remote access without MFA is the most exploited entry point.
  4. Alarms that are not correlated for cyber causes are routinely missed.
  5. Every case maps to specific IEC 62443 Foundational Requirements that were not implemented.

Quick check

Pick any one of the four cases. Describe the single IEC 62443 control that, if implemented, would have had the greatest impact on preventing or containing the incident. Justify your choice in three sentences.

Knowledge Check

3 questions — test your understanding before moving on.

  1. Q1.What was the single most recurring root cause across the Maroochy Shire, Davis-Besse, German steel mill, and Oldsmar incidents?

    • Use of outdated encryption algorithms.
    • No network segmentation — flat networks allowed lateral movement.
    • Insufficient antivirus coverage on endpoints.
    • Lack of physical security at the plant perimeter.

    All four incidents involved flat networks with no zone separation. Network segmentation (zones and conduits) would have reduced the blast radius in every case and is the single highest-leverage control in ICS cybersecurity.

  2. Q2.In the Oldsmar water treatment attack, how was the attacker's setpoint change detected?

    • An automated alarm fired when the NaOH level exceeded safe thresholds.
    • The intrusion detection system flagged the anomalous command.
    • An operator who happened to be watching the HMI screen noticed the mouse moving.
    • The SIS safety trip shut down the dosing system.

    The Oldsmar attack was detected purely by luck — an operator happened to be watching the HMI at the exact moment the attacker moved the mouse and changed the setpoint. No automated alert fired, highlighting the critical gap in FR 6 (Timely Response to Events).

  3. Q3.Which IEC 62443 Foundational Requirement addresses the revocation of former employees' access, as exploited in the Maroochy Shire attack?

    • FR 3 — System Integrity
    • FR 5 — Restricted Data Flow
    • FR 2 — Use Control
    • FR 7 — Resource Availability

    FR 2 (Use Control) covers authorisation enforcement, including the management and revocation of access rights. The Maroochy Shire attacker exploited insider knowledge and credentials that were never revoked after his employment ended.