-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomp3.html
More file actions
141 lines (129 loc) · 4.67 KB
/
Copy pathcomp3.html
File metadata and controls
141 lines (129 loc) · 4.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container mt-5 text-center">
<h2>Generate Compliance report - Coingecko</h2>
<p>The form below contains three checkboxes to scan based on OWASP TOP 10. The first option is checked by default, and the others are disabled:</p>
<table class="table table-bordered table-sm ">
<thead>
<tr>
<th>Security Standards</th>
<th>Version</th>
<th> Items</th>
</tr>
</thead>
<tbody>
<tr>
<td><div class="form-check">
<input type="radio" class="form-check-input" id="radio11" name="optradio1" value="option11" checked>
<label class="form-check-label" for="radio11">OWASP TOP 10</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" disabled>
<label class="form-check-label">COBIT</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" disabled>
<label class="form-check-label">NIST</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" disabled>
<label class="form-check-label">ISO 27001</label>
</div>
</td>
<td>
<div class="form-check">
<input type="radio" class="form-check-input" id="radio13" name="optradio3" value="option13" checked>
<label class="form-check-label" for="radio13">V 2019</label>
</div>
</td>
<td> <div class="form-check">
<input
type="checkbox"
class="form-check-input"
id="check1"
name="option1"
value="something"
checked
/>
<label class="form-check-label" for="check1">Injection</label>
</div>
<div class="form-check">
<input
type="checkbox"
class="form-check-input"
id="check2"
name="option2"
value="something"
/>
<label class="form-check-label" for="check2">Improper Assets Management</label>
</div>
<div class="form-check">
<input
type="checkbox"
class="form-check-input"
id="check2"
name="option2"
value="something"
/>
<label class="form-check-label" for="check2"
>Security Misconfiguration</label
>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" disabled />
<label class="form-check-label">Broken Object Level Authorization</label>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" disabled />
<label class="form-check-label">Broken User Authentication</label>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" disabled />
<label class="form-check-label"
>Lack of Resources & Rate Limiting</label
>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" disabled />
<label class="form-check-label"
>Broken Function Level Authorization</label
>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" disabled />
<label class="form-check-label"
>Mass Assignment</label
>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" disabled />
<label class="form-check-label">
Security Logging and Monitoring Failures</label
>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" disabled />
<label class="form-check-label"
> Insufficient Logging & Monitoring</label
>
</div>
</td>
</tr>
</tbody>
</table>
<div class="text-primary ">
<a href="/r3.html" class="btn btn-primary ">
Generate report
</a>
</div>
</div>
</body>
</html>