├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .mergify.yml ├── .pydocstyle ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── _modules ├── win_lgpo.py └── win_lgpo_ash.py ├── _states └── win_lgpo_ash.py ├── ash-windows ├── Convert_CIS_Policies.md ├── Convert_SCM_Policies.md ├── Convert_SCT_Policies.md ├── Convert_STIG_Policies.md ├── cis_1_3_0 │ ├── Windows_2016Server_MS │ │ ├── audit.csv │ │ ├── cis_1_3_0.yml │ │ └── init.sls │ ├── init.sls │ └── map.jinja ├── custom │ ├── init.sls │ └── map.jinja ├── delta │ ├── delta.yml │ ├── init.sls │ └── map.jinja ├── iavm │ ├── iavm.yml │ ├── init.sls │ └── map.jinja ├── init.sls ├── map.jinja ├── mss │ ├── Templates │ │ ├── MSS-legacy.adml │ │ └── MSS-legacy.admx │ ├── init.sls │ └── map.jinja ├── sct │ ├── IE_11 │ │ ├── gpttmpl.yml │ │ ├── init.sls │ │ ├── machine_registry.yml │ │ └── user_registry.yml │ ├── Templates │ │ ├── PtH.adml │ │ └── PtH.admx │ ├── Windows_10 │ │ ├── audit.csv │ │ ├── gpttmpl.yml │ │ ├── init.sls │ │ ├── machine_registry.yml │ │ └── user_registry.yml │ ├── Windows_11 │ │ ├── audit.csv │ │ ├── gpttmpl.yml │ │ ├── init.sls │ │ ├── machine_registry.yml │ │ └── user_registry.yml │ ├── Windows_2012ServerR2_DC │ │ ├── audit.csv │ │ ├── gpttmpl.yml │ │ ├── init.sls │ │ ├── machine_registry.yml │ │ └── user_registry.yml │ ├── Windows_2012ServerR2_MS │ │ ├── audit.csv │ │ ├── gpttmpl.yml │ │ ├── init.sls │ │ ├── machine_registry.yml │ │ └── user_registry.yml │ ├── Windows_2016Server_DC │ │ ├── audit.csv │ │ ├── gpttmpl.yml │ │ ├── init.sls │ │ ├── machine_registry.yml │ │ └── user_registry.yml │ ├── Windows_2016Server_MS │ │ ├── audit.csv │ │ ├── gpttmpl.yml │ │ ├── init.sls │ │ ├── machine_registry.yml │ │ └── user_registry.yml │ ├── Windows_2019Server_DC │ │ ├── audit.csv │ │ ├── gpttmpl.yml │ │ ├── init.sls │ │ ├── machine_registry.yml │ │ └── user_registry.yml │ ├── Windows_2019Server_MS │ │ ├── audit.csv │ │ ├── gpttmpl.yml │ │ ├── init.sls │ │ ├── machine_registry.yml │ │ └── user_registry.yml │ ├── Windows_2022Server_DC │ │ ├── audit.csv │ │ ├── gpttmpl.yml │ │ ├── init.sls │ │ ├── machine_registry.yml │ │ └── user_registry.yml │ ├── Windows_2022Server_MS │ │ ├── audit.csv │ │ ├── gpttmpl.yml │ │ ├── init.sls │ │ ├── machine_registry.yml │ │ └── user_registry.yml │ ├── init.sls │ └── map.jinja ├── stig │ ├── DotNET │ │ └── stig.yml │ ├── IE_11 │ │ ├── stig.txt │ │ └── stig.yml │ ├── Update_DOD_CA_certs.md │ ├── Windows_10 │ │ ├── init.sls │ │ ├── stig.yml │ │ └── stig_audit.csv │ ├── Windows_11 │ │ ├── init.sls │ │ ├── stig.yml │ │ └── stig_audit.csv │ ├── Windows_2012ServerR2_DC │ │ ├── init.sls │ │ ├── stig.yml │ │ └── stig_audit.csv │ ├── Windows_2012ServerR2_MS │ │ ├── init.sls │ │ ├── stig.yml │ │ └── stig_audit.csv │ ├── Windows_2016Server_DC │ │ ├── init.sls │ │ ├── stig.yml │ │ └── stig_audit.csv │ ├── Windows_2016Server_MS │ │ ├── init.sls │ │ ├── stig.yml │ │ └── stig_audit.csv │ ├── Windows_2019Server_DC │ │ ├── init.sls │ │ ├── stig.yml │ │ └── stig_audit.csv │ ├── Windows_2019Server_MS │ │ ├── init.sls │ │ ├── stig.yml │ │ └── stig_audit.csv │ ├── Windows_2022Server_DC │ │ ├── init.sls │ │ ├── stig.yml │ │ └── stig_audit.csv │ ├── Windows_2022Server_MS │ │ ├── init.sls │ │ ├── stig.yml │ │ └── stig_audit.csv │ ├── dodcerts.sls │ ├── init.sls │ └── map.jinja └── tools │ └── convert-lgpo-policy.py ├── pillar.example └── tests └── pillar └── test-windows-main ├── main.sls └── top.sls /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.pydocstyle: -------------------------------------------------------------------------------- 1 | [pydocstyle] 2 | ignore = D 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM plus3it/tardigrade-ci:0.28.4 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/README.md -------------------------------------------------------------------------------- /_modules/win_lgpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/_modules/win_lgpo.py -------------------------------------------------------------------------------- /_modules/win_lgpo_ash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/_modules/win_lgpo_ash.py -------------------------------------------------------------------------------- /_states/win_lgpo_ash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/_states/win_lgpo_ash.py -------------------------------------------------------------------------------- /ash-windows/Convert_CIS_Policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/Convert_CIS_Policies.md -------------------------------------------------------------------------------- /ash-windows/Convert_SCM_Policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/Convert_SCM_Policies.md -------------------------------------------------------------------------------- /ash-windows/Convert_SCT_Policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/Convert_SCT_Policies.md -------------------------------------------------------------------------------- /ash-windows/Convert_STIG_Policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/Convert_STIG_Policies.md -------------------------------------------------------------------------------- /ash-windows/cis_1_3_0/Windows_2016Server_MS/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/cis_1_3_0/Windows_2016Server_MS/audit.csv -------------------------------------------------------------------------------- /ash-windows/cis_1_3_0/Windows_2016Server_MS/cis_1_3_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/cis_1_3_0/Windows_2016Server_MS/cis_1_3_0.yml -------------------------------------------------------------------------------- /ash-windows/cis_1_3_0/Windows_2016Server_MS/init.sls: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ash-windows/cis_1_3_0/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/cis_1_3_0/init.sls -------------------------------------------------------------------------------- /ash-windows/cis_1_3_0/map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/cis_1_3_0/map.jinja -------------------------------------------------------------------------------- /ash-windows/custom/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/custom/init.sls -------------------------------------------------------------------------------- /ash-windows/custom/map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/custom/map.jinja -------------------------------------------------------------------------------- /ash-windows/delta/delta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/delta/delta.yml -------------------------------------------------------------------------------- /ash-windows/delta/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/delta/init.sls -------------------------------------------------------------------------------- /ash-windows/delta/map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/delta/map.jinja -------------------------------------------------------------------------------- /ash-windows/iavm/iavm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/iavm/iavm.yml -------------------------------------------------------------------------------- /ash-windows/iavm/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/iavm/init.sls -------------------------------------------------------------------------------- /ash-windows/iavm/map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/iavm/map.jinja -------------------------------------------------------------------------------- /ash-windows/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/init.sls -------------------------------------------------------------------------------- /ash-windows/map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/map.jinja -------------------------------------------------------------------------------- /ash-windows/mss/Templates/MSS-legacy.adml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/mss/Templates/MSS-legacy.adml -------------------------------------------------------------------------------- /ash-windows/mss/Templates/MSS-legacy.admx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/mss/Templates/MSS-legacy.admx -------------------------------------------------------------------------------- /ash-windows/mss/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/mss/init.sls -------------------------------------------------------------------------------- /ash-windows/mss/map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/mss/map.jinja -------------------------------------------------------------------------------- /ash-windows/sct/IE_11/gpttmpl.yml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /ash-windows/sct/IE_11/init.sls: -------------------------------------------------------------------------------- 1 | {#- Placeholder init file #} 2 | -------------------------------------------------------------------------------- /ash-windows/sct/IE_11/machine_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/IE_11/machine_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/IE_11/user_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/IE_11/user_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Templates/PtH.adml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Templates/PtH.adml -------------------------------------------------------------------------------- /ash-windows/sct/Templates/PtH.admx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Templates/PtH.admx -------------------------------------------------------------------------------- /ash-windows/sct/Windows_10/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_10/audit.csv -------------------------------------------------------------------------------- /ash-windows/sct/Windows_10/gpttmpl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_10/gpttmpl.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_10/init.sls: -------------------------------------------------------------------------------- 1 | {#- Placeholder init file #} 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_10/machine_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_10/machine_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_10/user_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_10/user_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_11/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_11/audit.csv -------------------------------------------------------------------------------- /ash-windows/sct/Windows_11/gpttmpl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_11/gpttmpl.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_11/init.sls: -------------------------------------------------------------------------------- 1 | {#- Placeholder init file #} 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_11/machine_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_11/machine_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_11/user_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_11/user_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2012ServerR2_DC/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2012ServerR2_DC/audit.csv -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2012ServerR2_DC/gpttmpl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2012ServerR2_DC/gpttmpl.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2012ServerR2_DC/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2012ServerR2_DC/init.sls -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2012ServerR2_DC/machine_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2012ServerR2_DC/machine_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2012ServerR2_DC/user_registry.yml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2012ServerR2_MS/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2012ServerR2_MS/audit.csv -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2012ServerR2_MS/gpttmpl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2012ServerR2_MS/gpttmpl.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2012ServerR2_MS/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2012ServerR2_MS/init.sls -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2012ServerR2_MS/machine_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2012ServerR2_MS/machine_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2012ServerR2_MS/user_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2012ServerR2_MS/user_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2016Server_DC/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2016Server_DC/audit.csv -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2016Server_DC/gpttmpl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2016Server_DC/gpttmpl.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2016Server_DC/init.sls: -------------------------------------------------------------------------------- 1 | {#- Placeholder init file #} 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2016Server_DC/machine_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2016Server_DC/machine_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2016Server_DC/user_registry.yml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2016Server_MS/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2016Server_MS/audit.csv -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2016Server_MS/gpttmpl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2016Server_MS/gpttmpl.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2016Server_MS/init.sls: -------------------------------------------------------------------------------- 1 | {#- Placeholder init file #} 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2016Server_MS/machine_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2016Server_MS/machine_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2016Server_MS/user_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2016Server_MS/user_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2019Server_DC/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2019Server_DC/audit.csv -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2019Server_DC/gpttmpl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2019Server_DC/gpttmpl.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2019Server_DC/init.sls: -------------------------------------------------------------------------------- 1 | {#- Placeholder init file #} 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2019Server_DC/machine_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2019Server_DC/machine_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2019Server_DC/user_registry.yml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2019Server_MS/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2019Server_MS/audit.csv -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2019Server_MS/gpttmpl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2019Server_MS/gpttmpl.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2019Server_MS/init.sls: -------------------------------------------------------------------------------- 1 | {#- Placeholder init file #} 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2019Server_MS/machine_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2019Server_MS/machine_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2019Server_MS/user_registry.yml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2022Server_DC/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2022Server_DC/audit.csv -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2022Server_DC/gpttmpl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2022Server_DC/gpttmpl.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2022Server_DC/init.sls: -------------------------------------------------------------------------------- 1 | {#- Placeholder init file #} 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2022Server_DC/machine_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2022Server_DC/machine_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2022Server_DC/user_registry.yml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2022Server_MS/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2022Server_MS/audit.csv -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2022Server_MS/gpttmpl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2022Server_MS/gpttmpl.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2022Server_MS/init.sls: -------------------------------------------------------------------------------- 1 | {#- Placeholder init file #} 2 | -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2022Server_MS/machine_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/Windows_2022Server_MS/machine_registry.yml -------------------------------------------------------------------------------- /ash-windows/sct/Windows_2022Server_MS/user_registry.yml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /ash-windows/sct/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/init.sls -------------------------------------------------------------------------------- /ash-windows/sct/map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/sct/map.jinja -------------------------------------------------------------------------------- /ash-windows/stig/DotNET/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/DotNET/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/IE_11/stig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/IE_11/stig.txt -------------------------------------------------------------------------------- /ash-windows/stig/IE_11/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/IE_11/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/Update_DOD_CA_certs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Update_DOD_CA_certs.md -------------------------------------------------------------------------------- /ash-windows/stig/Windows_10/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_10/init.sls -------------------------------------------------------------------------------- /ash-windows/stig/Windows_10/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_10/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/Windows_10/stig_audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_10/stig_audit.csv -------------------------------------------------------------------------------- /ash-windows/stig/Windows_11/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_11/init.sls -------------------------------------------------------------------------------- /ash-windows/stig/Windows_11/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_11/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/Windows_11/stig_audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_11/stig_audit.csv -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2012ServerR2_DC/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2012ServerR2_DC/init.sls -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2012ServerR2_DC/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2012ServerR2_DC/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2012ServerR2_DC/stig_audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2012ServerR2_DC/stig_audit.csv -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2012ServerR2_MS/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2012ServerR2_MS/init.sls -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2012ServerR2_MS/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2012ServerR2_MS/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2012ServerR2_MS/stig_audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2012ServerR2_MS/stig_audit.csv -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2016Server_DC/init.sls: -------------------------------------------------------------------------------- 1 | #No additional stig requirements 2 | -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2016Server_DC/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2016Server_DC/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2016Server_DC/stig_audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2016Server_DC/stig_audit.csv -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2016Server_MS/init.sls: -------------------------------------------------------------------------------- 1 | #No additional stig requirements 2 | -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2016Server_MS/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2016Server_MS/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2016Server_MS/stig_audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2016Server_MS/stig_audit.csv -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2019Server_DC/init.sls: -------------------------------------------------------------------------------- 1 | #No additional stig requirements 2 | -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2019Server_DC/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2019Server_DC/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2019Server_DC/stig_audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2019Server_DC/stig_audit.csv -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2019Server_MS/init.sls: -------------------------------------------------------------------------------- 1 | #No additional stig requirements 2 | -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2019Server_MS/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2019Server_MS/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2019Server_MS/stig_audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2019Server_MS/stig_audit.csv -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2022Server_DC/init.sls: -------------------------------------------------------------------------------- 1 | #No additional stig requirements 2 | -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2022Server_DC/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2022Server_DC/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2022Server_DC/stig_audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2022Server_DC/stig_audit.csv -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2022Server_MS/init.sls: -------------------------------------------------------------------------------- 1 | #No additional stig requirements 2 | -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2022Server_MS/stig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2022Server_MS/stig.yml -------------------------------------------------------------------------------- /ash-windows/stig/Windows_2022Server_MS/stig_audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/Windows_2022Server_MS/stig_audit.csv -------------------------------------------------------------------------------- /ash-windows/stig/dodcerts.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/dodcerts.sls -------------------------------------------------------------------------------- /ash-windows/stig/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/init.sls -------------------------------------------------------------------------------- /ash-windows/stig/map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/stig/map.jinja -------------------------------------------------------------------------------- /ash-windows/tools/convert-lgpo-policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/ash-windows/tools/convert-lgpo-policy.py -------------------------------------------------------------------------------- /pillar.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/pillar.example -------------------------------------------------------------------------------- /tests/pillar/test-windows-main/main.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/tests/pillar/test-windows-main/main.sls -------------------------------------------------------------------------------- /tests/pillar/test-windows-main/top.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus3it/ash-windows-formula/HEAD/tests/pillar/test-windows-main/top.sls --------------------------------------------------------------------------------