khulnasoft commited on
Commit
d0a6cd4
1 Parent(s): 346b79e

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +68 -18
index.html CHANGED
@@ -1,19 +1,69 @@
1
- <!doctype html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <html>
2
+
3
+ <head>
4
+ <title>CVSS Calculator - 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 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 Base Score Calculator"/>
14
+ <meta name="twitter:title" content="CVSS 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 Base Score Calculator</h3></hgroup>
50
+ <div id="cvssboard">
51
+ </div>
52
+ <br>
53
+ <footer id="footer">
54
+ <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>
55
+ <script>
56
+ var c = new CVSS("cvssboard", {
57
+ onchange: function() {
58
+ window.location.hash = c.get().vector;
59
+ c.vector.setAttribute('href', '#' + c.get().vector)
60
+ }
61
+ });
62
+ if (window.location.hash.substring(1).length > 0) {
63
+ c.set(decodeURIComponent(window.location.hash.substring(1)));
64
+ }
65
+ </script>
66
+
67
+ </body>
68
+
69
+ </html>