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