forked from DISA-STIGS/DISA-STIGS.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
557 lines (456 loc) · 19 KB
/
index.html
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>DISA Security Technical Implementation Guide (STIGs)</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/stylesheet.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic">
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<link rel="stylesheet" href="assets/fonts/simple-line-icons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<style>
.fade-in {
animation: fadeIn ease 1s;
-webkit-animation: fadeIn ease 1s;
-moz-animation: fadeIn ease 1s;
-o-animation: fadeIn ease 1s;
-ms-animation: fadeIn ease 1s;
}
@keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-o-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
</style>
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="50">
<nav class="navbar navbar-light navbar-expand-lg fixed-top bg-white clean-navbar navbar-inverse">
<!-- Brand -->
<a class="navbar-brand" href="#"><img src="assets/img/DISA_Seal.png" class="ml-auto"> DISA STIGS</a>
<!-- Toggler/collapsibe Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar links -->
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="nav navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Announcements.html">Announcements</a>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">About Us</a>
<div class="dropdown-menu">
<a href="AboutUs.html" class="dropdown-item">Who We Are</a>
<div class="dropdown-divider"></div>
<a href="ContactUs.html"class="dropdown-item">Contact Us</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="faqs.html">FAQs</a>
</li>
</ul>
</div>
</nav>
<header class="masthead text-white text-center" style="background: url('assets/img/ai2.png')no-repeat center center;background-size: cover;height: 350px;">
<div class="overlay" style="height: 0px;"></div>
<div class="container container-fluid">
<div class="row" style="margin: -55px;">
<div class="col-xl-9 mx-auto" style="margin: -18px;text-shadow: -2px 4px 9px rgb(0,0,0);"> <div class="fade-in"><h1 class="mb-5"><strong>Welcome to the DISA Security Technical Implementation Guide (STIGs) page.
<p style="font-size:24px"><br>For additional STIGs, SRGs, and related content, visit <a href="https://public.cyber.mil" target="_blank" style="color: #cddc39">public.cyber.mil</a>.</p></h1> </div>
</div></div>
</div>
</header>
<section class="showcase" style="background-image: url(section.png); background-size: cover;">
<div class="container-fluid p-0">
<section class="tabs-section text-purple">
<div class="container">
<div class="row">
<div class="col-sm-5 col-lg-3">
<ul class="nav nav-tabs flex-column mb-3">
<li class="nav-item">
<a class="nav-link active show" data-toggle="tab" href="#tab-1">STIGs</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-2">Security Content Automation Protocol (SCAP)</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-3">Supplemental Automation Content</a>
</li>
<!---li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-4">Compilations</a>
</li--->
<li>
<br>
<div class="card">
<div class="card-header">
Latest Update
</div>
<div class="card-body">
<div class="w3-container">
<h5 class="w3-opacity"><b>Newly Added</b></h5>
<!---@Comment: //START NEWS UPDATE Here--->
<h6 class="w3-text-teal">November 4, 2020</h6>
<p>Content: Red Hat Enterprise Linux 7 STIG for Ansible - V3R1</p>
<!---@Comment: //END NEWS UPDATE Here--->
<hr>
</div>
<a href="Announcements.html" class="btn btn-primary" style="background: #553898; border: none; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);">See all updates <svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-chevron-right" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg></a>
</div>
</div>
</li>
</ul>
</div>
<div class="col-sm-7 col-lg-9">
<div class="tab-content">
<div class="tab-pane active show" id="tab-1">
<div class="row">
<div class="col-lg-12 details">
<div style="overflow-x:auto;">
<div class="container" style="background-image: url()">
<input class="form-control mb-4" id="tableSearch1" type="text" onkeyup="search1()" placeholder="Search STIGs...">
<center><table class="table table-striped table-responsive-sm w-auto" id="myTable1" >
<thead class ="thead-dark"><th>Title</th><th>Component</th><th>Version</th><th>Release Date</th><th>Format</th>
</thead>
<tbody>
<!-------------------------------------------------------->
<!---@Comment: //THIS STARTS THE MAIN STIG PAGE CONTENT--->
<!-------------------------------------------------------->
<!---@Comment: //START Copy Here--->
<tr>
<td>Cisco IOS XE Router STIG</td>
<td>Package</td>
<td>Y20M10</td>
<td>2020-10-23</td>
<td><a class="tag" href="net/U_Cisco_IOS-XE_Router_Y20M10_STIG.zip">ZIP</a></td>
</tr>
<tr>
<td style="background: white; border: none;"></td>
<td style="background: white; border: none;">NDM</td>
<td style="background: white; border: none;">V2R1</td>
<td style="background: white; border: none;">2020-10-23</td>
<td style="background: white; border: none;"><a class="tag" href="net/U_Cisco_IOS-XE_Router_NDM_STIG_V2R1_Manual-xccdf.html" target="_blank">HTML</a></td>
</tr>
<tr>
<td style="background: white; border: none;"></td>
<td style="background: white; border: none;">RTR</td>
<td style="background: white; border: none;">V2R1</td>
<td style="background: white; border: none;">2020-10-23</td>
<td style="background: white; border: none;"><a class="tag" href="net/U_Cisco_IOS-XE_Router_RTR_STIG_V2R1_Manual-xccdf.html" target="_blank">HTML</a>
</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td>Docker Enterprise 2.x Linux/UNIX STIG </td>
<td>Package</td>
<td>V1R1</td>
<td>2019-07-19</td>
<td>
<a class="tag" href="app/U_Docker_Enterprise_2-x_Linux-UNIX_V1R1_STIG.zip">ZIP</a>
<a class="tag" href="app/U_Docker_Enterprise_2-x_Linux-UNIX_STIG_V1R1_Manual.html" target="_blank">HTML</a>
</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td>Microsoft Windows Server 2016 STIG</td>
<td>Package</td>
<td>V1R12</td>
<td>2020-06-17</td>
<td><a class="tag" href="os/windows/U_MS_Windows_Server_2016_V1R12_STIG.zip">ZIP</a>
<a class="tag" href="os/windows/U_MS_Windows_Server_2016_STIG_V1R12_Manual.html" target="_blank">HTML</a>
</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr><td>Microsoft Windows Server 2019 STIG</td>
<td>Package</td>
<td>V1R5</td>
<td>2020-06-17</td>
<td>
<a class="tag" href="os/windows/U_MS_Windows_Server_2019_V1R5_STIG.zip">ZIP</a>
<a class="tag" href="os/windows/U_MS_Windows_Server_2019_STIG_V1R5_Manual.html" target="_blank">HTML</a>
</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td>Red Hat Enterprise Linux 7 STIG</td>
<td>Package</td>
<td>V3R1</td>
<td>2020-10-23</td>
<td>
<a class="tag" href="os/linux/U_RHEL_7_V3R1_STIG.zip">ZIP</a>
<a class="tag" href="os/linux/U_RHEL_7_STIG_V3R1.html" target="_blank">HTML</a>
</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td>VMWare vSphere 6.5 STIG</td>
<td>Package</td>
<td>Y20M04</td>
<td>2020-04-24</td>
<td>
<a class="tag" href="os/vsphere/U_VMW_vSphere_6-5_Y20M04_STIG.zip">ZIP</a>
</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td style="background: white; border: none;"></td>
<td style="background: white; border: none;">ESXi</td>
<td style="background: white; border: none;">V1R4</td>
<td style="background: white; border: none;">2020-04-24</td>
<td style="background: white; border: none;">
<a class="tag" href="os/vsphere/U_VMW_vSphere_6-5_ESXi_STIG_V1R4_Manual.html" target="_blank">HTML</a>
</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td style="background: white; border: none;"></td>
<td style="background: white; border: none;">vCenter Server for Windows</td>
<td style="background: white; border: none;">V1R3</td>
<td style="background: white; border: none;">2020-04-24</td>
<td style="background: white; border: none;">
<a class="tag" href="os/vsphere/U_VMW_vSphere_6-5_vCenter_Server_for_Windows_STIG_V1R3_Manual.html" target="_blank">HTML</a>
</td></tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td style="background: white; border: none;"></td>
<td style="background: white; border: none;">Virtual Machine</td>
<td style="background: white; border: none;">V1R2</td>
<td style="background: white; border: none;">2019-10-25</td>
<td style="background: white; border: none;">
<a class="tag" href="os/vsphere/U_VMW_vSphere_6-5_Virtual_Machine_STIG_V1R2_Manual.html" target="_blank">HTML</a>
</td></tr>
<!---@Comment: //END Start Copy Here--->
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!-------------------------------------------------------->
<!---@Comment: //THIS ENDS THE MAIN STIG PAGE CONTENT--->
<!-------------------------------------------------------->
<!-------------------------------------------------------->
<!---@Comment: //THIS STARTS THE SCAP CONTENT--->
<!-------------------------------------------------------->
<div class="tab-pane" id="tab-2">
<div class="row">
<div class="col-lg-12 details">
<input class="form-control mb-4" id="tableSearch2" type="text" onkeyup="search2()" placeholder="Search SCAP...">
<center><table class="table table-striped table-hover table-responsive-sm w-auto" id="myTable2">
<thead class ="thead-dark"><th>Title</th><th>Version</th><th>Release Date</th></thead>
<tr><th class="minorheader" colspan="4">SCAP 1.2</th></tr>
<tbody>
<!---@Comment: //START Copy Here--->
<tr>
<td><a href="automation/scap/U_MS_Windows_Server_2016_V1R13_STIG_SCAP_1-2_Benchmark.zip">Microsoft Windows Server 2016 for SCAP 1.2</a></td>
<td>V1R13</td>
<td>2020-06-08</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td><a href="automation/scap/U_MS_Windows_Server_2019_V1R3_STIG_SCAP_1-2_Benchmark.zip">Microsoft Windows Server 2019 for SCAP 1.2</a></td>
<td>V1R3</td>
<td>2020-06-08</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td><a href="automation/scap/U_RHEL_7_V3R1_STIG_SCAP_1-2_Benchmark.zip">Red Hat Enterprise Linux 7 STIG for SCAP 1.2</a></td>
<td>V3R1</td>
<td>2020-11-04</td>
</tr>
<!---@Comment: //END Start Copy Here--->
</tbody>
</table>
</div>
</div>
</div>
<!-------------------------------------------------------->
<!---@Comment: //THIS ENDS THE SCAP CONTENT--->
<!-------------------------------------------------------->
<!----------------------------------------------------------------->
<!---@Comment: //THIS STARTS THE SUPPLEMENTAL AUTOMATION CONTENT--->
<!----------------------------------------------------------------->
<div class="tab-pane" id="tab-3">
<div class="row">
<div class="col-lg-12 details" >
<input class="form-control mb-4" id="tableSearch3" type="text" onkeyup="search3()" placeholder="Search Content...">
<center><table class="table table-striped table-responsive-sm w-auto" id="myTable3">
<thead class ="thead-dark"><th>Title</th><th>Version</th><th>Release Date</th></thead>
<tr><th class="minorheader" colspan="4">Ansible</th></tr>
<tbody>
<!---@Comment: //START Copy Here--->
<tr>
<td><a href="automation/ansible/U_Cisco_IOS_XE_Router_V2R1_STIG_Ansible.zip">Cisco IOS XE Router STIG for Ansible</a></td>
<td>V2R1</td>
<td>2020-11-04</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td><a href="automation/ansible/U_Docker_Enterprise_2-x_Linux_Unix_V1R1_STIG_Ansible.zip">Docker Enterprise 2.x Linux/Unix STIG for Ansible</a></td>
<td>V1R1</td>
<td>2020-06-22</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td><a href="automation/ansible/U_RHEL_7_V3R1_STIG_Ansible.zip">Red Hat Enterprise Linux 7 STIG for Ansible</a></td>
<td>V3R1</td>
<td>2020-11-04</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td><a href="automation/ansible/U_VMW_vSphere_6-5_V1R2_STIG_Ansible.zip">VMware vSphere 6.5 STIG for Ansible</a></td>
<td>V1R2</td>
<td>2020-06-22</td></tr>
<!---@Comment: //END Start Copy Here--->
<tr><th class="minorheader" colspan="4">Chef</th></tr>
<!---@Comment: //START Copy Here--->
<tr>
<td><a href="automation/chef/U_MS_Windows_Server_2016_V1R3_STIG_Chef.zip">Microsoft Windows Server 2016 STIG for Chef</a></td>
<td>V1R3</td>
<td>2020-06-22</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td><a href="automation/chef/U_MS_Windows_Server_2019_V1R2_STIG_Chef.zip">Microsoft Windows Server 2019 STIG for Chef</a></td>
<td>V1R2</td>
<td>2020-06-22</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<!---@Comment: //START Copy Here--->
<tr>
<td><a href="automation/chef/U_RHEL_7_V3R1_STIG_Chef.zip">Red Hat Enterprise Linux 7 STIG for Chef</a></td>
<td>V3R1</td>
<td>2020-11-04</td>
</tr>
<!---@Comment: //END Start Copy Here--->
<tr><th class="minorheader" colspan="4">PowerShell DSC</th></tr>
<!---@Comment: //START Copy Here--->
<tr>
<td><a href="automation/powershelldsc/U_MS_Windows_Server_2016_V1R3_STIG_PowerShell_DSC.zip">Microsoft Windows Server 2016 STIG for PowerShell DSC</a></td>
<td>V1R3</td>
<td>2020-06-22</td>
</tr>
<!---@Comment: //END Start Copy Here--->
</tbody>
</table>
</div>
</div>
</div>
<!----------------------------------------------------------------->
<!---@Comment: //THIS ENDS THE SUPPLEMENTAL AUTOMATION CONTENT--->
<!----------------------------------------------------------------->
<!----------------------------------------------------------------->
<!---@Comment: //THIS STARTS THE COMPLIATIONS CONTENT--->
<!----------------------------------------------------------------->
<div class="tab-pane" id="tab-4">
<div class="row">
<div class="col-lg-12 details">
<h3 class="mt-3">Latest SRG/STIG Compilations</h3>
<center><table class="table table-striped table-responsive-sm w-auto">
<thead class ="thead-dark"><th>Title</th><th>Size</th><th>Updated</th></thead>
<tr>
<td><a href="U_STIG_Library-zip_Read-ME_v1-07.pdf">Compilation - SRG-STIG Library - READ ME</a></td>
<td>122.17 KB</td>
<td>2019-06-12</td>
</tr>
<tr>
<td><a href="U_SRG-STIG_Library_2020_10v2.zip">Compilation - SRG-STIG Library</a></td>
<td>208.64 MB</td>
<td>2020-10-29</td>
</tr>
</table>
</div>
</div>
</div>
<!----------------------------------------------------------------->
<!---@Comment: //THIS ENDS THE COMPLIATIONS CONTENT--->
<!----------------------------------------------------------------->
</div>
</div>
</div>
</div>
</section>
</div>
</section>
<footer class="footer bg-light">
<div class="container">
<div class="row">
<div class="col-lg-12 my-auto h-100 text-center text-lg-center">
<ul class="list-inline mb-2">
<!-- Trigger/Open The Modal -->
<li class="list-inline-item"><a href="AboutUs.html" id="aboutUs">About</a></li>
<!-- Trigger/Open The Modal -->
<li class="list-inline-item"><a href="ContactUs.html" id="contactUs">Contact Us</a></li>
<!-- Trigger/Open The Modal -->
<li class="list-inline-item"><a href="faqs.html" id="faqs">FAQs</a></li>
</ul>
<p class="text-muted small mb-4 mb-lg-0">Defense Information Systems Agency (DISA)</p>
</div>
</div>
</div>
</footer>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/bs-init.js"></script>
<script src="assets/js/scripts.js"></script>
</body>
</html>