Help for this page

Select Code to Download


  1. or download this
    if ( $xc->findnodes( 'advisories/cve', $vuln )) {        
        for ( $xc->findvalue( 'advisories/cve', $vuln )) {
            push ( @cve_records, $_ );
        }
    }
    
  2. or download this
    for my $cve_node ($xc->findnodes('advisories/cve', $vuln)) {
        push @cve_records, $cve_node->textContent();
    }
    
  3. or download this
    $fnd_vuln_id = $_->findvalue('./@id');
    
  4. or download this
    my $fnd_vuln_id = $_->findvalue('./@id');
    
  5. or download this
    my $fnd_vuln_id = $_->findvalue('@id');
    
  6. or download this
    my $fnd_vuln_id = $_->getAttribute('id');