| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
#!/usr/bin/perl |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package Net::CVE; |
|
4
|
|
|
|
|
|
|
|
|
5
|
6
|
|
|
6
|
|
513372
|
use 5.014002; |
|
|
6
|
|
|
|
|
38
|
|
|
6
|
6
|
|
|
6
|
|
26
|
use warnings; |
|
|
6
|
|
|
|
|
7
|
|
|
|
6
|
|
|
|
|
182
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = "0.006"; # 20230606 |
|
9
|
|
|
|
|
|
|
|
|
10
|
6
|
|
|
6
|
|
27
|
use Carp; |
|
|
6
|
|
|
|
|
6
|
|
|
|
6
|
|
|
|
|
366
|
|
|
11
|
6
|
|
|
6
|
|
3654
|
use HTTP::Tiny; |
|
|
6
|
|
|
|
|
215807
|
|
|
|
6
|
|
|
|
|
209
|
|
|
12
|
6
|
|
|
6
|
|
2370
|
use JSON::MaybeXS; |
|
|
6
|
|
|
|
|
38654
|
|
|
|
6
|
|
|
|
|
310
|
|
|
13
|
6
|
|
|
6
|
|
39
|
use List::Util qw( first ); |
|
|
6
|
|
|
|
|
14
|
|
|
|
6
|
|
|
|
|
9370
|
|
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
# https://cveawg.mitre.org/api/cve/CVE-2022-26928 |
|
16
|
|
|
|
|
|
|
# But that is likely to change to cve.org |
|
17
|
|
|
|
|
|
|
|
|
18
|
1
|
|
|
1
|
0
|
4
|
sub Version { $VERSION } |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
sub new { |
|
21
|
21
|
|
|
21
|
1
|
3663
|
my $class = shift; |
|
22
|
21
|
|
|
|
|
109
|
my %r = ( |
|
23
|
|
|
|
|
|
|
url => "https://cveawg.mitre.org/api/cve", |
|
24
|
|
|
|
|
|
|
ua => undef, |
|
25
|
|
|
|
|
|
|
lang => "en", |
|
26
|
|
|
|
|
|
|
data => {}, |
|
27
|
|
|
|
|
|
|
diag => undef, |
|
28
|
|
|
|
|
|
|
); |
|
29
|
21
|
100
|
|
|
|
61
|
if (@_) { |
|
30
|
6
|
100
|
66
|
|
|
31
|
if (@_ == 1 && ref $_[0] eq "HASH") { |
|
|
|
50
|
|
|
|
|
|
|
31
|
1
|
|
|
|
|
1
|
$r{$_} = $_[0]{$_} for keys %{$_[0]}; |
|
|
1
|
|
|
|
|
6
|
|
|
32
|
|
|
|
|
|
|
} |
|
33
|
|
|
|
|
|
|
elsif (@_ == 2) { |
|
34
|
5
|
|
|
|
|
21
|
my %p = @_; |
|
35
|
5
|
|
|
|
|
26
|
$r{$_} = $p{$_} for keys %p; |
|
36
|
|
|
|
|
|
|
} |
|
37
|
|
|
|
|
|
|
} |
|
38
|
21
|
|
|
|
|
87
|
bless \%r => $class; |
|
39
|
|
|
|
|
|
|
} # new |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
sub diag { |
|
42
|
4
|
50
|
|
4
|
1
|
14
|
my $self = shift or return; |
|
43
|
4
|
50
|
|
|
|
13
|
ref $self or return; |
|
44
|
4
|
50
|
|
|
|
12
|
my $d = $self->{diag} or return; |
|
45
|
4
|
50
|
|
|
|
10
|
unless (defined wantarray) { # void context |
|
46
|
0
|
|
|
|
|
0
|
my $act = $d->{action}; |
|
47
|
|
|
|
|
|
|
warn "$act: ", |
|
48
|
0
|
|
|
|
|
0
|
(join " " => grep { length } $d->{status}, $d->{reason}), "\n"; |
|
|
0
|
|
|
|
|
0
|
|
|
49
|
0
|
|
|
|
|
0
|
$act =~ s/./ /g; |
|
50
|
0
|
0
|
|
|
|
0
|
warn "$act source = $d->{source}\n" if $d->{source}; |
|
51
|
0
|
0
|
|
|
|
0
|
warn "$act usage: $d->{usage}\n" if $d->{usage}; |
|
52
|
|
|
|
|
|
|
} |
|
53
|
4
|
|
|
|
|
23
|
return $d; |
|
54
|
|
|
|
|
|
|
} # diag |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
sub get { |
|
57
|
19
|
|
|
19
|
1
|
48
|
my ($self, $cve) = @_; |
|
58
|
19
|
100
|
|
|
|
57
|
ref $self or $self = __PACKAGE__->new (); |
|
59
|
19
|
|
|
|
|
44
|
$self->{data} = {}; |
|
60
|
19
|
|
|
|
|
43
|
$self->{diag} = undef; |
|
61
|
19
|
100
|
|
|
|
41
|
$cve or return $self; |
|
62
|
18
|
|
|
|
|
64
|
$cve =~ s/^(?=[0-9])/CVE-/; |
|
63
|
18
|
100
|
|
|
|
276
|
if ($cve =~ m/^CVE-[0-9]{4}-([0-9]+)$/) { |
|
|
|
100
|
|
|
|
|
|
|
64
|
5
|
|
33
|
|
|
52
|
$self->{ua} //= HTTP::Tiny->new (); |
|
65
|
5
|
|
|
|
|
512
|
my $url = join "/" => $self->{url}, $cve; |
|
66
|
5
|
|
|
|
|
128
|
my $r = $self->{ua}->get ($url); |
|
67
|
5
|
100
|
|
|
|
1702484
|
unless ($r->{success}) { |
|
68
|
|
|
|
|
|
|
# if pseudo-HTTP status code 599 and reason "Internal Exception" |
|
69
|
|
|
|
|
|
|
# the content field will contain the text of the error |
|
70
|
1
|
|
|
|
|
4
|
my $status = $r->{status}; |
|
71
|
2
|
|
|
|
|
8
|
my $reason = join ": " => grep { length } |
|
72
|
1
|
50
|
|
|
|
8
|
$r->{reason}, $status =~ m/^5[0-9][0-9]$/ ? $r->{content} : ""; |
|
73
|
|
|
|
|
|
|
$self->{diag} = { |
|
74
|
1
|
|
|
|
|
7
|
status => $status, |
|
75
|
|
|
|
|
|
|
reason => $reason, |
|
76
|
|
|
|
|
|
|
action => "get", |
|
77
|
|
|
|
|
|
|
source => $url, |
|
78
|
|
|
|
|
|
|
usage => undef, |
|
79
|
|
|
|
|
|
|
}; |
|
80
|
1
|
|
|
|
|
6
|
return $self; |
|
81
|
|
|
|
|
|
|
} |
|
82
|
4
|
|
|
|
|
425
|
$self->{data} = decode_json ($r->{content}); |
|
83
|
|
|
|
|
|
|
} |
|
84
|
|
|
|
|
|
|
elsif (-s $cve) { |
|
85
|
12
|
|
|
|
|
30
|
my $fh; |
|
86
|
12
|
50
|
|
4
|
|
357
|
unless (open $fh, "<:encoding(utf-8)", $cve) { |
|
|
4
|
|
|
|
|
26
|
|
|
|
4
|
|
|
|
|
4
|
|
|
|
4
|
|
|
|
|
27
|
|
|
87
|
|
|
|
|
|
|
$self->{diag} = { |
|
88
|
0
|
|
|
|
|
0
|
status => 0 + $!, |
|
89
|
|
|
|
|
|
|
reason => "$!", |
|
90
|
|
|
|
|
|
|
action => "get", |
|
91
|
|
|
|
|
|
|
source => $cve, |
|
92
|
|
|
|
|
|
|
usage => 'get ("cve-2022-26928.json")', |
|
93
|
|
|
|
|
|
|
}; |
|
94
|
0
|
|
|
|
|
0
|
return $self; |
|
95
|
|
|
|
|
|
|
} |
|
96
|
12
|
100
|
|
|
|
37474
|
unless (eval { $self->{data} = decode_json (do { local $/; <$fh> }); 1 }) { |
|
|
12
|
|
|
|
|
19
|
|
|
|
12
|
|
|
|
|
39
|
|
|
|
12
|
|
|
|
|
386
|
|
|
|
10
|
|
|
|
|
1066
|
|
|
97
|
|
|
|
|
|
|
$self->{diag} = { |
|
98
|
2
|
|
|
|
|
108
|
status => -2, |
|
99
|
|
|
|
|
|
|
reason => $@ =~ s{\s+at\s+\S+\s+line\s+\d+.*}{}rs, |
|
100
|
|
|
|
|
|
|
action => "decode_json", |
|
101
|
|
|
|
|
|
|
source => $cve, |
|
102
|
|
|
|
|
|
|
usage => undef, |
|
103
|
|
|
|
|
|
|
}; |
|
104
|
2
|
|
|
|
|
39
|
return $self; |
|
105
|
|
|
|
|
|
|
} |
|
106
|
10
|
|
|
|
|
139
|
close $fh; |
|
107
|
|
|
|
|
|
|
} |
|
108
|
|
|
|
|
|
|
else { |
|
109
|
|
|
|
|
|
|
#warn "Invalid CVE format: '$cve' - expected format CVE-2023-12345\n"; |
|
110
|
|
|
|
|
|
|
$self->{diag} = { |
|
111
|
1
|
|
|
|
|
16
|
status => -1, |
|
112
|
|
|
|
|
|
|
reason => "Invalid CVE format: '$cve'", |
|
113
|
|
|
|
|
|
|
action => "get", |
|
114
|
|
|
|
|
|
|
source => "tag", |
|
115
|
|
|
|
|
|
|
usage => 'get ("CVE-2022-26928")', |
|
116
|
|
|
|
|
|
|
}; |
|
117
|
1
|
|
|
|
|
4
|
return $self; |
|
118
|
|
|
|
|
|
|
} |
|
119
|
14
|
|
|
|
|
85
|
$self; |
|
120
|
|
|
|
|
|
|
} # get |
|
121
|
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
sub data { |
|
123
|
8
|
|
|
8
|
1
|
22
|
my $self = shift; |
|
124
|
8
|
100
|
|
|
|
27
|
ref $self or $self = __PACKAGE__->new (); |
|
125
|
8
|
100
|
|
|
|
28
|
@_ and $self->get (@_); |
|
126
|
8
|
|
|
|
|
47
|
$self->{data}; |
|
127
|
|
|
|
|
|
|
} # data |
|
128
|
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
sub summary { |
|
130
|
10
|
|
|
10
|
1
|
20
|
my $self = shift; |
|
131
|
10
|
100
|
|
|
|
32
|
ref $self or $self = __PACKAGE__->new (); |
|
132
|
10
|
100
|
|
|
|
31
|
@_ and $self->get (@_); |
|
133
|
10
|
50
|
|
|
|
28
|
my $j = $self->{data} or croak "summary only available after get"; |
|
134
|
10
|
50
|
|
|
|
26
|
my $cna = $j->{containers}{cna} or return +{}; |
|
135
|
|
|
|
|
|
|
#y $weak = ... weaknesses [{ description [{ lang => "en", value => "CWE-123"}] |
|
136
|
|
|
|
|
|
|
|
|
137
|
10
|
50
|
|
|
|
17
|
my $severity = join ", " => grep { length } map { $_->{cvssV3_1}{baseSeverity} } @{$cna->{metrics} || []}; |
|
|
10
|
|
|
|
|
27
|
|
|
|
10
|
|
|
|
|
29
|
|
|
|
10
|
|
|
|
|
28
|
|
|
138
|
10
|
50
|
|
|
|
21
|
my $score = join ", " => grep { length } map { $_->{cvssV3_1}{baseScore} } @{$cna->{metrics} || []}; |
|
|
10
|
|
|
|
|
25
|
|
|
|
10
|
|
|
|
|
23
|
|
|
|
10
|
|
|
|
|
24
|
|
|
139
|
|
|
|
|
|
|
|
|
140
|
10
|
|
|
|
|
15
|
my %desc; |
|
141
|
10
|
50
|
|
|
|
15
|
for (@{$cna->{descriptions} || []}) { |
|
|
10
|
|
|
|
|
27
|
|
|
142
|
30
|
50
|
|
|
|
47
|
my $d = $_->{value} or next; |
|
143
|
30
|
|
|
|
|
43
|
push @{$desc{$_->{lang}}} => $d; |
|
|
30
|
|
|
|
|
70
|
|
|
144
|
|
|
|
|
|
|
} |
|
145
|
10
|
|
|
|
|
40
|
my @lang = sort keys %desc; |
|
146
|
10
|
|
|
15
|
|
74
|
my $lang = first { m/\b $self->{lang} /ix } @lang; |
|
|
15
|
|
|
|
|
119
|
|
|
147
|
10
|
|
66
|
1
|
|
42
|
$lang //= first { m/\b en /ix } @lang; |
|
|
1
|
|
|
|
|
5
|
|
|
148
|
10
|
|
33
|
|
|
27
|
$lang //= $lang[0]; |
|
149
|
10
|
|
|
|
|
12
|
my $desc = join "\n" => @{$desc{$lang}}; |
|
|
10
|
|
|
|
|
28
|
|
|
150
|
|
|
|
|
|
|
|
|
151
|
10
|
|
|
|
|
15
|
my %problem; |
|
152
|
10
|
50
|
|
|
|
15
|
for (map { @{$_->{descriptions} || []} } @{$cna->{problemTypes} || []}) { |
|
|
10
|
50
|
|
|
|
12
|
|
|
|
10
|
|
|
|
|
34
|
|
|
|
10
|
|
|
|
|
24
|
|
|
153
|
22
|
50
|
|
|
|
39
|
my $d = $_->{description} or next; |
|
154
|
22
|
|
|
|
|
24
|
push @{$problem{$_->{lang}}} => $d; |
|
|
22
|
|
|
|
|
52
|
|
|
155
|
|
|
|
|
|
|
} |
|
156
|
10
|
|
|
|
|
33
|
@lang = sort keys %problem; |
|
157
|
10
|
|
|
13
|
|
47
|
$lang = first { m/\b $self->{lang} /ix } @lang; |
|
|
13
|
|
|
|
|
86
|
|
|
158
|
10
|
|
66
|
4
|
|
34
|
$lang //= first { m/\b en /ix } @lang; |
|
|
4
|
|
|
|
|
10
|
|
|
159
|
10
|
|
66
|
|
|
27
|
$lang //= $lang[0]; |
|
160
|
10
|
|
|
|
|
14
|
my $problem = join "\n" => @{$problem{$lang}}; |
|
|
10
|
|
|
|
|
23
|
|
|
161
|
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
{ id => $j->{cveMetadata}{cveId}, |
|
163
|
|
|
|
|
|
|
date => $j->{cveMetadata}{datePublished}, |
|
164
|
10
|
|
|
|
|
43
|
description => $desc, |
|
165
|
|
|
|
|
|
|
severity => lc $severity, |
|
166
|
|
|
|
|
|
|
score => $score, |
|
167
|
|
|
|
|
|
|
problem => $problem, |
|
168
|
|
|
|
|
|
|
product => [ $self->product ], |
|
169
|
|
|
|
|
|
|
vendor => [ $self->vendor ], |
|
170
|
|
|
|
|
|
|
platforms => [ $self->platforms ], |
|
171
|
|
|
|
|
|
|
status => $self->status, |
|
172
|
|
|
|
|
|
|
}; |
|
173
|
|
|
|
|
|
|
} # summary |
|
174
|
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
sub status { |
|
176
|
10
|
|
|
10
|
1
|
14
|
my $self = shift; |
|
177
|
10
|
50
|
|
|
|
20
|
@_ and $self->get (@_); |
|
178
|
10
|
50
|
|
|
|
26
|
my $j = $self->{data} or croak "status only available after get"; |
|
179
|
10
|
|
|
|
|
123
|
$j->{cveMetadata}{state}; |
|
180
|
|
|
|
|
|
|
} # status |
|
181
|
|
|
|
|
|
|
|
|
182
|
|
|
|
|
|
|
sub _affected_tag { |
|
183
|
20
|
|
|
20
|
|
976
|
my ($self, $tag) = @_; |
|
184
|
20
|
50
|
|
|
|
38
|
my $j = $self->{data} or croak "$tag only available after get"; |
|
185
|
20
|
50
|
|
|
|
86
|
my $cna = $j->{containers}{cna} or return; |
|
186
|
20
|
50
|
|
|
|
22
|
my %v = map { $_->{$tag} => 1 } @{$cna->{affected} || []}; |
|
|
128
|
|
|
|
|
225
|
|
|
|
20
|
|
|
|
|
52
|
|
|
187
|
20
|
|
|
|
|
79
|
my @v = sort keys %v; |
|
188
|
20
|
50
|
|
|
|
510
|
return wantarray ? @v : join ", " => @v; |
|
189
|
|
|
|
|
|
|
} # _affected_tag |
|
190
|
|
|
|
|
|
|
|
|
191
|
|
|
|
|
|
|
sub _affected_tag_a { |
|
192
|
10
|
|
|
10
|
|
17
|
my ($self, $tag) = @_; |
|
193
|
10
|
50
|
|
|
|
23
|
my $j = $self->{data} or croak "$tag only available after get"; |
|
194
|
10
|
50
|
|
|
|
22
|
my $cna = $j->{containers}{cna} or return; |
|
195
|
124
|
50
|
|
|
|
196
|
my %v = map { $_ => 1 } map { @{$_ || []} } map { $_->{$tag} } |
|
|
64
|
|
|
|
|
61
|
|
|
|
64
|
|
|
|
|
124
|
|
|
|
64
|
|
|
|
|
76
|
|
|
196
|
10
|
50
|
|
|
|
14
|
@{$cna->{affected} || []}; |
|
|
10
|
|
|
|
|
20
|
|
|
197
|
10
|
|
|
|
|
54
|
my @v = sort keys %v; |
|
198
|
10
|
50
|
|
|
|
49
|
return wantarray ? @v : join ", " => @v; |
|
199
|
|
|
|
|
|
|
} # _affected_tag_a |
|
200
|
|
|
|
|
|
|
|
|
201
|
|
|
|
|
|
|
sub platforms { |
|
202
|
10
|
|
|
10
|
1
|
13
|
my $self = shift; |
|
203
|
10
|
50
|
|
|
|
22
|
@_ and $self->get (@_); |
|
204
|
10
|
|
|
|
|
22
|
$self->_affected_tag_a ("platforms"); |
|
205
|
|
|
|
|
|
|
} # platforms |
|
206
|
|
|
|
|
|
|
|
|
207
|
|
|
|
|
|
|
sub vendor { |
|
208
|
10
|
|
|
10
|
1
|
25
|
my $self = shift; |
|
209
|
10
|
50
|
|
|
|
18
|
@_ and $self->get (@_); |
|
210
|
10
|
|
|
|
|
19
|
$self->_affected_tag ("vendor"); |
|
211
|
|
|
|
|
|
|
} # vendor |
|
212
|
|
|
|
|
|
|
|
|
213
|
|
|
|
|
|
|
sub product { |
|
214
|
10
|
|
|
10
|
1
|
15
|
my $self = shift; |
|
215
|
10
|
50
|
|
|
|
27
|
@_ and $self->get (@_); |
|
216
|
10
|
|
|
|
|
28
|
$self->_affected_tag ("product"); |
|
217
|
|
|
|
|
|
|
} # vendor |
|
218
|
|
|
|
|
|
|
|
|
219
|
|
|
|
|
|
|
1; |
|
220
|
|
|
|
|
|
|
|
|
221
|
|
|
|
|
|
|
__END__ |
|
222
|
|
|
|
|
|
|
|
|
223
|
|
|
|
|
|
|
=head1 NAME |
|
224
|
|
|
|
|
|
|
|
|
225
|
|
|
|
|
|
|
Net::CVE - Fetch CVE (Common Vulnerabilities and Exposures) information from cve.org |
|
226
|
|
|
|
|
|
|
|
|
227
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
228
|
|
|
|
|
|
|
|
|
229
|
|
|
|
|
|
|
use Net::CVE; |
|
230
|
|
|
|
|
|
|
|
|
231
|
|
|
|
|
|
|
my $cr = Net::CVE->new (); |
|
232
|
|
|
|
|
|
|
|
|
233
|
|
|
|
|
|
|
$cr->get ("CVE-2022-26928"); |
|
234
|
|
|
|
|
|
|
my $full_report = $cr->data; |
|
235
|
|
|
|
|
|
|
my $summary = $cr->summary; |
|
236
|
|
|
|
|
|
|
|
|
237
|
|
|
|
|
|
|
$cr->diag; |
|
238
|
|
|
|
|
|
|
|
|
239
|
|
|
|
|
|
|
use Data::Peek; |
|
240
|
|
|
|
|
|
|
DDumper $cr->summary ("CVE-2022-26928"); |
|
241
|
|
|
|
|
|
|
|
|
242
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
243
|
|
|
|
|
|
|
|
|
244
|
|
|
|
|
|
|
This module provides a Perl interface to retrieve information from the |
|
245
|
|
|
|
|
|
|
L<CVE database|https://www.cve.org/Downloads> provided by L<https://cve.org> |
|
246
|
|
|
|
|
|
|
based on a CVE tag. |
|
247
|
|
|
|
|
|
|
|
|
248
|
|
|
|
|
|
|
=head1 METHODS |
|
249
|
|
|
|
|
|
|
|
|
250
|
|
|
|
|
|
|
=head2 new |
|
251
|
|
|
|
|
|
|
|
|
252
|
|
|
|
|
|
|
my $reporter = CVE->new ( |
|
253
|
|
|
|
|
|
|
url => "https://cveawg.mitre.org/api/cve", |
|
254
|
|
|
|
|
|
|
ua => undef, |
|
255
|
|
|
|
|
|
|
lang => "en", |
|
256
|
|
|
|
|
|
|
); |
|
257
|
|
|
|
|
|
|
|
|
258
|
|
|
|
|
|
|
Instantiates a new object. All attributes are optional. |
|
259
|
|
|
|
|
|
|
|
|
260
|
|
|
|
|
|
|
=over 2 |
|
261
|
|
|
|
|
|
|
|
|
262
|
|
|
|
|
|
|
=item url |
|
263
|
|
|
|
|
|
|
|
|
264
|
|
|
|
|
|
|
Base url for REST API |
|
265
|
|
|
|
|
|
|
|
|
266
|
|
|
|
|
|
|
=item ua |
|
267
|
|
|
|
|
|
|
|
|
268
|
|
|
|
|
|
|
User agent. Needs to know about C<< ->get >>. Defaults to L<HTTP::Tiny>. |
|
269
|
|
|
|
|
|
|
Initialized on first use. |
|
270
|
|
|
|
|
|
|
|
|
271
|
|
|
|
|
|
|
my $reporter = CVE->new (ua => HTTP::Tiny->new); |
|
272
|
|
|
|
|
|
|
|
|
273
|
|
|
|
|
|
|
Other agents not yet tested, so they might fail. |
|
274
|
|
|
|
|
|
|
|
|
275
|
|
|
|
|
|
|
=item lang |
|
276
|
|
|
|
|
|
|
|
|
277
|
|
|
|
|
|
|
Set preferred language for L</summary>. Defaults to C<en>. |
|
278
|
|
|
|
|
|
|
|
|
279
|
|
|
|
|
|
|
If the preferred language is present in descriptions use that. If it is not, use |
|
280
|
|
|
|
|
|
|
C<en>. If that is also not present, use the first language found. |
|
281
|
|
|
|
|
|
|
|
|
282
|
|
|
|
|
|
|
=back |
|
283
|
|
|
|
|
|
|
|
|
284
|
|
|
|
|
|
|
=head2 get |
|
285
|
|
|
|
|
|
|
|
|
286
|
|
|
|
|
|
|
$reporter->get ("CVE-2022-26928"); |
|
287
|
|
|
|
|
|
|
$reporter->get ("2022-26928"); |
|
288
|
|
|
|
|
|
|
$reporter->get ("Files/CVE-2022-26928.json"); |
|
289
|
|
|
|
|
|
|
|
|
290
|
|
|
|
|
|
|
Fetches the CVE data for a given tag. On success stores the results internally. |
|
291
|
|
|
|
|
|
|
Returns the object. The leading C<CVE-> is optional. |
|
292
|
|
|
|
|
|
|
|
|
293
|
|
|
|
|
|
|
If the argument is a non-empty file, that is parsed instead of fetching the |
|
294
|
|
|
|
|
|
|
information from the internet. |
|
295
|
|
|
|
|
|
|
|
|
296
|
|
|
|
|
|
|
The decoded information is stored internally and will be re-used for other |
|
297
|
|
|
|
|
|
|
methods. |
|
298
|
|
|
|
|
|
|
|
|
299
|
|
|
|
|
|
|
C<get> returns the object and allows to omit a call to C<new> which will be |
|
300
|
|
|
|
|
|
|
implicit but does not allow attributes |
|
301
|
|
|
|
|
|
|
|
|
302
|
|
|
|
|
|
|
my $reporter = Net::CVE->get ("2022-26928"); |
|
303
|
|
|
|
|
|
|
|
|
304
|
|
|
|
|
|
|
is a shortcut to |
|
305
|
|
|
|
|
|
|
|
|
306
|
|
|
|
|
|
|
my $reporter = Net::CVE->new->get ("2022-26928"); |
|
307
|
|
|
|
|
|
|
|
|
308
|
|
|
|
|
|
|
=head2 data |
|
309
|
|
|
|
|
|
|
|
|
310
|
|
|
|
|
|
|
my $info = $reporter->data; |
|
311
|
|
|
|
|
|
|
|
|
312
|
|
|
|
|
|
|
Returns the data structure from the last successful fetch, C<undef> if none. |
|
313
|
|
|
|
|
|
|
|
|
314
|
|
|
|
|
|
|
Giving an argument enables you to skip the L</get> call, which is implicit, so |
|
315
|
|
|
|
|
|
|
|
|
316
|
|
|
|
|
|
|
my $info = $reporter->data ("CVE-2022-26928"); |
|
317
|
|
|
|
|
|
|
|
|
318
|
|
|
|
|
|
|
is identical to |
|
319
|
|
|
|
|
|
|
|
|
320
|
|
|
|
|
|
|
my $info = $reporter->get ("CVE-2022-26928")->data; |
|
321
|
|
|
|
|
|
|
|
|
322
|
|
|
|
|
|
|
or |
|
323
|
|
|
|
|
|
|
|
|
324
|
|
|
|
|
|
|
$reporter->get ("CVE-2022-26928"); |
|
325
|
|
|
|
|
|
|
my $info = $reporter->data; |
|
326
|
|
|
|
|
|
|
|
|
327
|
|
|
|
|
|
|
or even, whithout an object |
|
328
|
|
|
|
|
|
|
|
|
329
|
|
|
|
|
|
|
my $info = Net::CVE->data ("CVE-2022-26928"); |
|
330
|
|
|
|
|
|
|
|
|
331
|
|
|
|
|
|
|
=head2 summary |
|
332
|
|
|
|
|
|
|
|
|
333
|
|
|
|
|
|
|
my $info = $reporter->summary; |
|
334
|
|
|
|
|
|
|
my $info = $reporter->summary ("CVE-2022-26928"); |
|
335
|
|
|
|
|
|
|
|
|
336
|
|
|
|
|
|
|
Returns a hashref with basic information from the last successful fetch, |
|
337
|
|
|
|
|
|
|
C<undef> if none. |
|
338
|
|
|
|
|
|
|
|
|
339
|
|
|
|
|
|
|
Giving an argument enables you to skip the L</get> call, which is implicit, so |
|
340
|
|
|
|
|
|
|
|
|
341
|
|
|
|
|
|
|
my $info = $reporter->summary ("CVE-2022-26928"); |
|
342
|
|
|
|
|
|
|
|
|
343
|
|
|
|
|
|
|
is identical to |
|
344
|
|
|
|
|
|
|
|
|
345
|
|
|
|
|
|
|
my $info = $reporter->get ("CVE-2022-26928")->summary; |
|
346
|
|
|
|
|
|
|
|
|
347
|
|
|
|
|
|
|
or |
|
348
|
|
|
|
|
|
|
|
|
349
|
|
|
|
|
|
|
$reporter->get ("CVE-2022-26928"); |
|
350
|
|
|
|
|
|
|
my $info = $reporter->summary; |
|
351
|
|
|
|
|
|
|
|
|
352
|
|
|
|
|
|
|
or even, whithout an object |
|
353
|
|
|
|
|
|
|
|
|
354
|
|
|
|
|
|
|
my $info = Net::CVE->summary ("CVE-2022-26928"); |
|
355
|
|
|
|
|
|
|
|
|
356
|
|
|
|
|
|
|
The returned hash looks somewhat like this |
|
357
|
|
|
|
|
|
|
|
|
358
|
|
|
|
|
|
|
{ date => "2022-09-13T18:41:25", |
|
359
|
|
|
|
|
|
|
description => "Windows Photo Import API Elevation of Privilege Vulnerability", |
|
360
|
|
|
|
|
|
|
id => "CVE-2022-26928", |
|
361
|
|
|
|
|
|
|
problem => "Elevation of Privilege", |
|
362
|
|
|
|
|
|
|
score => "7", |
|
363
|
|
|
|
|
|
|
severity => "high", |
|
364
|
|
|
|
|
|
|
status => "PUBLISHED", |
|
365
|
|
|
|
|
|
|
vendor => [ "Microsoft" ] |
|
366
|
|
|
|
|
|
|
platforms => [ "32-bit Systems", |
|
367
|
|
|
|
|
|
|
"ARM64-based Systems", |
|
368
|
|
|
|
|
|
|
"x64-based Systems", |
|
369
|
|
|
|
|
|
|
], |
|
370
|
|
|
|
|
|
|
product => [ |
|
371
|
|
|
|
|
|
|
"Windows 10 Version 1507", |
|
372
|
|
|
|
|
|
|
"Windows 10 Version 1607", |
|
373
|
|
|
|
|
|
|
"Windows 10 Version 1809", |
|
374
|
|
|
|
|
|
|
"Windows 10 Version 20H2", |
|
375
|
|
|
|
|
|
|
"Windows 10 Version 21H1", |
|
376
|
|
|
|
|
|
|
"Windows 10 Version 21H2", |
|
377
|
|
|
|
|
|
|
"Windows 11 version 21H2", |
|
378
|
|
|
|
|
|
|
"Windows Server 2016", |
|
379
|
|
|
|
|
|
|
"Windows Server 2019", |
|
380
|
|
|
|
|
|
|
"Windows Server 2022", |
|
381
|
|
|
|
|
|
|
], |
|
382
|
|
|
|
|
|
|
} |
|
383
|
|
|
|
|
|
|
|
|
384
|
|
|
|
|
|
|
As this is work in progress, likely to be changed |
|
385
|
|
|
|
|
|
|
|
|
386
|
|
|
|
|
|
|
=head2 status |
|
387
|
|
|
|
|
|
|
|
|
388
|
|
|
|
|
|
|
my $status = $reporter->status; |
|
389
|
|
|
|
|
|
|
|
|
390
|
|
|
|
|
|
|
Returns the status of the CVE, most likely C<PUBLISHED>. |
|
391
|
|
|
|
|
|
|
|
|
392
|
|
|
|
|
|
|
=head2 vendor |
|
393
|
|
|
|
|
|
|
|
|
394
|
|
|
|
|
|
|
my @vendor = $reporter->vendor; |
|
395
|
|
|
|
|
|
|
my $vendors = $reporter->vendor; |
|
396
|
|
|
|
|
|
|
|
|
397
|
|
|
|
|
|
|
Returns the list of vendors for the affected parts of the CVE. In scalar |
|
398
|
|
|
|
|
|
|
context a string where the (sorted) list of unique vendors is joined by |
|
399
|
|
|
|
|
|
|
C<, > in list context the (sorted) list itself. |
|
400
|
|
|
|
|
|
|
|
|
401
|
|
|
|
|
|
|
=head2 product |
|
402
|
|
|
|
|
|
|
|
|
403
|
|
|
|
|
|
|
my @product = $reporter->product; |
|
404
|
|
|
|
|
|
|
my $products = $reporter->product; |
|
405
|
|
|
|
|
|
|
|
|
406
|
|
|
|
|
|
|
Returns the list of products for the affected parts of the CVE. In scalar |
|
407
|
|
|
|
|
|
|
context a string where the (sorted) list of unique products is joined by |
|
408
|
|
|
|
|
|
|
C<, > in list context the (sorted) list itself. |
|
409
|
|
|
|
|
|
|
|
|
410
|
|
|
|
|
|
|
=head2 platforms |
|
411
|
|
|
|
|
|
|
|
|
412
|
|
|
|
|
|
|
my @platform = $reporter->platforms; |
|
413
|
|
|
|
|
|
|
my $platforms = $reporter->platforms; |
|
414
|
|
|
|
|
|
|
|
|
415
|
|
|
|
|
|
|
Returns the list of platforms for the affected parts of the CVE. In scalar |
|
416
|
|
|
|
|
|
|
context a string where the (sorted) list of unique platforms is joined by |
|
417
|
|
|
|
|
|
|
C<, > in list context the (sorted) list itself. |
|
418
|
|
|
|
|
|
|
|
|
419
|
|
|
|
|
|
|
=head2 diag |
|
420
|
|
|
|
|
|
|
|
|
421
|
|
|
|
|
|
|
$reporter->diag; |
|
422
|
|
|
|
|
|
|
my $diag = $reporter->diag; |
|
423
|
|
|
|
|
|
|
|
|
424
|
|
|
|
|
|
|
If an error occured, returns information about the error. In void context |
|
425
|
|
|
|
|
|
|
prints the diagnostics using C<warn>. The diagnostics - if any - will be |
|
426
|
|
|
|
|
|
|
returned in a hashref with the following fields: |
|
427
|
|
|
|
|
|
|
|
|
428
|
|
|
|
|
|
|
=over 2 |
|
429
|
|
|
|
|
|
|
|
|
430
|
|
|
|
|
|
|
=item status |
|
431
|
|
|
|
|
|
|
|
|
432
|
|
|
|
|
|
|
Status code |
|
433
|
|
|
|
|
|
|
|
|
434
|
|
|
|
|
|
|
=item reason |
|
435
|
|
|
|
|
|
|
|
|
436
|
|
|
|
|
|
|
Failure reason |
|
437
|
|
|
|
|
|
|
|
|
438
|
|
|
|
|
|
|
=item action |
|
439
|
|
|
|
|
|
|
|
|
440
|
|
|
|
|
|
|
Tag of where the failure occured |
|
441
|
|
|
|
|
|
|
|
|
442
|
|
|
|
|
|
|
=item source |
|
443
|
|
|
|
|
|
|
|
|
444
|
|
|
|
|
|
|
The URL or filename leading to the failure |
|
445
|
|
|
|
|
|
|
|
|
446
|
|
|
|
|
|
|
=item usage |
|
447
|
|
|
|
|
|
|
|
|
448
|
|
|
|
|
|
|
Help message |
|
449
|
|
|
|
|
|
|
|
|
450
|
|
|
|
|
|
|
=back |
|
451
|
|
|
|
|
|
|
|
|
452
|
|
|
|
|
|
|
Only the C<action> field is guaranteed to be set, all others are optional. |
|
453
|
|
|
|
|
|
|
|
|
454
|
|
|
|
|
|
|
=head1 BUGS |
|
455
|
|
|
|
|
|
|
|
|
456
|
|
|
|
|
|
|
None so far |
|
457
|
|
|
|
|
|
|
|
|
458
|
|
|
|
|
|
|
=head1 TODO |
|
459
|
|
|
|
|
|
|
|
|
460
|
|
|
|
|
|
|
=over 2 |
|
461
|
|
|
|
|
|
|
|
|
462
|
|
|
|
|
|
|
=item Better error reporting |
|
463
|
|
|
|
|
|
|
|
|
464
|
|
|
|
|
|
|
Obviously |
|
465
|
|
|
|
|
|
|
|
|
466
|
|
|
|
|
|
|
=item Tests |
|
467
|
|
|
|
|
|
|
|
|
468
|
|
|
|
|
|
|
There are none yet |
|
469
|
|
|
|
|
|
|
|
|
470
|
|
|
|
|
|
|
=item Meta-stuff |
|
471
|
|
|
|
|
|
|
|
|
472
|
|
|
|
|
|
|
Readme, Changelog, Makefile.PL, ... |
|
473
|
|
|
|
|
|
|
|
|
474
|
|
|
|
|
|
|
=item Fallback to Net::NVD |
|
475
|
|
|
|
|
|
|
|
|
476
|
|
|
|
|
|
|
Optionally. It does not (yet) provide vendor, product and platforms. |
|
477
|
|
|
|
|
|
|
It however provides nice search capabilities. |
|
478
|
|
|
|
|
|
|
|
|
479
|
|
|
|
|
|
|
=item RHSA support |
|
480
|
|
|
|
|
|
|
|
|
481
|
|
|
|
|
|
|
Extend to return results for C<RHSA-2023:1791> type vulnerability tags. |
|
482
|
|
|
|
|
|
|
|
|
483
|
|
|
|
|
|
|
https://access.redhat.com/errata/RHSA-2023:1791 |
|
484
|
|
|
|
|
|
|
https://access.redhat.com/hydra/rest/securitydata/crf/RHSA-2023:1791.json |
|
485
|
|
|
|
|
|
|
|
|
486
|
|
|
|
|
|
|
The CRF API provides the list of CVE's related to this tag: |
|
487
|
|
|
|
|
|
|
|
|
488
|
|
|
|
|
|
|
my $url = "https://access.redhat.com/hydra/rest/securitydata/crf"; |
|
489
|
|
|
|
|
|
|
my $crf = decode_json ($ua->get ("$url/RHSA-2023:1791.json")); |
|
490
|
|
|
|
|
|
|
my @cve = map { $_->{cve} } |
|
491
|
|
|
|
|
|
|
@{$crf->{cvrfdoc}{vulnerability} || []} |
|
492
|
|
|
|
|
|
|
|
|
493
|
|
|
|
|
|
|
Will set C<@cve> to |
|
494
|
|
|
|
|
|
|
|
|
495
|
|
|
|
|
|
|
qw( CVE-2023-1945 CVE-2023-1999 CVE-2023-29533 CVE-2023-29535 |
|
496
|
|
|
|
|
|
|
CVE-2023-29536 CVE-2023-29539 CVE-2023-29541 CVE-2023-29548 |
|
497
|
|
|
|
|
|
|
CVE-2023-29550 ); |
|
498
|
|
|
|
|
|
|
|
|
499
|
|
|
|
|
|
|
See L<the API documentation|https://access.redhat.com/documentation/en-us/red_hat_security_data_api/1.0/html-single/red_hat_security_data_api/index>. |
|
500
|
|
|
|
|
|
|
|
|
501
|
|
|
|
|
|
|
=back |
|
502
|
|
|
|
|
|
|
|
|
503
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
504
|
|
|
|
|
|
|
|
|
505
|
|
|
|
|
|
|
=over 2 |
|
506
|
|
|
|
|
|
|
|
|
507
|
|
|
|
|
|
|
=item CVE search |
|
508
|
|
|
|
|
|
|
|
|
509
|
|
|
|
|
|
|
L<https://cve.org> and L<https://cve.mitre.org/cve/search_cve_list.html> |
|
510
|
|
|
|
|
|
|
|
|
511
|
|
|
|
|
|
|
=item L<Net::OSV> |
|
512
|
|
|
|
|
|
|
|
|
513
|
|
|
|
|
|
|
Returns OpenSource Vulnerabilities. |
|
514
|
|
|
|
|
|
|
|
|
515
|
|
|
|
|
|
|
=item CVE database |
|
516
|
|
|
|
|
|
|
|
|
517
|
|
|
|
|
|
|
L<https://www.cvedetails.com/> |
|
518
|
|
|
|
|
|
|
|
|
519
|
|
|
|
|
|
|
=back |
|
520
|
|
|
|
|
|
|
|
|
521
|
|
|
|
|
|
|
=head1 AUTHOR |
|
522
|
|
|
|
|
|
|
|
|
523
|
|
|
|
|
|
|
H.Merijn Brand <hmbrand@cpan.org> |
|
524
|
|
|
|
|
|
|
|
|
525
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
526
|
|
|
|
|
|
|
|
|
527
|
|
|
|
|
|
|
Copyright (C) 2023-2023 H.Merijn Brand |
|
528
|
|
|
|
|
|
|
|
|
529
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify |
|
530
|
|
|
|
|
|
|
it under the same terms as Perl itself. See L<perlartistic>. |
|
531
|
|
|
|
|
|
|
|
|
532
|
|
|
|
|
|
|
This interface uses data from the CVE API but is not endorsed by any |
|
533
|
|
|
|
|
|
|
of the CVE partners. |
|
534
|
|
|
|
|
|
|
|
|
535
|
|
|
|
|
|
|
=head1 DISCLAIMER OF WARRANTY |
|
536
|
|
|
|
|
|
|
|
|
537
|
|
|
|
|
|
|
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY |
|
538
|
|
|
|
|
|
|
FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN |
|
539
|
|
|
|
|
|
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES |
|
540
|
|
|
|
|
|
|
PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER |
|
541
|
|
|
|
|
|
|
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
|
542
|
|
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE |
|
543
|
|
|
|
|
|
|
ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH |
|
544
|
|
|
|
|
|
|
YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL |
|
545
|
|
|
|
|
|
|
NECESSARY SERVICING, REPAIR, OR CORRECTION. |
|
546
|
|
|
|
|
|
|
|
|
547
|
|
|
|
|
|
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING |
|
548
|
|
|
|
|
|
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR |
|
549
|
|
|
|
|
|
|
REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE |
|
550
|
|
|
|
|
|
|
LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, |
|
551
|
|
|
|
|
|
|
OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE |
|
552
|
|
|
|
|
|
|
THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING |
|
553
|
|
|
|
|
|
|
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A |
|
554
|
|
|
|
|
|
|
FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF |
|
555
|
|
|
|
|
|
|
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF |
|
556
|
|
|
|
|
|
|
SUCH DAMAGES. |
|
557
|
|
|
|
|
|
|
|
|
558
|
|
|
|
|
|
|
=cut |