Activity for Nmap2Nagios

  • Stephen Heilbrouner Stephen Heilbrouner modified a comment on discussion Open Discussion

    To fix this error, I had to "protect" the three lines: next if ($nmap_host_ref->{'address'}->{'addr'} =~ /\.0$/); next if ($nmap_host_ref->{'address'}->{'addr'} =~ /\.255$/); next if ($nmap_host_ref->{'address'}->{'addr'} =~ /^([0-9A-F]{2}([:-]|$)){6}$/i); ... by putting this if-clause around them: if (ref($nmap_host_ref->{'address'}) ne 'ARRAY') { next if ($nmap_host_ref->{'address'}->{'addr'} =~ /\.0$/); next if ($nmap_host_ref->{'address'}->{'addr'} =~ /\.255$/); next if ($nmap_host_ref->{'address'}->{'addr'}...

  • Stephen Heilbrouner Stephen Heilbrouner posted a comment on discussion Open Discussion

    To fix this error, I had to "protect" the three lines: next if ($nmap_host_ref->{'address'}->{'addr'} =~ /\.0$/); next if ($nmap_host_ref->{'address'}->{'addr'} =~ /\.255$/); next if ($nmap_host_ref->{'address'}->{'addr'} =~ /^([0-9A-F]{2}([:-]|$)){6}$/i); ... by putting this if-clause around them: if (ref($nmap_host_ref->{'address'}) ne 'ARRAY') { next if ($nmap_host_ref->{'address'}->{'addr'} =~ /\.0$/); next if ($nmap_host_ref->{'address'}->{'addr'} =~ /\.255$/); next if ($nmap_host_ref->{'address'}->{'addr'}...

  • Wes Wes posted a comment on discussion Open Discussion

    I am getting the following error: ./nmap2nagios.pl -v -r vlan15.xml -o new.cfg Not...

1
MongoDB Logo MongoDB