Demystifying ISA/IEC 62443 with Khalid Ansari

Listen to this Post

Featured Image
In this episode of the ICS Arabia Podcast, Khalid Ansari, an expert in ISA/IEC 62443, shares critical insights into OT security standards, certification processes, and emerging trends like Cyber-Informed Engineering (CIE) and AI applications in industrial cybersecurity.

📡 Watch the full episode here: https://lnkd.in/dR4792vJ

You Should Know:

1. Key ISA/IEC 62443 Commands & Tools

  • Risk Assessment Script (Python)
    import risk_assessment_lib as ral 
    assets = ral.load_ot_devices("plant_devices.csv") 
    threats = ral.analyze_threats(assets, framework="ISA-62443") 
    ral.generate_report(threats, format="pdf") 
    

  • Linux Security Hardening for ICS

    Disable unnecessary services 
    sudo systemctl disable telnet 
    sudo systemctl disable ftp
    
    Enable audit logging 
    sudo auditctl -a always,exit -F arch=b64 -S all -k ICS_SECURITY
    
    Check open ports 
    sudo netstat -tulnp | grep -E '62443|102' 
    

  1. Secure by Design & Default (Windows OT Systems)

– PowerShell for ICS Device Hardening

 Disable SMBv1 (Critical for OT systems) 
Disable-WindowsOptionalFeature -Online -FeatureName smb1protocol

Enable LSA Protection (Prevent credential theft) 
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Lsa" -Name "RunAsPPL" -Value 1

Enforce NTLMv2 only 
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Lsa" -Name "LmCompatibilityLevel" -Value 5 

3. AI/LLMs for 62443 Compliance