- or download this
@snort =("large","packet","bad","traffic","inbound","attempt","web",
+"IIS","cmd.exe","cgi","access","multiple","decode");
- or download this
@snort = qw(large packet bad traffic inbound attempt web
IIS cmd.exe cgi access multiple decode);
- or download this
my @watcher = ( \@pix, \@denies);
...
my @global = @{$watcher[$i]};
- or download this
if($global[$x]=~/ZSP/i){
...
$global[$x]="";
$global[$x]=join(' ',@ret);
}
- or download this
if (my @ret = split /ZSP/, $global[$x]) {
$global[$x] = join ' ', @ret;
}
- or download this
foreach my $r (@spy) {
...
$fn++;
}
}