khulnasoft
commited on
Commit
•
1fc88ed
1
Parent(s):
1c0b0f7
Create index.html
Browse files- index.html +71 -0
index.html
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<html>
|
2 |
+
|
3 |
+
<head>
|
4 |
+
<title>CVSS Calculator v3.1 - Base Score</title>
|
5 |
+
<link rel="icon"
|
6 |
+
type="image/png"
|
7 |
+
href="favicon.png">
|
8 |
+
<link rel="shortcut icon" type="image/png" href="favicon.png">
|
9 |
+
<meta name="description" content="Easy to use illustrated graphical Common Vulnerability Scoring System (CVSS) Base Score Calculator with hints"/>
|
10 |
+
<meta name="keywords" content="CVSS v3.1 Base Score Calculator,ATTACK VECTOR,Network,Adjacent,Local,Physical,ATTACK COMPLEXITY,Low,High,PRIVILEGES REQUIRE,None,Low,High,USER INTERACTION,None,Required,SCOPE,Changed,Unchanged,CONFIDENTIALITY,High,Low,None,INTEGRITY,High,Low,None,AVAILABILITY,High,Low,None,SEVERITY,SCORE,VECTOR"/>
|
11 |
+
<meta property="og:type" content="website" />
|
12 |
+
<meta property="og:image" content="cvss-calculator-screenshot.png" />
|
13 |
+
<meta name="og:title" property="og:title" content="CVSS v3.1 Base Score Calculator"/>
|
14 |
+
<meta name="twitter:title" content="CVSS v3.1 Base Score Calculator"/>
|
15 |
+
<meta name="og:description" property="og:description" content="Easy to use illustrated graphical Common Vulnerability Scoring System (CVSS) Base Score Calculator with hints">
|
16 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
17 |
+
<link rel="stylesheet" type="text/css" media="all" href="cvss.css">
|
18 |
+
<script src="cvss.js"></script>
|
19 |
+
<style>
|
20 |
+
body {
|
21 |
+
background-color: #e0e4e4;
|
22 |
+
font-family: arial;
|
23 |
+
padding: 1em;
|
24 |
+
text-align: center;
|
25 |
+
align-content: center;
|
26 |
+
}
|
27 |
+
#footer {
|
28 |
+
font-size: x-small;
|
29 |
+
}
|
30 |
+
#cvssboard {
|
31 |
+
text-align: center;
|
32 |
+
align-content: center;
|
33 |
+
}
|
34 |
+
#footer, H3 {
|
35 |
+
color: gray;
|
36 |
+
}
|
37 |
+
@media screen and (min-width: 720px) {
|
38 |
+
#cvssboard {
|
39 |
+
width: 640px;
|
40 |
+
align-content: center;
|
41 |
+
display: inline-block;
|
42 |
+
}
|
43 |
+
}
|
44 |
+
</style>
|
45 |
+
</head>
|
46 |
+
|
47 |
+
<body>
|
48 |
+
<hgroup>
|
49 |
+
<h3>CVSS v3.1 Base Score Calculator</h3></hgroup>
|
50 |
+
<div id="cvssboard">
|
51 |
+
</div>
|
52 |
+
<br>
|
53 |
+
<footer id="footer">
|
54 |
+
Copyright 2019 © Chandan
|
55 |
+
<br/><a href="https://github.com/cvssjs">CVSSjs</a> is free to use, copy, modification under a BSD like licence.
|
56 |
+
<br/>Common Vulnerability Scoring System (CVSS) is a free and open standard. It is owned and managed by <a href="http://www.first.org/cvss">FIRST.Org</a>.</footer>
|
57 |
+
<script>
|
58 |
+
var c = new CVSS("cvssboard", {
|
59 |
+
onchange: function() {
|
60 |
+
window.location.hash = c.get().vector;
|
61 |
+
c.vector.setAttribute('href', '#' + c.get().vector)
|
62 |
+
}
|
63 |
+
});
|
64 |
+
if (window.location.hash.substring(1).length > 0) {
|
65 |
+
c.set(decodeURIComponent(window.location.hash.substring(1)));
|
66 |
+
}
|
67 |
+
</script>
|
68 |
+
|
69 |
+
</body>
|
70 |
+
|
71 |
+
</html>
|