PLC Tutorials

#7 PLC Best Practices – Validate and Alert for Paired Inputs/Outputs

If you have paired signals, ensure that both signals are not asserted together. Alarm the operator when input/output states occur that are physically not feasible.

Consider making paired signals independent or adding delay timers when toggling outputs could be damaging to actuators.

Security ObjectiveTarget Group
The integrity of PLC variables ResilienceProduct Supplier Integration / Maintenance Service Provider

Guidance

Paired inputs or outputs are those that physically cannot happen at the same time; they are mutually exclusive. Though paired signals cannot be asserted at the same time unless there is a failure or malicious activity, PLC programmers often do not prevent that assertion from happening.

Validation is easiest to directly do in the PLC because the PLC is aware of the process state or context. Paired signals are easier to recognize and track if they have sequential addresses (e.g., input 1 and input 2).

Another scenario where paired inputs or outputs could cause problems is when they are not asserted at the same time, but toggled quickly in a way that damages actuators.

Example

Examples of paired signals:

  1. START and STOP
  • Independent start & stop: Configure start and stop as discrete outputs instead of having a single output that can be toggled on/off. By design, this does not allow simultaneous triggers. For an attacker, it is way more complicated to rapidly toggle on / off if two different outputs have to be set.
  • Timer for restart: Also consider adding a timer for a re-start after a stop is issued to avoid rapid toggling off start/stop signals.

2. FORWARD and REVERSE

3. OPEN and CLOSE

Examples for toggling paired signals that could be damaging

If the PLC / MCC accepts a discrete input, this provides an easy option for an attacker to cause physical damage on actuators. The well-known scenario for toggling outputs to do damage would be an MCC, but this practice applies to all scenarios where toggling outputs could do damage.

A proof of concept where rapidly toggling outputs could cause real damage was the Aurora Generator Test in 2007 conducted by the Idaho National Laboratory, where toggling outputs out of sync caused circuit breaker damage.

Why?

Beneficial for…?Why?
        Security1. If PLC programs do not account for what is going to happen if both paired input signals are asserted at the same time, this is a good attack vector.

2. Both paired input signals being asserted is a warning that there is an operational error, programming error, or something malicious is going on.

3.  This avoids an attack scenario where physical damage can be caused to actuators.
  Reliability1. Paired input signals can point to a sensor being broken or mis-wired or that there is a mechanical problem like a stuck switch.

2. Quickly toggling start and stop could also be done by mistake, so this also prevents damage that might be done inadvertently.
Maintenance/

References

Standard/frameworkMapping
MITRE ATT&CK for ICSTactic: TA010 – Impair Process Control
Technique: T0836 – Modify Parameter, T0806 – Brute Force I/O
ISA 62443-3-3SR 3.5: Input Validation
SR 3.6: Deterministic Output
ISA 62443-4-2CR 3.5: Input Validation
CR 3.6: Deterministic Output
ISA 62443-4-1SI-2: Secure coding standards
SVV-1: Security requirements testing
MITRE CWECWE-754: Improper Check for Unusual or Exceptional Conditions

Source: PLC Security

You've successfully subscribed !
Share

Recent Articles

  • PLC Tutorials

PLC Example on Manufacturing Line Assembly

This PLC example on manufacturing line assembly is an intermediate-level PLC program prepared for the…

2 weeks ago
  • PLC Tutorials

PLC Programming Example with Pushbutton and Motor

In this article, you will learn the PLC programming example with pushbutton and motor control…

3 weeks ago
  • PLC Tutorials

Boolean Logic to PLC Programming

This article teaches how to convert Boolean logic to PLC programming ladder logic with the…

4 weeks ago
  • PLC Tutorials

PLC Programming Example on Timers Function Block

In this article, you will learn the PLC programming example on timers function block using…

3 weeks ago
  • PLC Tutorials

PLC Pump Control: 10 seconds ON & 20 seconds OFF

Design a program for PLC pump control such that the pump must be turned ON…

2 weeks ago
  • Common

Polyvinyl Alcohol in Oil Field

Polyvinyl alcohol (PVA) is a water-soluble and biodegradable synthetic polymer used in oil field cementing…

2 days ago