0
0
SCADA systemsdevops~10 mins

Patch management for SCADA in SCADA systems - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the command to check the current patch level on a SCADA system.

SCADA systems
scada-patch-manager --[1]
Drag options to blanks, or click blank then click option'
Ainstall
Bstatus
Cremove
Dupdate
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'install' instead of 'status' runs patch installation instead of checking.
Using 'remove' deletes patches, which is not the goal here.
2fill in blank
medium

Complete the command to apply a patch file named 'patch123.scd'.

SCADA systems
scada-patch-manager --[1] patch123.scd
Drag options to blanks, or click blank then click option'
Astatus
Bverify
Cinstall
Drollback
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'status' only shows patch info, does not apply patches.
Using 'rollback' tries to undo patches, not apply them.
3fill in blank
hard

Fix the error in the command to rollback the last patch.

SCADA systems
scada-patch-manager --[1] last
Drag options to blanks, or click blank then click option'
Arollback
Binstall
Cstatus
Dapply
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'install' tries to add a patch instead of undoing it.
Using 'status' only shows patch info, does not rollback.
4fill in blank
hard

Fill both blanks to create a command that lists all available patches and filters for critical ones.

SCADA systems
scada-patch-manager --[1] | grep [2]
Drag options to blanks, or click blank then click option'
Alist
Binstall
Ccritical
Drollback
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'install' instead of 'list' shows patch installation, not listing.
Using 'rollback' is for undoing patches, not listing.
5fill in blank
hard

Fill all three blanks to write a command that verifies a patch file, installs it if valid, and then checks the patch status.

SCADA systems
scada-patch-manager --[1] patch123.scd && scada-patch-manager --[2] patch123.scd && scada-patch-manager --[3]
Drag options to blanks, or click blank then click option'
Averify
Binstall
Cstatus
Drollback
Attempts:
3 left
💡 Hint
Common Mistakes
Skipping verification can cause errors if the patch is corrupted.
Checking status before installation does not confirm the new patch.