├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── VERSION ├── example └── agencyapp │ ├── README.md │ ├── certifications │ └── fisma-low-impact.yaml │ ├── components │ ├── CentOS-fake │ │ ├── CP-CONTINGENCY_PLANNING.yaml │ │ ├── SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml │ │ └── component.yaml │ ├── Cisco-Cloud-Rtr-fake │ │ ├── AU-AUDIT_AND_ACCOUNTABILITY.yaml │ │ ├── MA-MAINTENANCE.yaml │ │ ├── PL-PLANNING.yaml │ │ ├── SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml │ │ ├── SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml │ │ ├── SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml │ │ └── component.yaml │ ├── Cylance-fake │ │ ├── AC-ACCESS_CONTROL.yaml │ │ ├── MA-MAINTENANCE.yaml │ │ ├── PL-PLANNING.yaml │ │ ├── SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml │ │ ├── SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml │ │ └── component.yaml │ ├── GovReady-fake │ │ ├── CM-CONFIGURATION_MANAGEMENT.yaml │ │ ├── PS-PERSONNEL_SECURITY.yaml │ │ ├── SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml │ │ ├── SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml │ │ └── component.yaml │ ├── Jenkins-fake │ │ ├── IA-IDENTIFICATION_AND_AUTHENTICATION.yaml │ │ ├── MP-MEDIA_PROTECTION.yaml │ │ ├── SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml │ │ ├── SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml │ │ └── component.yaml │ ├── Keycloak-fake │ │ ├── AC-ACCESS_CONTROL.yaml │ │ ├── CP-CONTINGENCY_PLANNING.yaml │ │ ├── MA-MAINTENANCE.yaml │ │ ├── PM-PROGRAM_MANAGEMENT.yaml │ │ ├── SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml │ │ └── component.yaml │ ├── OpenLDAP-fake │ │ ├── AC-ACCESS_CONTROL.yaml │ │ ├── AU-AUDIT_AND_ACCOUNTABILITY.yaml │ │ ├── CM-CONFIGURATION_MANAGEMENT.yaml │ │ ├── SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml │ │ └── component.yaml │ └── SOC-Services-fake │ │ ├── AC-ACCESS_CONTROL.yaml │ │ ├── CA-SECURITY_ASSESSMENT_AND_AUTHORIZATION.yaml │ │ ├── CP-CONTINGENCY_PLANNING.yaml │ │ ├── IR-INCIDENT_RESPONSE.yaml │ │ ├── MA-MAINTENANCE.yaml │ │ ├── SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml │ │ └── component.yaml │ ├── lint.py │ ├── make_oc_compliant.py │ ├── opencontrol.yaml │ ├── outputs │ ├── Example-doc.md │ └── word │ │ └── Example-word-doc.docx │ ├── standards │ ├── NIST-SP-800-53-rev4.yaml │ ├── hipaa-draft.yaml │ └── opencontrol.yaml │ └── team │ └── team.yaml ├── hypergrc ├── __init__.py ├── __main__.py ├── app_yaml.py ├── csv.py ├── opencontrol.py ├── render.py ├── routes.py ├── ssp.py └── templates │ ├── all_components.html │ ├── assessments.html │ ├── base.html │ ├── component.html │ ├── component_comparison.html │ ├── component_guide.html │ ├── component_new.html │ ├── components.html │ ├── control_combined.html │ ├── control_grid.html │ ├── control_new.html │ ├── controls.html │ ├── documents.html │ ├── evidence_list.html │ ├── govready-q_format.html │ ├── index.html │ ├── login.html │ ├── poams.html │ ├── settings.html │ ├── system_new.html │ └── team.html ├── ref ├── certifications │ ├── dfars-nist-800-171.yaml │ └── fisma-low-impact.yaml └── standards │ ├── NIST-800-171r1.yaml │ ├── NIST-SP-800-53-rev4.yaml │ ├── hipaa-control-id-list.txt │ ├── hipaa-draft.yaml │ └── opencontrol.yaml ├── repos.conf.example ├── requirements.txt ├── static ├── css │ └── base.css ├── img │ └── Rocky_Mountain_National_Park.jpg └── js │ ├── autosize.js │ └── autosize.min.js └── utils ├── lines-of-code-ac.py └── lint.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v0.5.2+dev 2 | -------------------------------------------------------------------------------- /example/agencyapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/README.md -------------------------------------------------------------------------------- /example/agencyapp/certifications/fisma-low-impact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/certifications/fisma-low-impact.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/CentOS-fake/CP-CONTINGENCY_PLANNING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/CentOS-fake/CP-CONTINGENCY_PLANNING.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/CentOS-fake/SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/CentOS-fake/SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/CentOS-fake/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/CentOS-fake/component.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cisco-Cloud-Rtr-fake/AU-AUDIT_AND_ACCOUNTABILITY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cisco-Cloud-Rtr-fake/AU-AUDIT_AND_ACCOUNTABILITY.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cisco-Cloud-Rtr-fake/MA-MAINTENANCE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cisco-Cloud-Rtr-fake/MA-MAINTENANCE.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cisco-Cloud-Rtr-fake/PL-PLANNING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cisco-Cloud-Rtr-fake/PL-PLANNING.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cisco-Cloud-Rtr-fake/SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cisco-Cloud-Rtr-fake/SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cisco-Cloud-Rtr-fake/SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cisco-Cloud-Rtr-fake/SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cisco-Cloud-Rtr-fake/SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cisco-Cloud-Rtr-fake/SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cisco-Cloud-Rtr-fake/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cisco-Cloud-Rtr-fake/component.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cylance-fake/AC-ACCESS_CONTROL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cylance-fake/AC-ACCESS_CONTROL.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cylance-fake/MA-MAINTENANCE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cylance-fake/MA-MAINTENANCE.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cylance-fake/PL-PLANNING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cylance-fake/PL-PLANNING.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cylance-fake/SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cylance-fake/SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cylance-fake/SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cylance-fake/SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Cylance-fake/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Cylance-fake/component.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/GovReady-fake/CM-CONFIGURATION_MANAGEMENT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/GovReady-fake/CM-CONFIGURATION_MANAGEMENT.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/GovReady-fake/PS-PERSONNEL_SECURITY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/GovReady-fake/PS-PERSONNEL_SECURITY.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/GovReady-fake/SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/GovReady-fake/SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/GovReady-fake/SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/GovReady-fake/SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/GovReady-fake/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/GovReady-fake/component.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Jenkins-fake/IA-IDENTIFICATION_AND_AUTHENTICATION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Jenkins-fake/IA-IDENTIFICATION_AND_AUTHENTICATION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Jenkins-fake/MP-MEDIA_PROTECTION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Jenkins-fake/MP-MEDIA_PROTECTION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Jenkins-fake/SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Jenkins-fake/SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Jenkins-fake/SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Jenkins-fake/SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Jenkins-fake/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Jenkins-fake/component.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Keycloak-fake/AC-ACCESS_CONTROL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Keycloak-fake/AC-ACCESS_CONTROL.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Keycloak-fake/CP-CONTINGENCY_PLANNING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Keycloak-fake/CP-CONTINGENCY_PLANNING.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Keycloak-fake/MA-MAINTENANCE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Keycloak-fake/MA-MAINTENANCE.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Keycloak-fake/PM-PROGRAM_MANAGEMENT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Keycloak-fake/PM-PROGRAM_MANAGEMENT.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Keycloak-fake/SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Keycloak-fake/SA-SYSTEM_AND_SERVICES_ACQUISITION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/Keycloak-fake/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/Keycloak-fake/component.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/OpenLDAP-fake/AC-ACCESS_CONTROL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/OpenLDAP-fake/AC-ACCESS_CONTROL.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/OpenLDAP-fake/AU-AUDIT_AND_ACCOUNTABILITY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/OpenLDAP-fake/AU-AUDIT_AND_ACCOUNTABILITY.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/OpenLDAP-fake/CM-CONFIGURATION_MANAGEMENT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/OpenLDAP-fake/CM-CONFIGURATION_MANAGEMENT.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/OpenLDAP-fake/SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/OpenLDAP-fake/SI-SYSTEM_AND_INFORMATION_INTEGRITY.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/OpenLDAP-fake/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/OpenLDAP-fake/component.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/SOC-Services-fake/AC-ACCESS_CONTROL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/SOC-Services-fake/AC-ACCESS_CONTROL.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/SOC-Services-fake/CA-SECURITY_ASSESSMENT_AND_AUTHORIZATION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/SOC-Services-fake/CA-SECURITY_ASSESSMENT_AND_AUTHORIZATION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/SOC-Services-fake/CP-CONTINGENCY_PLANNING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/SOC-Services-fake/CP-CONTINGENCY_PLANNING.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/SOC-Services-fake/IR-INCIDENT_RESPONSE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/SOC-Services-fake/IR-INCIDENT_RESPONSE.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/SOC-Services-fake/MA-MAINTENANCE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/SOC-Services-fake/MA-MAINTENANCE.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/SOC-Services-fake/SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/SOC-Services-fake/SC-SYSTEM_AND_COMMUNICATIONS_PROTECTION.yaml -------------------------------------------------------------------------------- /example/agencyapp/components/SOC-Services-fake/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/components/SOC-Services-fake/component.yaml -------------------------------------------------------------------------------- /example/agencyapp/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/lint.py -------------------------------------------------------------------------------- /example/agencyapp/make_oc_compliant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/make_oc_compliant.py -------------------------------------------------------------------------------- /example/agencyapp/opencontrol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/opencontrol.yaml -------------------------------------------------------------------------------- /example/agencyapp/outputs/Example-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/outputs/Example-doc.md -------------------------------------------------------------------------------- /example/agencyapp/outputs/word/Example-word-doc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/outputs/word/Example-word-doc.docx -------------------------------------------------------------------------------- /example/agencyapp/standards/NIST-SP-800-53-rev4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/standards/NIST-SP-800-53-rev4.yaml -------------------------------------------------------------------------------- /example/agencyapp/standards/hipaa-draft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/standards/hipaa-draft.yaml -------------------------------------------------------------------------------- /example/agencyapp/standards/opencontrol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/standards/opencontrol.yaml -------------------------------------------------------------------------------- /example/agencyapp/team/team.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/example/agencyapp/team/team.yaml -------------------------------------------------------------------------------- /hypergrc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hypergrc/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/__main__.py -------------------------------------------------------------------------------- /hypergrc/app_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/app_yaml.py -------------------------------------------------------------------------------- /hypergrc/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/csv.py -------------------------------------------------------------------------------- /hypergrc/opencontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/opencontrol.py -------------------------------------------------------------------------------- /hypergrc/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/render.py -------------------------------------------------------------------------------- /hypergrc/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/routes.py -------------------------------------------------------------------------------- /hypergrc/ssp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/ssp.py -------------------------------------------------------------------------------- /hypergrc/templates/all_components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/all_components.html -------------------------------------------------------------------------------- /hypergrc/templates/assessments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/assessments.html -------------------------------------------------------------------------------- /hypergrc/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/base.html -------------------------------------------------------------------------------- /hypergrc/templates/component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/component.html -------------------------------------------------------------------------------- /hypergrc/templates/component_comparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/component_comparison.html -------------------------------------------------------------------------------- /hypergrc/templates/component_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/component_guide.html -------------------------------------------------------------------------------- /hypergrc/templates/component_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/component_new.html -------------------------------------------------------------------------------- /hypergrc/templates/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/components.html -------------------------------------------------------------------------------- /hypergrc/templates/control_combined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/control_combined.html -------------------------------------------------------------------------------- /hypergrc/templates/control_grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/control_grid.html -------------------------------------------------------------------------------- /hypergrc/templates/control_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/control_new.html -------------------------------------------------------------------------------- /hypergrc/templates/controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/controls.html -------------------------------------------------------------------------------- /hypergrc/templates/documents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/documents.html -------------------------------------------------------------------------------- /hypergrc/templates/evidence_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/evidence_list.html -------------------------------------------------------------------------------- /hypergrc/templates/govready-q_format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/govready-q_format.html -------------------------------------------------------------------------------- /hypergrc/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/index.html -------------------------------------------------------------------------------- /hypergrc/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/login.html -------------------------------------------------------------------------------- /hypergrc/templates/poams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/poams.html -------------------------------------------------------------------------------- /hypergrc/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/settings.html -------------------------------------------------------------------------------- /hypergrc/templates/system_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/system_new.html -------------------------------------------------------------------------------- /hypergrc/templates/team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/hypergrc/templates/team.html -------------------------------------------------------------------------------- /ref/certifications/dfars-nist-800-171.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/ref/certifications/dfars-nist-800-171.yaml -------------------------------------------------------------------------------- /ref/certifications/fisma-low-impact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/ref/certifications/fisma-low-impact.yaml -------------------------------------------------------------------------------- /ref/standards/NIST-800-171r1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/ref/standards/NIST-800-171r1.yaml -------------------------------------------------------------------------------- /ref/standards/NIST-SP-800-53-rev4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/ref/standards/NIST-SP-800-53-rev4.yaml -------------------------------------------------------------------------------- /ref/standards/hipaa-control-id-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/ref/standards/hipaa-control-id-list.txt -------------------------------------------------------------------------------- /ref/standards/hipaa-draft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/ref/standards/hipaa-draft.yaml -------------------------------------------------------------------------------- /ref/standards/opencontrol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/ref/standards/opencontrol.yaml -------------------------------------------------------------------------------- /repos.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/repos.conf.example -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rtyaml 2 | jinja2 -------------------------------------------------------------------------------- /static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/static/css/base.css -------------------------------------------------------------------------------- /static/img/Rocky_Mountain_National_Park.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/static/img/Rocky_Mountain_National_Park.jpg -------------------------------------------------------------------------------- /static/js/autosize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/static/js/autosize.js -------------------------------------------------------------------------------- /static/js/autosize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/static/js/autosize.min.js -------------------------------------------------------------------------------- /utils/lines-of-code-ac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/utils/lines-of-code-ac.py -------------------------------------------------------------------------------- /utils/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/hyperGRC/HEAD/utils/lint.py --------------------------------------------------------------------------------