├── LICENSE ├── Program_User_Manual_v1.1.pdf ├── README.md ├── audit_file_parser.py ├── config └── config.xlsx ├── local_audit_command_generator.py ├── local_audit_results_processor.py ├── remote_audit_executor.py ├── remote_host_checker.py ├── script ├── CIS_MS_Windows_11_Enterprise_Level_1_v1.0.0.ps1 ├── CIS_Microsoft_Windows_10_Stand-alone_v1.0.1_L1.ps1 ├── CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_DC.ps1 ├── CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_MS.ps1 ├── CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_DC.ps1 ├── CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_MS.ps1 ├── CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_DC.ps1 └── CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_MS.ps1 ├── src ├── Audit │ ├── CIS_MS_Windows_10_Enterprise_Level_1_v2.0.0.xlsx │ ├── CIS_MS_Windows_11_Enterprise_Level_1_v1.0.0.xlsx │ ├── CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_DC.xlsx │ ├── CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_MS.xlsx │ ├── CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_DC.xlsx │ ├── CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_MS.xlsx │ ├── CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_DC.xlsx │ └── CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_MS.xlsx └── CIS │ ├── CIS_MS_Windows_10_Enterprise_Level_1_v2.0.0.audit │ ├── CIS_MS_Windows_11_Enterprise_Level_1_v1.0.0.audit │ ├── CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_DC.audit │ ├── CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_MS.audit │ ├── CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_DC.audit │ ├── CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_MS.audit │ ├── CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_DC.audit │ └── CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_MS.audit └── utilities ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc ├── getAnonySID.cpython-310.pyc ├── getAuditPolicy.cpython-310.pyc ├── getBannerCheck.cpython-310.pyc ├── getCheckAccount.cpython-310.pyc ├── getLockoutPolicy.cpython-310.pyc ├── getPwdPolicy.cpython-310.pyc ├── getRegCheck.cpython-310.pyc ├── getRegValue.cpython-310.pyc ├── getUserRights.cpython-310.pyc └── getWMIPolicy.cpython-310.pyc ├── getAnonySID.py ├── getAuditPolicy.py ├── getBannerCheck.py ├── getCheckAccount.py ├── getLockoutPolicy.py ├── getPwdPolicy.py ├── getRegCheck.py ├── getRegValue.py ├── getUserRights.py └── getWMIPolicy.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/LICENSE -------------------------------------------------------------------------------- /Program_User_Manual_v1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/Program_User_Manual_v1.1.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/README.md -------------------------------------------------------------------------------- /audit_file_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/audit_file_parser.py -------------------------------------------------------------------------------- /config/config.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/config/config.xlsx -------------------------------------------------------------------------------- /local_audit_command_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/local_audit_command_generator.py -------------------------------------------------------------------------------- /local_audit_results_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/local_audit_results_processor.py -------------------------------------------------------------------------------- /remote_audit_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/remote_audit_executor.py -------------------------------------------------------------------------------- /remote_host_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/remote_host_checker.py -------------------------------------------------------------------------------- /script/CIS_MS_Windows_11_Enterprise_Level_1_v1.0.0.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/script/CIS_MS_Windows_11_Enterprise_Level_1_v1.0.0.ps1 -------------------------------------------------------------------------------- /script/CIS_Microsoft_Windows_10_Stand-alone_v1.0.1_L1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/script/CIS_Microsoft_Windows_10_Stand-alone_v1.0.1_L1.ps1 -------------------------------------------------------------------------------- /script/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_DC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/script/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_DC.ps1 -------------------------------------------------------------------------------- /script/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_MS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/script/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_MS.ps1 -------------------------------------------------------------------------------- /script/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_DC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/script/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_DC.ps1 -------------------------------------------------------------------------------- /script/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_MS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/script/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_MS.ps1 -------------------------------------------------------------------------------- /script/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_DC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/script/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_DC.ps1 -------------------------------------------------------------------------------- /script/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_MS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/script/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_MS.ps1 -------------------------------------------------------------------------------- /src/Audit/CIS_MS_Windows_10_Enterprise_Level_1_v2.0.0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/Audit/CIS_MS_Windows_10_Enterprise_Level_1_v2.0.0.xlsx -------------------------------------------------------------------------------- /src/Audit/CIS_MS_Windows_11_Enterprise_Level_1_v1.0.0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/Audit/CIS_MS_Windows_11_Enterprise_Level_1_v1.0.0.xlsx -------------------------------------------------------------------------------- /src/Audit/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_DC.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/Audit/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_DC.xlsx -------------------------------------------------------------------------------- /src/Audit/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_MS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/Audit/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_MS.xlsx -------------------------------------------------------------------------------- /src/Audit/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_DC.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/Audit/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_DC.xlsx -------------------------------------------------------------------------------- /src/Audit/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_MS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/Audit/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_MS.xlsx -------------------------------------------------------------------------------- /src/Audit/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_DC.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/Audit/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_DC.xlsx -------------------------------------------------------------------------------- /src/Audit/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_MS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/Audit/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_MS.xlsx -------------------------------------------------------------------------------- /src/CIS/CIS_MS_Windows_10_Enterprise_Level_1_v2.0.0.audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/CIS/CIS_MS_Windows_10_Enterprise_Level_1_v2.0.0.audit -------------------------------------------------------------------------------- /src/CIS/CIS_MS_Windows_11_Enterprise_Level_1_v1.0.0.audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/CIS/CIS_MS_Windows_11_Enterprise_Level_1_v1.0.0.audit -------------------------------------------------------------------------------- /src/CIS/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_DC.audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/CIS/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_DC.audit -------------------------------------------------------------------------------- /src/CIS/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_MS.audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/CIS/CIS_Microsoft_Windows_Server_2016_Benchmark_v2.0.0_L1_MS.audit -------------------------------------------------------------------------------- /src/CIS/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_DC.audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/CIS/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_DC.audit -------------------------------------------------------------------------------- /src/CIS/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_MS.audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/CIS/CIS_Microsoft_Windows_Server_2019_Benchmark_v2.0.0_L1_MS.audit -------------------------------------------------------------------------------- /src/CIS/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_DC.audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/CIS/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_DC.audit -------------------------------------------------------------------------------- /src/CIS/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_MS.audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/src/CIS/CIS_Microsoft_Windows_Server_2022_Benchmark_v2.0.0_L1_MS.audit -------------------------------------------------------------------------------- /utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/__pycache__/getAnonySID.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/__pycache__/getAnonySID.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/__pycache__/getAuditPolicy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/__pycache__/getAuditPolicy.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/__pycache__/getBannerCheck.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/__pycache__/getBannerCheck.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/__pycache__/getCheckAccount.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/__pycache__/getCheckAccount.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/__pycache__/getLockoutPolicy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/__pycache__/getLockoutPolicy.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/__pycache__/getPwdPolicy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/__pycache__/getPwdPolicy.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/__pycache__/getRegCheck.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/__pycache__/getRegCheck.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/__pycache__/getRegValue.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/__pycache__/getRegValue.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/__pycache__/getUserRights.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/__pycache__/getUserRights.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/__pycache__/getWMIPolicy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/__pycache__/getWMIPolicy.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/getAnonySID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/getAnonySID.py -------------------------------------------------------------------------------- /utilities/getAuditPolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/getAuditPolicy.py -------------------------------------------------------------------------------- /utilities/getBannerCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/getBannerCheck.py -------------------------------------------------------------------------------- /utilities/getCheckAccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/getCheckAccount.py -------------------------------------------------------------------------------- /utilities/getLockoutPolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/getLockoutPolicy.py -------------------------------------------------------------------------------- /utilities/getPwdPolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/getPwdPolicy.py -------------------------------------------------------------------------------- /utilities/getRegCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/getRegCheck.py -------------------------------------------------------------------------------- /utilities/getRegValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/getRegValue.py -------------------------------------------------------------------------------- /utilities/getUserRights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/getUserRights.py -------------------------------------------------------------------------------- /utilities/getWMIPolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myohannn/CIS-Auditor-Windows/HEAD/utilities/getWMIPolicy.py --------------------------------------------------------------------------------