├── .control-template.rst ├── .gitignore ├── .readthedocs.yaml ├── .subcontrol-template.rst ├── CONTRIBUTORS.md ├── LICENSE.md ├── Makefile ├── README.md ├── about ├── cas.rst ├── contributing.rst ├── controls.rst └── terms-of-use.rst ├── conf.py ├── control-1 ├── control-1.1.rst ├── control-1.2.rst ├── control-1.3.rst ├── control-1.4.rst ├── control-1.5.rst └── index.rst ├── control-10 ├── control-10.1.rst ├── control-10.2.rst ├── control-10.3.rst ├── control-10.4.rst ├── control-10.5.rst ├── control-10.6.rst ├── control-10.7.rst └── index.rst ├── control-11 ├── control-11.1.rst ├── control-11.2.rst ├── control-11.3.rst ├── control-11.4.rst ├── control-11.5.rst └── index.rst ├── control-12 ├── control-12.1.rst ├── control-12.2.rst ├── control-12.3.rst ├── control-12.4.rst ├── control-12.5.rst ├── control-12.6.rst ├── control-12.7.rst ├── control-12.8.rst └── index.rst ├── control-13 ├── control-13.1.rst ├── control-13.10.rst ├── control-13.11.rst ├── control-13.2.rst ├── control-13.3.rst ├── control-13.4.rst ├── control-13.5.rst ├── control-13.6.rst ├── control-13.7.rst ├── control-13.8.rst ├── control-13.9.rst └── index.rst ├── control-14 ├── control-14.1.rst ├── control-14.2.rst ├── control-14.3.rst ├── control-14.4.rst ├── control-14.5.rst ├── control-14.6.rst ├── control-14.7.rst ├── control-14.8.rst ├── control-14.9.rst └── index.rst ├── control-15 ├── control-15.1.rst ├── control-15.2.rst ├── control-15.3.rst ├── control-15.4.rst ├── control-15.5.rst ├── control-15.6.rst ├── control-15.7.rst └── index.rst ├── control-16 ├── control-16.1.rst ├── control-16.10.rst ├── control-16.11.rst ├── control-16.12.rst ├── control-16.13.rst ├── control-16.14.rst ├── control-16.2.rst ├── control-16.3.rst ├── control-16.4.rst ├── control-16.5.rst ├── control-16.6.rst ├── control-16.7.rst ├── control-16.8.rst ├── control-16.9.rst └── index.rst ├── control-17 ├── control-17.1.rst ├── control-17.2.rst ├── control-17.3.rst ├── control-17.4.rst ├── control-17.5.rst ├── control-17.6.rst ├── control-17.7.rst ├── control-17.8.rst ├── control-17.9.rst └── index.rst ├── control-18 ├── control-18.1.rst ├── control-18.10.rst ├── control-18.11.rst ├── control-18.2.rst ├── control-18.3.rst ├── control-18.4.rst ├── control-18.5.rst ├── control-18.6.rst ├── control-18.7.rst ├── control-18.8.rst ├── control-18.9.rst └── index.rst ├── control-2 ├── control-2.1.rst ├── control-2.2.rst ├── control-2.3.rst ├── control-2.4.rst ├── control-2.5.rst ├── control-2.6.rst ├── control-2.7.rst └── index.rst ├── control-3 ├── control-3.1.rst ├── control-3.10.rst ├── control-3.11.rst ├── control-3.12.rst ├── control-3.13.rst ├── control-3.14.rst ├── control-3.2.rst ├── control-3.3.rst ├── control-3.4.rst ├── control-3.5.rst ├── control-3.6.rst ├── control-3.7.rst ├── control-3.8.rst ├── control-3.9.rst └── index.rst ├── control-4 ├── control-4.1.rst ├── control-4.10.rst ├── control-4.11.rst ├── control-4.12.rst ├── control-4.2.rst ├── control-4.3.rst ├── control-4.4.rst ├── control-4.5.rst ├── control-4.6.rst ├── control-4.7.rst ├── control-4.8.rst ├── control-4.9.rst └── index.rst ├── control-5 ├── control-5.1.rst ├── control-5.2.rst ├── control-5.3.rst ├── control-5.4.rst ├── control-5.5.rst ├── control-5.6.rst └── index.rst ├── control-6 ├── control-6.1.rst ├── control-6.2.rst ├── control-6.3.rst ├── control-6.4.rst ├── control-6.5.rst ├── control-6.6.rst ├── control-6.7.rst ├── control-6.8.rst └── index.rst ├── control-7 ├── control-7.1.rst ├── control-7.2.rst ├── control-7.3.rst ├── control-7.4.rst ├── control-7.5.rst ├── control-7.6.rst ├── control-7.7.rst └── index.rst ├── control-8 ├── control-8.1.rst ├── control-8.10.rst ├── control-8.11.rst ├── control-8.12.rst ├── control-8.2.rst ├── control-8.3.rst ├── control-8.4.rst ├── control-8.5.rst ├── control-8.6.rst ├── control-8.7.rst ├── control-8.8.rst ├── control-8.9.rst └── index.rst ├── control-9 ├── control-9.1.rst ├── control-9.2.rst ├── control-9.3.rst ├── control-9.4.rst ├── control-9.5.rst ├── control-9.6.rst ├── control-9.7.rst └── index.rst ├── img └── CIS_Controls.jpg ├── index.html ├── index.rst └── make.bat /.control-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/.control-template.rst -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | docs/ 3 | _build/ 4 | conf.py 5 | 6 | _tmp/ 7 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.subcontrol-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/.subcontrol-template.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/README.md -------------------------------------------------------------------------------- /about/cas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/about/cas.rst -------------------------------------------------------------------------------- /about/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/about/contributing.rst -------------------------------------------------------------------------------- /about/controls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/about/controls.rst -------------------------------------------------------------------------------- /about/terms-of-use.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/about/terms-of-use.rst -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/conf.py -------------------------------------------------------------------------------- /control-1/control-1.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-1/control-1.1.rst -------------------------------------------------------------------------------- /control-1/control-1.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-1/control-1.2.rst -------------------------------------------------------------------------------- /control-1/control-1.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-1/control-1.3.rst -------------------------------------------------------------------------------- /control-1/control-1.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-1/control-1.4.rst -------------------------------------------------------------------------------- /control-1/control-1.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-1/control-1.5.rst -------------------------------------------------------------------------------- /control-1/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-1/index.rst -------------------------------------------------------------------------------- /control-10/control-10.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-10/control-10.1.rst -------------------------------------------------------------------------------- /control-10/control-10.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-10/control-10.2.rst -------------------------------------------------------------------------------- /control-10/control-10.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-10/control-10.3.rst -------------------------------------------------------------------------------- /control-10/control-10.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-10/control-10.4.rst -------------------------------------------------------------------------------- /control-10/control-10.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-10/control-10.5.rst -------------------------------------------------------------------------------- /control-10/control-10.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-10/control-10.6.rst -------------------------------------------------------------------------------- /control-10/control-10.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-10/control-10.7.rst -------------------------------------------------------------------------------- /control-10/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-10/index.rst -------------------------------------------------------------------------------- /control-11/control-11.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-11/control-11.1.rst -------------------------------------------------------------------------------- /control-11/control-11.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-11/control-11.2.rst -------------------------------------------------------------------------------- /control-11/control-11.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-11/control-11.3.rst -------------------------------------------------------------------------------- /control-11/control-11.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-11/control-11.4.rst -------------------------------------------------------------------------------- /control-11/control-11.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-11/control-11.5.rst -------------------------------------------------------------------------------- /control-11/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-11/index.rst -------------------------------------------------------------------------------- /control-12/control-12.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-12/control-12.1.rst -------------------------------------------------------------------------------- /control-12/control-12.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-12/control-12.2.rst -------------------------------------------------------------------------------- /control-12/control-12.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-12/control-12.3.rst -------------------------------------------------------------------------------- /control-12/control-12.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-12/control-12.4.rst -------------------------------------------------------------------------------- /control-12/control-12.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-12/control-12.5.rst -------------------------------------------------------------------------------- /control-12/control-12.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-12/control-12.6.rst -------------------------------------------------------------------------------- /control-12/control-12.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-12/control-12.7.rst -------------------------------------------------------------------------------- /control-12/control-12.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-12/control-12.8.rst -------------------------------------------------------------------------------- /control-12/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-12/index.rst -------------------------------------------------------------------------------- /control-13/control-13.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/control-13.1.rst -------------------------------------------------------------------------------- /control-13/control-13.10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/control-13.10.rst -------------------------------------------------------------------------------- /control-13/control-13.11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/control-13.11.rst -------------------------------------------------------------------------------- /control-13/control-13.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/control-13.2.rst -------------------------------------------------------------------------------- /control-13/control-13.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/control-13.3.rst -------------------------------------------------------------------------------- /control-13/control-13.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/control-13.4.rst -------------------------------------------------------------------------------- /control-13/control-13.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/control-13.5.rst -------------------------------------------------------------------------------- /control-13/control-13.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/control-13.6.rst -------------------------------------------------------------------------------- /control-13/control-13.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/control-13.7.rst -------------------------------------------------------------------------------- /control-13/control-13.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/control-13.8.rst -------------------------------------------------------------------------------- /control-13/control-13.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/control-13.9.rst -------------------------------------------------------------------------------- /control-13/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-13/index.rst -------------------------------------------------------------------------------- /control-14/control-14.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-14/control-14.1.rst -------------------------------------------------------------------------------- /control-14/control-14.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-14/control-14.2.rst -------------------------------------------------------------------------------- /control-14/control-14.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-14/control-14.3.rst -------------------------------------------------------------------------------- /control-14/control-14.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-14/control-14.4.rst -------------------------------------------------------------------------------- /control-14/control-14.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-14/control-14.5.rst -------------------------------------------------------------------------------- /control-14/control-14.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-14/control-14.6.rst -------------------------------------------------------------------------------- /control-14/control-14.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-14/control-14.7.rst -------------------------------------------------------------------------------- /control-14/control-14.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-14/control-14.8.rst -------------------------------------------------------------------------------- /control-14/control-14.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-14/control-14.9.rst -------------------------------------------------------------------------------- /control-14/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-14/index.rst -------------------------------------------------------------------------------- /control-15/control-15.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-15/control-15.1.rst -------------------------------------------------------------------------------- /control-15/control-15.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-15/control-15.2.rst -------------------------------------------------------------------------------- /control-15/control-15.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-15/control-15.3.rst -------------------------------------------------------------------------------- /control-15/control-15.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-15/control-15.4.rst -------------------------------------------------------------------------------- /control-15/control-15.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-15/control-15.5.rst -------------------------------------------------------------------------------- /control-15/control-15.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-15/control-15.6.rst -------------------------------------------------------------------------------- /control-15/control-15.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-15/control-15.7.rst -------------------------------------------------------------------------------- /control-15/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-15/index.rst -------------------------------------------------------------------------------- /control-16/control-16.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.1.rst -------------------------------------------------------------------------------- /control-16/control-16.10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.10.rst -------------------------------------------------------------------------------- /control-16/control-16.11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.11.rst -------------------------------------------------------------------------------- /control-16/control-16.12.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.12.rst -------------------------------------------------------------------------------- /control-16/control-16.13.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.13.rst -------------------------------------------------------------------------------- /control-16/control-16.14.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.14.rst -------------------------------------------------------------------------------- /control-16/control-16.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.2.rst -------------------------------------------------------------------------------- /control-16/control-16.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.3.rst -------------------------------------------------------------------------------- /control-16/control-16.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.4.rst -------------------------------------------------------------------------------- /control-16/control-16.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.5.rst -------------------------------------------------------------------------------- /control-16/control-16.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.6.rst -------------------------------------------------------------------------------- /control-16/control-16.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.7.rst -------------------------------------------------------------------------------- /control-16/control-16.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.8.rst -------------------------------------------------------------------------------- /control-16/control-16.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/control-16.9.rst -------------------------------------------------------------------------------- /control-16/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-16/index.rst -------------------------------------------------------------------------------- /control-17/control-17.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-17/control-17.1.rst -------------------------------------------------------------------------------- /control-17/control-17.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-17/control-17.2.rst -------------------------------------------------------------------------------- /control-17/control-17.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-17/control-17.3.rst -------------------------------------------------------------------------------- /control-17/control-17.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-17/control-17.4.rst -------------------------------------------------------------------------------- /control-17/control-17.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-17/control-17.5.rst -------------------------------------------------------------------------------- /control-17/control-17.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-17/control-17.6.rst -------------------------------------------------------------------------------- /control-17/control-17.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-17/control-17.7.rst -------------------------------------------------------------------------------- /control-17/control-17.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-17/control-17.8.rst -------------------------------------------------------------------------------- /control-17/control-17.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-17/control-17.9.rst -------------------------------------------------------------------------------- /control-17/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-17/index.rst -------------------------------------------------------------------------------- /control-18/control-18.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/control-18.1.rst -------------------------------------------------------------------------------- /control-18/control-18.10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/control-18.10.rst -------------------------------------------------------------------------------- /control-18/control-18.11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/control-18.11.rst -------------------------------------------------------------------------------- /control-18/control-18.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/control-18.2.rst -------------------------------------------------------------------------------- /control-18/control-18.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/control-18.3.rst -------------------------------------------------------------------------------- /control-18/control-18.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/control-18.4.rst -------------------------------------------------------------------------------- /control-18/control-18.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/control-18.5.rst -------------------------------------------------------------------------------- /control-18/control-18.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/control-18.6.rst -------------------------------------------------------------------------------- /control-18/control-18.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/control-18.7.rst -------------------------------------------------------------------------------- /control-18/control-18.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/control-18.8.rst -------------------------------------------------------------------------------- /control-18/control-18.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/control-18.9.rst -------------------------------------------------------------------------------- /control-18/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-18/index.rst -------------------------------------------------------------------------------- /control-2/control-2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-2/control-2.1.rst -------------------------------------------------------------------------------- /control-2/control-2.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-2/control-2.2.rst -------------------------------------------------------------------------------- /control-2/control-2.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-2/control-2.3.rst -------------------------------------------------------------------------------- /control-2/control-2.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-2/control-2.4.rst -------------------------------------------------------------------------------- /control-2/control-2.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-2/control-2.5.rst -------------------------------------------------------------------------------- /control-2/control-2.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-2/control-2.6.rst -------------------------------------------------------------------------------- /control-2/control-2.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-2/control-2.7.rst -------------------------------------------------------------------------------- /control-2/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-2/index.rst -------------------------------------------------------------------------------- /control-3/control-3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.1.rst -------------------------------------------------------------------------------- /control-3/control-3.10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.10.rst -------------------------------------------------------------------------------- /control-3/control-3.11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.11.rst -------------------------------------------------------------------------------- /control-3/control-3.12.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.12.rst -------------------------------------------------------------------------------- /control-3/control-3.13.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.13.rst -------------------------------------------------------------------------------- /control-3/control-3.14.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.14.rst -------------------------------------------------------------------------------- /control-3/control-3.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.2.rst -------------------------------------------------------------------------------- /control-3/control-3.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.3.rst -------------------------------------------------------------------------------- /control-3/control-3.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.4.rst -------------------------------------------------------------------------------- /control-3/control-3.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.5.rst -------------------------------------------------------------------------------- /control-3/control-3.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.6.rst -------------------------------------------------------------------------------- /control-3/control-3.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.7.rst -------------------------------------------------------------------------------- /control-3/control-3.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.8.rst -------------------------------------------------------------------------------- /control-3/control-3.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/control-3.9.rst -------------------------------------------------------------------------------- /control-3/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-3/index.rst -------------------------------------------------------------------------------- /control-4/control-4.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.1.rst -------------------------------------------------------------------------------- /control-4/control-4.10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.10.rst -------------------------------------------------------------------------------- /control-4/control-4.11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.11.rst -------------------------------------------------------------------------------- /control-4/control-4.12.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.12.rst -------------------------------------------------------------------------------- /control-4/control-4.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.2.rst -------------------------------------------------------------------------------- /control-4/control-4.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.3.rst -------------------------------------------------------------------------------- /control-4/control-4.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.4.rst -------------------------------------------------------------------------------- /control-4/control-4.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.5.rst -------------------------------------------------------------------------------- /control-4/control-4.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.6.rst -------------------------------------------------------------------------------- /control-4/control-4.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.7.rst -------------------------------------------------------------------------------- /control-4/control-4.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.8.rst -------------------------------------------------------------------------------- /control-4/control-4.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/control-4.9.rst -------------------------------------------------------------------------------- /control-4/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-4/index.rst -------------------------------------------------------------------------------- /control-5/control-5.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-5/control-5.1.rst -------------------------------------------------------------------------------- /control-5/control-5.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-5/control-5.2.rst -------------------------------------------------------------------------------- /control-5/control-5.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-5/control-5.3.rst -------------------------------------------------------------------------------- /control-5/control-5.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-5/control-5.4.rst -------------------------------------------------------------------------------- /control-5/control-5.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-5/control-5.5.rst -------------------------------------------------------------------------------- /control-5/control-5.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-5/control-5.6.rst -------------------------------------------------------------------------------- /control-5/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-5/index.rst -------------------------------------------------------------------------------- /control-6/control-6.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-6/control-6.1.rst -------------------------------------------------------------------------------- /control-6/control-6.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-6/control-6.2.rst -------------------------------------------------------------------------------- /control-6/control-6.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-6/control-6.3.rst -------------------------------------------------------------------------------- /control-6/control-6.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-6/control-6.4.rst -------------------------------------------------------------------------------- /control-6/control-6.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-6/control-6.5.rst -------------------------------------------------------------------------------- /control-6/control-6.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-6/control-6.6.rst -------------------------------------------------------------------------------- /control-6/control-6.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-6/control-6.7.rst -------------------------------------------------------------------------------- /control-6/control-6.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-6/control-6.8.rst -------------------------------------------------------------------------------- /control-6/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-6/index.rst -------------------------------------------------------------------------------- /control-7/control-7.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-7/control-7.1.rst -------------------------------------------------------------------------------- /control-7/control-7.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-7/control-7.2.rst -------------------------------------------------------------------------------- /control-7/control-7.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-7/control-7.3.rst -------------------------------------------------------------------------------- /control-7/control-7.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-7/control-7.4.rst -------------------------------------------------------------------------------- /control-7/control-7.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-7/control-7.5.rst -------------------------------------------------------------------------------- /control-7/control-7.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-7/control-7.6.rst -------------------------------------------------------------------------------- /control-7/control-7.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-7/control-7.7.rst -------------------------------------------------------------------------------- /control-7/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-7/index.rst -------------------------------------------------------------------------------- /control-8/control-8.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.1.rst -------------------------------------------------------------------------------- /control-8/control-8.10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.10.rst -------------------------------------------------------------------------------- /control-8/control-8.11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.11.rst -------------------------------------------------------------------------------- /control-8/control-8.12.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.12.rst -------------------------------------------------------------------------------- /control-8/control-8.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.2.rst -------------------------------------------------------------------------------- /control-8/control-8.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.3.rst -------------------------------------------------------------------------------- /control-8/control-8.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.4.rst -------------------------------------------------------------------------------- /control-8/control-8.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.5.rst -------------------------------------------------------------------------------- /control-8/control-8.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.6.rst -------------------------------------------------------------------------------- /control-8/control-8.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.7.rst -------------------------------------------------------------------------------- /control-8/control-8.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.8.rst -------------------------------------------------------------------------------- /control-8/control-8.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/control-8.9.rst -------------------------------------------------------------------------------- /control-8/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-8/index.rst -------------------------------------------------------------------------------- /control-9/control-9.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-9/control-9.1.rst -------------------------------------------------------------------------------- /control-9/control-9.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-9/control-9.2.rst -------------------------------------------------------------------------------- /control-9/control-9.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-9/control-9.3.rst -------------------------------------------------------------------------------- /control-9/control-9.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-9/control-9.4.rst -------------------------------------------------------------------------------- /control-9/control-9.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-9/control-9.5.rst -------------------------------------------------------------------------------- /control-9/control-9.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-9/control-9.6.rst -------------------------------------------------------------------------------- /control-9/control-9.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-9/control-9.7.rst -------------------------------------------------------------------------------- /control-9/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/control-9/index.rst -------------------------------------------------------------------------------- /img/CIS_Controls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/img/CIS_Controls.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/index.rst -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CISecurity/ControlsAssessmentSpecification/HEAD/make.bat --------------------------------------------------------------------------------