├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Quickstart-Amazon-Linux-DISA-STIG.md ├── Quickstart-Amazon-Linux-openscap1.0.8.md ├── Quickstart-Amazon-Linux.md ├── README.md ├── definition-list.txt ├── docs ├── general.md └── man │ └── govready.1 ├── govready ├── govready-html ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── images │ └── cost.png ├── index.html ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.1.min.js │ └── modernizr-2.6.2-respond-1.1.0.min.js ├── jumbotron-narrow.css └── scans │ └── README.md ├── govready.spec ├── govreadycp ├── govreadyvm ├── install.sh ├── prototypes ├── Profiles.xml ├── debug-results.xml ├── example-oscap.sh ├── openscap │ └── xsl │ │ ├── dbout-html.xsl │ │ ├── dc2docbook.xsl │ │ ├── docbook-share.xsl │ │ ├── fix.xsl │ │ ├── govready_security-guide.xsl │ │ ├── html2docbook.xsl │ │ ├── oscap-share.xsl │ │ ├── oval-report.xsl │ │ ├── oval-results-report.xsl │ │ ├── sce-report.xsl │ │ ├── security-guide.xsl │ │ ├── xccdf-report.xsl │ │ ├── xccdf-share.xsl │ │ ├── xccdf-substitute.xsl │ │ ├── xccdf-tailor.xsl │ │ ├── xccdf_1.1_remove_dangling_sub.xsl │ │ └── xccdf_1.1_to_1.2.xsl ├── scripts │ ├── severity_high.xml │ ├── test-loop-xccdf-results.php │ ├── unbundled-rules.sh │ └── unbundler2profiles.php ├── ssg-rhel6-adjustments-centos6.xml ├── ssg-rhel6-cpe-dictionary.xml ├── ssg-rhel6-cpe-oval.xml ├── ssg-rhel6-ds.xml ├── ssg-rhel6-oval.xml ├── ssg-rhel6-xccdf-unbundled.xml ├── ssg-rhel6-xccdf.xml ├── ssg-rhel7-cpe-dictionary.xml ├── ssg-rhel7-cpe-oval.xml ├── ssg-rhel7-ds.xml ├── ssg-rhel7-oval.xml ├── ssg-rhel7-xccdf.xml ├── ssg-test2-xccdf.xml ├── ssg │ └── rhel6 │ │ └── rule │ │ ├── accounts_password_all_shadowed.xml │ │ ├── no_empty_passwords.xml │ │ ├── ssg-rhel6-cpe-dictionary.xml │ │ ├── ssg-rhel6-cpe-oval.xml │ │ ├── ssg-rhel6-ds.xml │ │ ├── ssg-rhel6-oval.xml │ │ └── ssg-rhel6-xccdf.xml └── status │ ├── accounts_password_all_shadowed.xml │ ├── accounts_password_pam_cracklib_retry.xml │ ├── group_owner_grub_conf.xml │ ├── httpd_limit_available_methods.xml │ ├── no_empty_passwords.xml │ └── test.xml ├── scripts ├── aqueduct.sh ├── aws-security-groups.pl ├── compare.sh ├── epel.sh ├── example-oscap.sh ├── govoscap.sh ├── grfix1.sh ├── install-openscap.sh ├── install-ssg.sh ├── scaninfo-summary-text.xsl ├── setup-rhel6.5.sh ├── ssg-fix.sh ├── usgcb-rhel6-server-tests.sh └── usgcb-rhel6-server.sh ├── templates ├── Vagrantfile-snippets ├── audit.rules-rhel6 ├── audit.rules-rhel64_x86_64 ├── audit.rules_aws-2015.03_x86_64 ├── diffexample.xml ├── diffinfo.xsl ├── govready-server-audit.rules ├── httpd-govready.conf ├── issue-rhel6 ├── password-auth-rhel6 ├── ssg-amzn2014.03.2hvm-cpe-dictionary.xml ├── ssg-amzn2014.03.2hvm-cpe-oval.xml ├── ssg-centos6-cpe-dictionary.xml ├── ssg-centos6-cpe-oval.xml └── system-auth-rhel6 ├── vagrant-list.txt └── vm-list.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Quickstart-Amazon-Linux-DISA-STIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/Quickstart-Amazon-Linux-DISA-STIG.md -------------------------------------------------------------------------------- /Quickstart-Amazon-Linux-openscap1.0.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/Quickstart-Amazon-Linux-openscap1.0.8.md -------------------------------------------------------------------------------- /Quickstart-Amazon-Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/Quickstart-Amazon-Linux.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/README.md -------------------------------------------------------------------------------- /definition-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/definition-list.txt -------------------------------------------------------------------------------- /docs/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/docs/general.md -------------------------------------------------------------------------------- /docs/man/govready.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/docs/man/govready.1 -------------------------------------------------------------------------------- /govready: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready -------------------------------------------------------------------------------- /govready-html/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/css/bootstrap-theme.css -------------------------------------------------------------------------------- /govready-html/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /govready-html/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /govready-html/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/css/bootstrap.css -------------------------------------------------------------------------------- /govready-html/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/css/bootstrap.css.map -------------------------------------------------------------------------------- /govready-html/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/css/bootstrap.min.css -------------------------------------------------------------------------------- /govready-html/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /govready-html/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /govready-html/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /govready-html/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /govready-html/images/cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/images/cost.png -------------------------------------------------------------------------------- /govready-html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/index.html -------------------------------------------------------------------------------- /govready-html/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/js/bootstrap.js -------------------------------------------------------------------------------- /govready-html/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/js/bootstrap.min.js -------------------------------------------------------------------------------- /govready-html/js/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/js/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /govready-html/js/modernizr-2.6.2-respond-1.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/js/modernizr-2.6.2-respond-1.1.0.min.js -------------------------------------------------------------------------------- /govready-html/jumbotron-narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready-html/jumbotron-narrow.css -------------------------------------------------------------------------------- /govready-html/scans/README.md: -------------------------------------------------------------------------------- 1 | Directory for storing scan results 2 | -------------------------------------------------------------------------------- /govready.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govready.spec -------------------------------------------------------------------------------- /govreadycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govreadycp -------------------------------------------------------------------------------- /govreadyvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/govreadyvm -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/install.sh -------------------------------------------------------------------------------- /prototypes/Profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/Profiles.xml -------------------------------------------------------------------------------- /prototypes/debug-results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/debug-results.xml -------------------------------------------------------------------------------- /prototypes/example-oscap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/example-oscap.sh -------------------------------------------------------------------------------- /prototypes/openscap/xsl/dbout-html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/dbout-html.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/dc2docbook.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/dc2docbook.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/docbook-share.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/docbook-share.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/fix.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/fix.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/govready_security-guide.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/govready_security-guide.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/html2docbook.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/html2docbook.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/oscap-share.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/oscap-share.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/oval-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/oval-report.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/oval-results-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/oval-results-report.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/sce-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/sce-report.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/security-guide.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/security-guide.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/xccdf-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/xccdf-report.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/xccdf-share.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/xccdf-share.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/xccdf-substitute.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/xccdf-substitute.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/xccdf-tailor.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/xccdf-tailor.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/xccdf_1.1_remove_dangling_sub.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/xccdf_1.1_remove_dangling_sub.xsl -------------------------------------------------------------------------------- /prototypes/openscap/xsl/xccdf_1.1_to_1.2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/openscap/xsl/xccdf_1.1_to_1.2.xsl -------------------------------------------------------------------------------- /prototypes/scripts/severity_high.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/scripts/severity_high.xml -------------------------------------------------------------------------------- /prototypes/scripts/test-loop-xccdf-results.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/scripts/test-loop-xccdf-results.php -------------------------------------------------------------------------------- /prototypes/scripts/unbundled-rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/scripts/unbundled-rules.sh -------------------------------------------------------------------------------- /prototypes/scripts/unbundler2profiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/scripts/unbundler2profiles.php -------------------------------------------------------------------------------- /prototypes/ssg-rhel6-adjustments-centos6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel6-adjustments-centos6.xml -------------------------------------------------------------------------------- /prototypes/ssg-rhel6-cpe-dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel6-cpe-dictionary.xml -------------------------------------------------------------------------------- /prototypes/ssg-rhel6-cpe-oval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel6-cpe-oval.xml -------------------------------------------------------------------------------- /prototypes/ssg-rhel6-ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel6-ds.xml -------------------------------------------------------------------------------- /prototypes/ssg-rhel6-oval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel6-oval.xml -------------------------------------------------------------------------------- /prototypes/ssg-rhel6-xccdf-unbundled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel6-xccdf-unbundled.xml -------------------------------------------------------------------------------- /prototypes/ssg-rhel6-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel6-xccdf.xml -------------------------------------------------------------------------------- /prototypes/ssg-rhel7-cpe-dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel7-cpe-dictionary.xml -------------------------------------------------------------------------------- /prototypes/ssg-rhel7-cpe-oval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel7-cpe-oval.xml -------------------------------------------------------------------------------- /prototypes/ssg-rhel7-ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel7-ds.xml -------------------------------------------------------------------------------- /prototypes/ssg-rhel7-oval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel7-oval.xml -------------------------------------------------------------------------------- /prototypes/ssg-rhel7-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-rhel7-xccdf.xml -------------------------------------------------------------------------------- /prototypes/ssg-test2-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg-test2-xccdf.xml -------------------------------------------------------------------------------- /prototypes/ssg/rhel6/rule/accounts_password_all_shadowed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg/rhel6/rule/accounts_password_all_shadowed.xml -------------------------------------------------------------------------------- /prototypes/ssg/rhel6/rule/no_empty_passwords.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg/rhel6/rule/no_empty_passwords.xml -------------------------------------------------------------------------------- /prototypes/ssg/rhel6/rule/ssg-rhel6-cpe-dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg/rhel6/rule/ssg-rhel6-cpe-dictionary.xml -------------------------------------------------------------------------------- /prototypes/ssg/rhel6/rule/ssg-rhel6-cpe-oval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg/rhel6/rule/ssg-rhel6-cpe-oval.xml -------------------------------------------------------------------------------- /prototypes/ssg/rhel6/rule/ssg-rhel6-ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg/rhel6/rule/ssg-rhel6-ds.xml -------------------------------------------------------------------------------- /prototypes/ssg/rhel6/rule/ssg-rhel6-oval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg/rhel6/rule/ssg-rhel6-oval.xml -------------------------------------------------------------------------------- /prototypes/ssg/rhel6/rule/ssg-rhel6-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/ssg/rhel6/rule/ssg-rhel6-xccdf.xml -------------------------------------------------------------------------------- /prototypes/status/accounts_password_all_shadowed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/status/accounts_password_all_shadowed.xml -------------------------------------------------------------------------------- /prototypes/status/accounts_password_pam_cracklib_retry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/status/accounts_password_pam_cracklib_retry.xml -------------------------------------------------------------------------------- /prototypes/status/group_owner_grub_conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/status/group_owner_grub_conf.xml -------------------------------------------------------------------------------- /prototypes/status/httpd_limit_available_methods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/status/httpd_limit_available_methods.xml -------------------------------------------------------------------------------- /prototypes/status/no_empty_passwords.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/status/no_empty_passwords.xml -------------------------------------------------------------------------------- /prototypes/status/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/prototypes/status/test.xml -------------------------------------------------------------------------------- /scripts/aqueduct.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/aqueduct.sh -------------------------------------------------------------------------------- /scripts/aws-security-groups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/aws-security-groups.pl -------------------------------------------------------------------------------- /scripts/compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/compare.sh -------------------------------------------------------------------------------- /scripts/epel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/epel.sh -------------------------------------------------------------------------------- /scripts/example-oscap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/example-oscap.sh -------------------------------------------------------------------------------- /scripts/govoscap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/govoscap.sh -------------------------------------------------------------------------------- /scripts/grfix1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/grfix1.sh -------------------------------------------------------------------------------- /scripts/install-openscap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/install-openscap.sh -------------------------------------------------------------------------------- /scripts/install-ssg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/install-ssg.sh -------------------------------------------------------------------------------- /scripts/scaninfo-summary-text.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/scaninfo-summary-text.xsl -------------------------------------------------------------------------------- /scripts/setup-rhel6.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/setup-rhel6.5.sh -------------------------------------------------------------------------------- /scripts/ssg-fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/ssg-fix.sh -------------------------------------------------------------------------------- /scripts/usgcb-rhel6-server-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/scripts/usgcb-rhel6-server-tests.sh -------------------------------------------------------------------------------- /scripts/usgcb-rhel6-server.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/Vagrantfile-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/Vagrantfile-snippets -------------------------------------------------------------------------------- /templates/audit.rules-rhel6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/audit.rules-rhel6 -------------------------------------------------------------------------------- /templates/audit.rules-rhel64_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/audit.rules-rhel64_x86_64 -------------------------------------------------------------------------------- /templates/audit.rules_aws-2015.03_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/audit.rules_aws-2015.03_x86_64 -------------------------------------------------------------------------------- /templates/diffexample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/diffexample.xml -------------------------------------------------------------------------------- /templates/diffinfo.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/diffinfo.xsl -------------------------------------------------------------------------------- /templates/govready-server-audit.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/govready-server-audit.rules -------------------------------------------------------------------------------- /templates/httpd-govready.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/httpd-govready.conf -------------------------------------------------------------------------------- /templates/issue-rhel6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/issue-rhel6 -------------------------------------------------------------------------------- /templates/password-auth-rhel6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/password-auth-rhel6 -------------------------------------------------------------------------------- /templates/ssg-amzn2014.03.2hvm-cpe-dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/ssg-amzn2014.03.2hvm-cpe-dictionary.xml -------------------------------------------------------------------------------- /templates/ssg-amzn2014.03.2hvm-cpe-oval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/ssg-amzn2014.03.2hvm-cpe-oval.xml -------------------------------------------------------------------------------- /templates/ssg-centos6-cpe-dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/ssg-centos6-cpe-dictionary.xml -------------------------------------------------------------------------------- /templates/ssg-centos6-cpe-oval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/ssg-centos6-cpe-oval.xml -------------------------------------------------------------------------------- /templates/system-auth-rhel6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/templates/system-auth-rhel6 -------------------------------------------------------------------------------- /vagrant-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/vagrant-list.txt -------------------------------------------------------------------------------- /vm-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GovReady/govready/HEAD/vm-list.txt --------------------------------------------------------------------------------