1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
package CVSS;
use feature ':5.10';
use strict;
use utf8;
use warnings;
use Carp ();
use Exporter qw(import);
use constant DEBUG => $ENV{CVSS_DEBUG};
use CVSS::v2 ();
use CVSS::v3 ();
use CVSS::v4 ();
our @EXPORT = qw(encode_cvss decode_cvss cvss_to_xml);
our $VERSION = '1.14';
$VERSION =~ tr/_//d; ## no critic
my $CVSS_CLASSES = {'2.0' => 'CVSS::v2', '3.0' => 'CVSS::v3', '3.1' => 'CVSS::v3', '4.0' => 'CVSS::v4'};
sub encode_cvss { __PACKAGE__->new(@_)->to_string }
sub decode_cvss { __PACKAGE__->from_vector_string(shift) }
sub cvss_to_xml { @_ > 1 ? __PACKAGE__->new(@_)->to_xml : __PACKAGE__->from_vector_string(shift)->to_xml }
sub new {
my ($class, %params) = @_;
Carp::croak 'Missing CVSS version' unless $params{version};
my $cvss_class = $CVSS_CLASSES->{$params{version}} or Carp::croak 'Unknown CVSS version';
return $cvss_class->new(%params);
}
sub from_vector_string {
my ($class, $vector_string) = @_;
my %metrics = split /[\/:]/, $vector_string;
my $version = delete $metrics{CVSS} || '2.0';
my $cvss_class = $CVSS_CLASSES->{$version} or Carp::croak 'Unknown CVSS version';
DEBUG and say STDERR "-- CVSS v$version -- Vector String: $vector_string";
return $cvss_class->new(version => sprintf('%.1f', $version), metrics => \%metrics,
vector_string => $vector_string);
}
1;
__END__
=head1 NAME
CVSS - Perl extension for CVSS (Common Vulnerability Scoring System) 2.0/3.x/4.0
=head1 SYNOPSIS
use CVSS;
# OO-interface
# Method 1 - Use params
$cvss = CVSS->new(
version => '3.1',
metrics => {
AV => 'A',
AC => 'L',
PR => 'L',
UI => 'R',
S => 'U',
C => 'H',
I => 'H',
A => 'H',
}
);
# Method 2 - Decode and parse the vector string
use CVSS;
$cvss = CVSS->from_vector_string('CVSS:3.1/AV:A/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H');
say $cvss->base_score; # 7.4
# Method 3 - Builder
use CVSS
$cvss = CVSS->new(version => '3.1');
$cvss->attackVector('ADJACENT_NETWORK');
$cvss->attackComplexity('LOW');
$cvss->privilegesRequired('LOW');
$cvss->userInteraction('REQUIRED');
$cvss->scope('UNCHANGED');
$cvss->confidentialityImpact('HIGH');
$cvss->integrityImpact('HIGH');
$cvss->availabilityImpact('HIGH');
$cvss->calculate_score;
# Common methods
# Convert the CVSS object in "vector string"
say $cvss; # CVSS:3.1/AV:A/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
# Get metric value
say $cvss->AV; # A
say $cvss->attackVector; # ADJACENT_NETWORK
# Get the base score
say $cvss->base_score; # 7.4
# Get all scores
say Dumper($cvss->scores);
# { "base" => "7.4",
# "exploitability" => "1.6",
# "impact" => "5.9" }
# Get the base severity
say $cvss->base_severity # HIGH
# Convert CVSS in XML in according of CVSS XML Schema Definition
$xml = $cvss->to_xml;
# Convert CVSS in JSON in according of CVSS JSON Schema
$json = encode_json($cvss);
# exported functions
use CVSS qw(decode_cvss encode_cvss)
$cvss = decode_cvss('CVSS:3.1/AV:A/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H');
say $cvss->base_score; # 7.4
$vector_string = encode_cvss(version => '3.1', metrics => {...});
say $cvss_string; # CVSS:3.1/AV:A/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
=head1 DESCRIPTION
This module calculates the CVSS (Common Vulnerability Scoring System) scores
(basic, temporal, and environmental), convert the "vector string" and returns
the L<CVSS> object in JSON or XML.
The Common Vulnerability Scoring System (CVSS) provides a way to capture the
principal characteristics of a vulnerability and produce a numerical score
reflecting its severity. The numerical score can then be translated into a
qualitative representation (such as low, medium, high, and critical) to help
organizations properly assess and prioritize their vulnerability management
processes.
L<https://www.first.org/cvss/>
=head2 FUNCTIONAL INTERFACE
They are exported by default:
=over
=item $vector_string = encode_cvss(%params)
Converts the given CVSS params to "vector string". Croaks on error.
This function call is functionally identical to:
$vector_string = CVSS->new(%params)->to_string;
=item $cvss = decode_cvss($vector_string)
Converts the given "vector string" to L<CVSS>. Croaks on error.
This function call is functionally identical to:
$cvss = CVSS->from_vector_string($vector_string);
=item $xml = cvss_to_xml($vector_string)
Convert the given "vector string" to XML. Croaks on error.
This function call is functionally identical to:
$xml = $cvss->to_xml;
=back
=head2 OBJECT-ORIENTED INTERFACE
=over
=item $cvss = CVSS->new(%params)
Creates a new L<CVSS> instance using the provided parameters (B<version>, B<metric>
or B<vector_string>) and returns the CVSS subclass that matches the selected CVSS
version (C<2.0>, C<3.0>, C<3.1> or C<4.0>):
+--------------+----------+
| CVSS version | Class |
+--------------+----------+
| 2.0 | CVSS::v2 |
| 3.0 | CVSS::v3 |
| 3.1 | CVSS::v3 |
| 4.0 | CVSS::v4 |
+--------------+----------+
=item $cvss = CVSS->from_vector_string($vector_string);
Converts the given "vector string" to L<CVSS>. Croaks on error
=back
=head1 SEE ALSO
L<CVSS::Base>, L<CVSS::v2>, L<CVSS::v3>, L<CVSS::v4>
=over 4
=item [FIRST] CVSS Data Representations (L<https://www.first.org/cvss/data-representations>)
=item [FIRST] CVSS v4.0 Specification (L<https://www.first.org/cvss/v4.0/specification-document>)
=item [FIRST] CVSS v3.1 Specification (L<https://www.first.org/cvss/v3.1/specification-document>)
=item [FIRST] CVSS v3.0 Specification (L<https://www.first.org/cvss/v3.0/specification-document>)
=item [FIRST] CVSS v2.0 Complete Guide (L<https://www.first.org/cvss/v2/guide>)
=back
=head1 SUPPORT
=head2 Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker
at L<https://github.com/giterlizzi/perl-CVSS/issues>.
You will be notified automatically of any progress on your issue.
=head2 Source Code
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
L<https://github.com/giterlizzi/perl-CVSS>
git clone https://github.com/giterlizzi/perl-CVSS.git
=head1 AUTHOR
=over 4
=item * Giuseppe Di Terlizzi <gdt@cpan.org>
=back
=head1 LICENSE AND COPYRIGHT
This software is copyright (c) 2023-2025 by Giuseppe Di Terlizzi.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|