File size: 20,213 Bytes
95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 2bde95f 95a5333 2bde95f 95a5333 3591e57 95a5333 2bde95f 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 2bde95f 95a5333 2bde95f 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 3591e57 95a5333 2bde95f 95a5333 |
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 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 |
/* Copyright (c) 2015-2019, Chandan B.N.
*
* Copyright (c) 2019, FIRST.ORG, INC
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
* following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
* disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
* following disclaimer in the documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
* products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
CVSSjs Version 0.1 beta
Usage:
craete an html element with an id for eg.,
<div id="cvssboard"></div>
// create a new instance of CVSS calculator:
var c = new CVSS("cvssboard");
// create a new instance of CVSS calculator with some event handler callbacks
var c = new CVSS("cvssboard", {
onchange: function() {....} //optional
onsubmit: function() {....} //optional
}
// set a vector
c.set('AV:L/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:L');
//get the value
c.get() returns an object like:
{
score: 4.3,
vector: 'AV:L/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:L'
}
*/
var CVSS = function (id, options) {
this.options = options;
this.wId = id;
var e = function (tag) {
return document.createElement(tag);
};
// Base Group
this.bg = {
AV: 'Attack Vector',
AC: 'Attack Complexity',
PR: 'Privileges Required',
UI: 'User Interaction',
S: 'Scope',
C: 'Confidentiality',
I: 'Integrity',
A: 'Availability'
};
// Base Metrics
this.bm = {
AV: {
N: {
l: 'Network',
d: "<b>Worst:</b> The vulnerable component is bound to the network stack and the set of possible attackers extends beyond the other options listed below, up to and including the entire Internet. Such a vulnerability is often termed “remotely exploitable” and can be thought of as an attack being exploitable at the protocol level one or more network hops away (e.g., across one or more routers)."
},
A: {
l: 'Adjacent',
d: "<b>Worse:</b> The vulnerable component is bound to the network stack, but the attack is limited at the protocol level to a logically adjacent topology. This can mean an attack must be launched from the same shared physical (e.g., Bluetooth or IEEE 802.11) or logical (e.g., local IP subnet) network, or from within a secure or otherwise limited administrative domain (e.g., MPLS, secure VPN to an administrative network zone). One example of an Adjacent attack would be an ARP (IPv4) or neighbor discovery (IPv6) flood leading to a denial of service on the local LAN segment."
},
L: {
l: 'Local',
d: "<b>Bad:</b> The vulnerable component is not bound to the network stack and the attacker’s path is via read/write/execute capabilities. Either: <ul><li>the attacker exploits the vulnerability by accessing the target system locally (e.g., keyboard, console), or remotely (e.g., SSH);</li><li>or the attacker relies on User Interaction by another person to perform actions required to exploit the vulnerability (e.g., using social engineering techniques to trick a legitimate user into opening a malicious document).</li></ul>"
},
P: {
l: 'Physical',
d: "<b>Bad:</b> The attack requires the attacker to physically touch or manipulate the vulnerable component. Physical interaction may be brief (e.g., evil maid attack) or persistent. An example of such an attack is a cold boot attack in which an attacker gains access to disk encryption keys after physically accessing the target system. Other examples include peripheral attacks via FireWire/USB Direct Memory Access (DMA)."
}
},
AC: {
L: {
l: 'Low',
d: "<b>Worst:</b> Specialized access conditions or extenuating circumstances do not exist. An attacker can expect repeatable success when attacking the vulnerable component."
},
H: {
l: 'High',
d: "<b>Bad:</b> A successful attack depends on conditions beyond the attacker's control. That is, a successful attack cannot be accomplished at will, but requires the attacker to invest in some measurable amount of effort in preparation or execution against the vulnerable component before a successful attack can be expected."
}
},
PR: {
N: {
l: 'None',
d: "<b>Worst:</b> The attacker is unauthorized prior to attack, and therefore does not require any access to settings or files of the the vulnerable system to carry out an attack."
},
L: {
l: 'Low',
d: "<b>Worse</b> The attacker requires privileges that provide basic user capabilities that could normally affect only settings and files owned by a user. Alternatively, an attacker with Low privileges has the ability to access only non-sensitive resources."
},
H: {
l: 'High',
d: "<b>Bad:</b> The attacker requires privileges that provide significant (e.g., administrative) control over the vulnerable component allowing access to component-wide settings and files."
}
},
UI: {
N: {
l: 'None',
d: "<b>Worst:</b> The vulnerable system can be exploited without interaction from any user."
},
R: {
l: 'Required',
d: "<b>Bad:</b> Successful exploitation of this vulnerability requires a user to take some action before the vulnerability can be exploited. For example, a successful exploit may only be possible during the installation of an application by a system administrator."
}
},
S: {
C: {
l: 'Changed',
d: "<b>Worst:</b> An exploited vulnerability can affect resources beyond the security scope managed by the security authority of the vulnerable component. In this case, the vulnerable component and the impacted component are different and managed by different security authorities."
},
U: {
l: 'Unchanged',
d: "<b>Bad:</b> An exploited vulnerability can only affect resources managed by the same security authority. In this case, the vulnerable component and the impacted component are either the same, or both are managed by the same security authority."
}
},
C: {
H: {
l: 'High',
d: "<b>Worst:</b> There is a total loss of confidentiality, resulting in all resources within the impacted component being divulged to the attacker. Alternatively, access to only some restricted information is obtained, but the disclosed information presents a direct, serious impact. For example, an attacker steals the administrator's password, or private encryption keys of a web server."
},
L: {
l: 'Low',
d: "<b>Bad:</b> There is some loss of confidentiality. Access to some restricted information is obtained, but the attacker does not have control over what information is obtained, or the amount or kind of loss is limited. The information disclosure does not cause a direct, serious loss to the impacted component."
},
N: {
l: 'None',
d: "<b>Good:</b> There is no loss of confidentiality within the impacted component."
}
},
I: {
H: {
l: 'High',
d: "<b>Worst:</b> There is a total loss of integrity, or a complete loss of protection. For example, the attacker is able to modify any/all files protected by the impacted component. Alternatively, only some files can be modified, but malicious modification would present a direct, serious consequence to the impacted component."
},
L: {
l: 'Low',
d: "<b>Bad:</b> Modification of data is possible, but the attacker does not have control over the consequence of a modification, or the amount of modification is limited. The data modification does not have a direct, serious impact on the impacted component."
},
N: {
l: 'None',
d: "<b>Good:</b> There is no loss of integrity within the impacted component."
}
},
A: {
H: {
l: 'High',
d: "<b>Worst:</b> There is a total loss of availability, resulting in the attacker being able to fully deny access to resources in the impacted component; this loss is either sustained (while the attacker continues to deliver the attack) or persistent (the condition persists even after the attack has completed). Alternatively, the attacker has the ability to deny some availability, but the loss of availability presents a direct, serious consequence to the impacted component (e.g., the attacker cannot disrupt existing connections, but can prevent new connections; the attacker can repeatedly exploit a vulnerability that, in each instance of a successful attack, leaks a only small amount of memory, but after repeated exploitation causes a service to become completely unavailable)."
},
L: {
l: 'Low',
d: "<b>Bad:</b> Performance is reduced or there are interruptions in resource availability. Even if repeated exploitation of the vulnerability is possible, the attacker does not have the ability to completely deny service to legitimate users. The resources in the impacted component are either partially available all of the time, or fully available only some of the time, but overall there is no direct, serious consequence to the impacted component."
},
N: {
l: 'None',
d: "<b>Good:</b> There is no impact to availability within the impacted component."
}
}
};
this.bme = {};
this.bmgReg = {
AV: 'NALP',
AC: 'LH',
PR: 'NLH',
UI: 'NR',
S: 'CU',
C: 'HLN',
I: 'HLN',
A: 'HLN'
};
this.bmoReg = {
AV: 'NALP',
AC: 'LH',
C: 'C',
I: 'C',
A: 'C'
};
var s, f, dl, g, dd, l;
this.el = document.getElementById(id);
this.el.appendChild(s = e('style'));
s.innerHTML = '';
this.el.appendChild(f = e('form'));
f.className = 'cvssjs';
this.calc = f;
for (g in this.bg) {
f.appendChild(dl = e('dl'));
dl.setAttribute('class', g);
var dt = e('dt');
dt.innerHTML = this.bg[g];
dl.appendChild(dt);
for (s in this.bm[g]) {
dd = e('dd');
dl.appendChild(dd);
var inp = e('input');
inp.setAttribute('name', g);
inp.setAttribute('value', s);
inp.setAttribute('id', id + g + s);
inp.setAttribute('class', g + s);
//inp.setAttribute('ontouchstart', '');
inp.setAttribute('type', 'radio');
this.bme[g + s] = inp;
var me = this;
inp.onchange = function () {
me.setMetric(this);
};
dd.appendChild(inp);
l = e('label');
dd.appendChild(l);
l.setAttribute('for', id + g + s);
l.appendChild(e('i')).setAttribute('class', g + s);
l.appendChild(document.createTextNode(this.bm[g][s].l + ' '));
dd.appendChild(e('small')).innerHTML = this.bm[g][s].d;
}
}
//f.appendChild(e('hr'));
f.appendChild(dl = e('dl'));
dl.innerHTML = '<dt>Severity⋅Score⋅Vector</dt>';
dd = e('dd');
dl.appendChild(dd);
l = dd.appendChild(e('label'));
l.className = 'results';
l.appendChild(this.severity = e('span'));
this.severity.className = 'severity';
l.appendChild(this.score = e('span'));
this.score.className = 'score';
l.appendChild(document.createTextNode(' '));
l.appendChild(this.vector = e('a'));
this.vector.className = 'vector';
this.vector.innerHTML = 'CVSS:3.1/AV:_/AC:_/PR:_/UI:_/S:_/C:_/I:_/A:_';
// setup the copy button/icon
l.appendChild(document.createTextNode(' '));
l.appendChild(this.copyButton = e('a'))
this.copyButton.style.visibility = "hidden"
this.copyButton.className = "copy-button"
this.copyButton.title = "Copy Vector to Clipboard"
this.copyButton.innerHTML = 'Copy'
this.copyButton.onclick = function () {
navigator.clipboard.writeText(document.querySelector(".vector").innerText)
}
if (options.onsubmit) {
f.appendChild(e('hr'));
this.submitButton = f.appendChild(e('input'));
this.submitButton.setAttribute('type', 'submit');
this.submitButton.onclick = options.onsubmit;
}
};
CVSS.prototype.severityRatings = [{
name: "None",
bottom: 0.0,
top: 0.0
}, {
name: "Low",
bottom: 0.1,
top: 3.9
}, {
name: "Medium",
bottom: 4.0,
top: 6.9
}, {
name: "High",
bottom: 7.0,
top: 8.9
}, {
name: "Critical",
bottom: 9.0,
top: 10.0
}];
CVSS.prototype.severityRating = function (score) {
var i;
var severityRatingLength = this.severityRatings.length;
for (i = 0; i < severityRatingLength; i++) {
if (score >= this.severityRatings[i].bottom && score <= this.severityRatings[i].top) {
return this.severityRatings[i];
}
}
return {
name: "?",
bottom: 'Not',
top: 'defined'
};
};
CVSS.prototype.valueofradio = function(e) {
for(var i = 0; i < e.length; i++) {
if (e[i].checked) {
return e[i].value;
}
}
return null;
};
CVSS.prototype.calculate = function () {
var cvssVersion = "3.1";
var exploitabilityCoefficient = 8.22;
var scopeCoefficient = 1.08;
// Define associative arrays mapping each metric value to the constant used in the CVSS scoring formula.
var Weight = {
AV: {
N: 0.85,
A: 0.62,
L: 0.55,
P: 0.2
},
AC: {
H: 0.44,
L: 0.77
},
PR: {
U: {
N: 0.85,
L: 0.62,
H: 0.27
},
// These values are used if Scope is Unchanged
C: {
N: 0.85,
L: 0.68,
H: 0.5
}
},
// These values are used if Scope is Changed
UI: {
N: 0.85,
R: 0.62
},
S: {
U: 6.42,
C: 7.52
},
C: {
N: 0,
L: 0.22,
H: 0.56
},
I: {
N: 0,
L: 0.22,
H: 0.56
},
A: {
N: 0,
L: 0.22,
H: 0.56
}
// C, I and A have the same weights
};
var p;
var val = {}, metricWeight = {};
try {
for (p in this.bg) {
val[p] = this.valueofradio(this.calc.elements[p]);
if (typeof val[p] === "undefined" || val[p] === null) {
return "?";
}
metricWeight[p] = Weight[p][val[p]];
}
} catch (err) {
return err; // TODO: need to catch and return sensible error value & do a better job of specifying *which* parm is at fault.
}
metricWeight.PR = Weight.PR[val.S][val.PR];
//
// CALCULATE THE CVSS BASE SCORE
//
var roundUp1 = function Roundup(input) {
var int_input = Math.round(input * 100000);
if (int_input % 10000 === 0) {
return int_input / 100000
} else {
return (Math.floor(int_input / 10000) + 1) / 10
}
};
try {
var baseScore, impactSubScore, impact, exploitability;
var impactSubScoreMultiplier = (1 - ((1 - metricWeight.C) * (1 - metricWeight.I) * (1 - metricWeight.A)));
if (val.S === 'U') {
impactSubScore = metricWeight.S * impactSubScoreMultiplier;
} else {
impactSubScore = metricWeight.S * (impactSubScoreMultiplier - 0.029) - 3.25 * Math.pow(impactSubScoreMultiplier - 0.02, 15);
}
var exploitabalitySubScore = exploitabilityCoefficient * metricWeight.AV * metricWeight.AC * metricWeight.PR * metricWeight.UI;
if (impactSubScore <= 0) {
baseScore = 0;
} else {
if (val.S === 'U') {
baseScore = roundUp1(Math.min((exploitabalitySubScore + impactSubScore), 10));
} else {
baseScore = roundUp1(Math.min((exploitabalitySubScore + impactSubScore) * scopeCoefficient, 10));
}
}
return baseScore.toFixed(1);
} catch (err) {
return err;
}
};
CVSS.prototype.get = function() {
return {
score: this.score.innerHTML,
vector: this.vector.innerHTML
};
};
CVSS.prototype.setMetric = function(a) {
var vectorString = this.vector.innerHTML;
if (/AV:.\/AC:.\/PR:.\/UI:.\/S:.\/C:.\/I:.\/A:./.test(vectorString)) {} else {
vectorString = 'AV:_/AC:_/PR:_/UI:_/S:_/C:_/I:_/A:_';
}
//e("E" + a.id).checked = true;
var newVec = vectorString.replace(new RegExp('\\b' + a.name + ':.'), a.name + ':' + a.value);
this.set(newVec);
};
CVSS.prototype.set = function(vec) {
var newVec = 'CVSS:3.1/';
var sep = '';
for (var m in this.bm) {
var match = (new RegExp('\\b(' + m + ':[' + this.bmgReg[m] + '])')).exec(vec);
if (match !== null) {
var check = match[0].replace(':', '');
this.bme[check].checked = true;
newVec = newVec + sep + match[0];
} else if ((m in {C:'', I:'', A:''}) && (match = (new RegExp('\\b(' + m + ':C)')).exec(vec)) !== null) {
// compatibility with v2 only for CIA:C
this.bme[m + 'H'].checked = true;
newVec = newVec + sep + m + ':H';
} else {
newVec = newVec + sep + m + ':_';
for (var j in this.bm[m]) {
this.bme[m + j].checked = false;
}
}
sep = '/';
}
this.update(newVec);
};
CVSS.prototype.update = function(newVec) {
this.vector.innerHTML = newVec;
var s = this.calculate();
this.score.innerHTML = s;
var rating = this.severityRating(s);
this.severity.className = rating.name + ' severity';
this.severity.innerHTML = rating.name + '<sub>' + rating.bottom + ' - ' + rating.top + '</sub>';
this.severity.title = rating.bottom + ' - ' + rating.top;
if (rating['name'] != '?') {
this.copyButton.style.visibility = "visible"
}
if (this.options !== undefined && this.options.onchange !== undefined) {
this.options.onchange();
}
}; |