Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        if ( / ^ OVERVIEW \s $/x .. / ^ AFFECTED\ PRODUCTS \s $/x ) {
            print $_ unless /( ^ OVERVIEW \s $)|( ^ AFFECTED\ PRODUCTS \s 
    +$)/x;
        }
    }
    
  2. or download this
    This Updated Advisory is a follow-up to the original Advisory titled “
    +ICSA-11-273-03—Rockwell 
    RSLogix denial-of-Service Vulnerability” that was published September 
    +30, 2011 on the ICS-CERT web 
    ...
    Rockwell has produced a patch that mitigates this vulnerability for al
    +l affected versions of FactoryTalk 
    Services Platform and RSLogix 5000. 
    --------- End Update X Part 1 of 2 ----------
    
  3. or download this
    while (<>) {
        if ( / ( ^ OVERVIEW           \s $ ) /x
    ...
            say $_ unless $_ eq $1;
        }
    }