-
Notifications
You must be signed in to change notification settings - Fork 2
/
inspec.yml
74 lines (64 loc) · 1.92 KB
/
inspec.yml
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
name: microsoft-iis-8.5-site-stig-baseline
title: Microsoft IIS 8.5 Site Security Technical Implementation Guide :: Version 2, Release 9 :: Benchmark Date: 25 Oct 2023
maintainer: MITRE SAF Team
copyright: MITRE
copyright_email: [email protected]
license: Apache-2.0
summary: InSpec profile aligned to DISA STIG for Microsoft IIS 8.5 Site Security
Technical Implementation Guide
description: null
version: 2.9.1
supports: []
depends: []
inspec_version: "~>6.0"
inputs:
# SV-214446, SV-214460
- name: public_server
description: 'Specify if the server being reviewed is a public IIS 8.5 web server'
type: boolean
value: false
# SV-214447
- name: private_server
description: 'Specify if the server being reviewed is a private IIS 8.5 web server'
type: boolean
value: false
sensitive: true
- name: non_production_server
description: 'Specify if the server being reviewed is a non-production website'
type: boolean
value: false
# SV-214456
- name: black_listed_extensions
description: 'List of Request Filtering black listed extensions'
type: array
value: []
# SV-214459, SV-214478
- name: site_name
description: 'Name of IIS site'
type: array
value: ['tt', 'Default']
# SV-214459, SV-214478
- name: http_ip
description: 'IP address used for http'
type: array
value: ['10.0.2.15', '0.0.0.0']
# SV-214459, SV-214478
- name: http_hostname
description: 'IP address used for https'
type: array
value: ['local', 'l']
# SV-214459, SV-214478
- name: https_ip
description: 'IP address used for https'
type: array
value: ['10.0.2.15', '0.0.0.0']
# SV-214459, SV-214478
- name: https_hostname
description: 'Hostname used for https'
type: array
value: ['localhttps', 'localhttps2']
# SV-214477
- name: log_directory
description: 'Path of IIS log directory'
type: string
value: 'C:\inetpub\logs\LogFiles'