├── .deepsource.toml ├── .editorconfig ├── .env-example ├── .github ├── dependabot.yml ├── mergify.yml ├── release-drafter.yml └── workflows │ ├── anchore-syft.yml │ ├── auto-approve-and-merge.yml │ ├── build-macos.yml │ ├── build-rpm.yml │ ├── build-windows-linux.yml │ ├── bump-brew.yml │ ├── draft-release.yml │ ├── e2e-ci.yml │ ├── linter.yml │ ├── push-to-docker-main.yml │ ├── push-to-docker.yml │ ├── push-to-npm-gpr.yml │ └── test-docker-image.yml ├── .gitignore ├── .nvmrc ├── .vscode ├── launch.json └── settings.json ├── CNAME ├── Dockerfile ├── LICENSE ├── README.md ├── VERSION ├── _config.yml ├── bin ├── run └── run.cmd ├── docs ├── contributors-guide.md └── emasser │ └── index.md ├── eslint.config.cjs ├── oclif-theme.json ├── pack-hdf-converters.bat ├── pack-hdf-converters.sh ├── pack-heimdall-lite.bat ├── pack-heimdall-lite.sh ├── pack-inspec-objects.bat ├── pack-inspec-objects.sh ├── pack-inspecjs.bat ├── pack-inspecjs.sh ├── package.json ├── release-prep.ps1 ├── release-prep.sh ├── saf-cli.code-workspace ├── saf.spec ├── src ├── commands │ ├── attest │ │ ├── apply.ts │ │ └── create.ts │ ├── convert │ │ ├── anchoregrype2hdf.ts │ │ ├── asff2hdf.ts │ │ ├── aws_config2hdf.ts │ │ ├── burpsuite2hdf.ts │ │ ├── ckl2POAM.ts │ │ ├── ckl2hdf.ts │ │ ├── conveyor2hdf.ts │ │ ├── cyclonedx_sbom2hdf.ts │ │ ├── dbprotect2hdf.ts │ │ ├── dependency_track2hdf.ts │ │ ├── fortify2hdf.ts │ │ ├── gosec2hdf.ts │ │ ├── hdf2asff.ts │ │ ├── hdf2caat.ts │ │ ├── hdf2ckl.ts │ │ ├── hdf2condensed.ts │ │ ├── hdf2csv.ts │ │ ├── hdf2splunk.ts │ │ ├── hdf2xccdf.ts │ │ ├── index.ts │ │ ├── ionchannel2hdf.ts │ │ ├── jfrog_xray2hdf.ts │ │ ├── msft_secure2hdf.ts │ │ ├── nessus2hdf.ts │ │ ├── netsparker2hdf.ts │ │ ├── neuvector2hdf.ts │ │ ├── nikto2hdf.ts │ │ ├── prisma2hdf.ts │ │ ├── prowler2hdf.ts │ │ ├── sarif2hdf.ts │ │ ├── scoutsuite2hdf.ts │ │ ├── snyk2hdf.ts │ │ ├── sonarqube2hdf.ts │ │ ├── splunk2hdf.ts │ │ ├── trivy2hdf.ts │ │ ├── trufflehog2hdf.ts │ │ ├── twistlock2hdf.ts │ │ ├── veracode2hdf.ts │ │ ├── xccdf_results2hdf.ts │ │ └── zap2hdf.ts │ ├── emasser │ │ ├── configure.ts │ │ ├── delete │ │ │ ├── artifacts.ts │ │ │ ├── cloud_resources.ts │ │ │ ├── container_scans.ts │ │ │ ├── hardware_baseline.ts │ │ │ ├── milestones.ts │ │ │ ├── poams.ts │ │ │ └── software_baseline.ts │ │ ├── get │ │ │ ├── artifacts.ts │ │ │ ├── cac.ts │ │ │ ├── cmmc.ts │ │ │ ├── controls.ts │ │ │ ├── dashboards.ts │ │ │ ├── hardware.ts │ │ │ ├── milestones.ts │ │ │ ├── pac.ts │ │ │ ├── poams.ts │ │ │ ├── roles.ts │ │ │ ├── software.ts │ │ │ ├── system.ts │ │ │ ├── systems.ts │ │ │ ├── test_connection.ts │ │ │ ├── test_results.ts │ │ │ ├── workflow_definitions.ts │ │ │ └── workflow_instances.ts │ │ ├── hello.ts │ │ ├── post │ │ │ ├── artifacts.ts │ │ │ ├── cac.ts │ │ │ ├── cloud_resources.ts │ │ │ ├── container_scans.ts │ │ │ ├── device_scans.ts │ │ │ ├── hardware_baseline.ts │ │ │ ├── milestones.ts │ │ │ ├── pac.ts │ │ │ ├── poams.ts │ │ │ ├── register.ts │ │ │ ├── software_baseline.ts │ │ │ ├── static_code_scans.ts │ │ │ └── test_results.ts │ │ ├── put │ │ │ ├── artifacts.ts │ │ │ ├── controls.ts │ │ │ ├── hardware_baseline.ts │ │ │ ├── milestones.ts │ │ │ ├── poams.ts │ │ │ └── software_baseline.ts │ │ └── version.ts │ ├── generate │ │ ├── ckl_metadata.ts │ │ ├── delta.ts │ │ ├── inspec_metadata.ts │ │ ├── inspec_profile.ts │ │ ├── spreadsheet2inspec_stub.ts │ │ ├── threshold.ts │ │ └── update_controls4delta.ts │ ├── harden │ │ └── harden.ts │ ├── scan │ │ └── scan.ts │ ├── supplement │ │ ├── passthrough │ │ │ ├── read.ts │ │ │ └── write.ts │ │ └── target │ │ │ ├── read.ts │ │ │ └── write.ts │ ├── validate │ │ └── threshold.ts │ └── view │ │ ├── heimdall.ts │ │ └── summary.ts ├── index.ts ├── resources │ ├── cis2nist.json │ └── files.json ├── types │ ├── STIG.d.ts │ ├── accurate-search │ │ └── index.d.ts │ ├── csv.d.ts │ ├── emass_client │ │ └── index.d.ts │ ├── fuse │ │ └── index.d.ts │ ├── inspec.d.ts │ ├── splunk-sdk-no-env │ │ └── index.d.ts │ ├── threshold.d.ts │ └── xlsx-populate.d.ts └── utils │ ├── ckl2poam.ts │ ├── csv.ts │ ├── emasser │ ├── apiConfig.ts │ ├── apiConnection.ts │ ├── generateConfig.ts │ ├── initConnection.ts │ ├── outputError.ts │ ├── outputFormatter.ts │ └── utilities.ts │ ├── global.ts │ ├── linter-formatter.js │ ├── logging.ts │ ├── oclif │ ├── baseCommand.ts │ ├── cliHelper.ts │ ├── help │ │ └── help.ts │ └── hooks │ │ └── command_not_found.ts │ ├── ohdf │ ├── calculations.ts │ ├── dataLoader.ts │ ├── outputGenerator.ts │ └── types.ts │ ├── threshold.ts │ └── xccdf2inspec.ts ├── test ├── commands │ ├── attest │ │ └── apply.test.ts │ ├── convert │ │ ├── anchoregrype2hdf.test.ts │ │ ├── burpsuite2hdf.test.ts │ │ ├── ckl2hdf.test.ts │ │ ├── ckl2poam.test.ts │ │ ├── cyclonedx_sbom2hdf.test.ts │ │ ├── dbprotect2hdf.spec.ts │ │ ├── dependency_track2hdf.test.ts │ │ ├── fortify2hdf.test.ts │ │ ├── gosec2hdf.test.ts │ │ ├── hdf2caat.test.ts │ │ ├── hdf2ckl.test.ts │ │ ├── hdf2csv.test.ts │ │ ├── jfrog_xray2hdf.test.ts │ │ ├── msft_secure2hdf.test.ts │ │ ├── netsparker2hdf.test.ts │ │ ├── neuvector2hdf.test.ts │ │ ├── nikto2hdf.test.ts │ │ ├── prisma2hdf.test.ts │ │ ├── sarif2hdf.test.ts │ │ ├── scoutsuite2hdf.test.ts │ │ ├── trufflehog2hdf.test.ts │ │ ├── twistlock2hdf.test.ts │ │ ├── veracode2hdf.test.ts │ │ ├── xccdf_results2hdf.test.ts │ │ └── zap2hdf.test.ts │ ├── emasser │ │ ├── delete.test.ts │ │ ├── get.test.ts │ │ ├── mock.server.ts │ │ ├── post.test.ts │ │ └── put.test.ts │ ├── generate │ │ ├── delta.test.ts │ │ ├── inspec_profile.test.ts │ │ ├── spreadsheet2inspec_stub.test.ts │ │ └── threshold.test.ts │ ├── supplement │ │ ├── passthrough.test.ts │ │ └── target.test.ts │ ├── utils.ts │ ├── validate │ │ └── threshold.test.ts │ └── view │ │ ├── heimdall-view-cli.test.ts │ │ └── summary.test.ts ├── sample_data │ ├── HDF │ │ ├── input │ │ │ ├── RHEL7_overrides_hdf.json │ │ │ ├── minimal-hdf.json │ │ │ ├── minimal_hdf.json │ │ │ ├── red_hat_good.json │ │ │ ├── rhel-8_hardened.json │ │ │ ├── triple_overlay_profile_example.json │ │ │ ├── triple_overlay_profile_sample.json │ │ │ └── vSphere8_report.json │ │ └── output │ │ │ ├── caat │ │ │ └── caat.xlsx │ │ │ ├── csv │ │ │ ├── red_hat_good_parsed_CSV.json │ │ │ └── triple_overlay_parsed_CSV.json │ │ │ └── summary │ │ │ ├── rhel-8_hardened_output.json │ │ │ ├── rhel-8_hardened_output.md │ │ │ └── rhel-8_hardened_output.yml │ ├── anchoregrype │ │ ├── amazon-grype-hdf.json │ │ ├── amazon-grype-withraw.json │ │ ├── anchore-grype-hdf.json │ │ ├── anchore-grype-withraw.json │ │ ├── sample_input_report │ │ │ ├── amazon.json │ │ │ ├── anchore_grype.json │ │ │ └── tensorflow.json │ │ ├── tensorflow-grype-hdf.json │ │ └── tensorflow-grype-withraw.json │ ├── asff │ │ ├── asff-aws_foundational_security_best_practices_v1.0.0-hdf.json │ │ ├── asff-cis_aws-foundations_benchmark_v1.2.0-hdf.json │ │ ├── asff-hdf.json │ │ ├── example-3-layer-overlay_hdf.json │ │ ├── prowler-hdf.json │ │ ├── rhel7_V-71931-hdf.json │ │ ├── sample_input_report │ │ │ ├── asff_sample.json │ │ │ ├── example-3-layer-overlay_asff.json │ │ │ └── rhel7_V-71931_asff.json │ │ └── trivy-image_golang-1.12-alpine-hdf.json │ ├── attestations │ │ ├── attestations_jsonFormat.json │ │ ├── attestations_xlsxFormat.xlsx │ │ ├── attestations_yamlFormat.yaml │ │ ├── rhel8_sample_oneOfEachControlStatus.json │ │ ├── rhel8_sample_oneOfEachControlStatus_output.json │ │ ├── triple_overlay_attested.json │ │ ├── triple_overlay_example-attestations.json │ │ └── triple_overlay_example-attestations.yml │ ├── aws │ │ └── aws_config_hdf.json │ ├── burpsuite │ │ ├── burpsuite-hdf-withraw.json │ │ ├── burpsuite-hdf.json │ │ └── sample_input_report │ │ │ └── zero.webappsecurity.com.min │ ├── checklist │ │ ├── checklist-RHEL8V1R3-hdf-with-raw.json │ │ ├── checklist-RHEL8V1R3-hdf.json │ │ ├── converted-rhel7_overrides.ckl │ │ ├── metadata.json │ │ ├── red_hat_good.ckl │ │ ├── red_hat_good_metadata.ckl │ │ ├── sample_input_report │ │ │ ├── ckl_with_invalid_metadata.ckl │ │ │ ├── converted-RHEL8V1R3.ckl │ │ │ ├── invalid_metadata.json │ │ │ ├── small_ckl_overrides.ckl │ │ │ └── three_stig_checklist.ckl │ │ ├── small_overrides_hdf.json │ │ ├── three_stig_checklist-hdf.json │ │ └── vSphere8_report.ckl │ ├── conveyor │ │ ├── conveyor-clamav-hdf.json │ │ ├── conveyor-codequality-hdf.json │ │ ├── conveyor-hdf.json │ │ ├── conveyor-moldy-hdf.json │ │ ├── conveyor-stigma-hdf.json │ │ └── sample_input_report │ │ │ ├── large-results.json │ │ │ └── sample-results.json │ ├── csv │ │ └── input │ │ │ ├── Ubuntu.csv │ │ │ └── stig.csv │ ├── cyclonedx_sbom │ │ ├── sample_input_report │ │ │ ├── dropwizard-no-vulns.json │ │ │ ├── dropwizard-vex.json │ │ │ ├── dropwizard-vulns.json │ │ │ ├── generated-saf-sbom.json │ │ │ ├── spdx-to-cyclonedx.json │ │ │ ├── syft-scan-alpine-container.json │ │ │ └── vex.json │ │ ├── sbom-converted-spdx-hdf-withraw.json │ │ ├── sbom-converted-spdx-hdf.json │ │ ├── sbom-dropwizard-no-vulns-hdf-withraw.json │ │ ├── sbom-dropwizard-no-vulns-hdf.json │ │ ├── sbom-dropwizard-vex-hdf-withraw.json │ │ ├── sbom-dropwizard-vex-hdf.json │ │ ├── sbom-dropwizard-vulns-hdf-withraw.json │ │ ├── sbom-dropwizard-vulns-hdf.json │ │ ├── sbom-saf-hdf-withraw.json │ │ ├── sbom-saf-hdf.json │ │ ├── sbom-syft-alpine-container-hdf-withraw.json │ │ ├── sbom-syft-alpine-container-hdf.json │ │ ├── sbom-vex-hdf-withraw.json │ │ └── sbom-vex-hdf.json │ ├── dbprotect │ │ ├── dbprotect-check-hdf-withraw.json │ │ ├── dbprotect-check-hdf.json │ │ ├── dbprotect-findings-hdf-withraw.json │ │ ├── dbprotect-findings-hdf.json │ │ └── sample_input_report │ │ │ ├── DbProtect-Check-Results-Details-XML-Sample.xml │ │ │ └── DbProtect-Findings-Detail-XML-Sample.xml │ ├── dependency_track │ │ ├── hdf-default-withraw.json │ │ ├── hdf-default.json │ │ ├── hdf-info-vulnerability.json │ │ ├── hdf-no-vulnerabilities.json │ │ ├── hdf-optional-attributes.json │ │ ├── hdf-with-attributions.json │ │ └── sample_input_report │ │ │ ├── fpf-default.json │ │ │ ├── fpf-info-vulnerability.json │ │ │ ├── fpf-no-vulnerabilities.json │ │ │ ├── fpf-optional-attributes.json │ │ │ └── fpf-with-attributions.json │ ├── fortify │ │ ├── fortify-hdf-withraw.json │ │ ├── fortify-hdf.json │ │ └── sample_input_report │ │ │ └── fortify_webgoat_results.fvdl │ ├── gosec │ │ ├── go-ethereum-all-unsuppressed-gosec-hdf-withraw.json │ │ ├── go-ethereum-all-unsuppressed-gosec-hdf.json │ │ ├── go-ethereum-external-unsuppressed-gosec-hdf-withraw.json │ │ ├── go-ethereum-external-unsuppressed-gosec-hdf.json │ │ ├── grype-gosec-hdf-withraw.json │ │ ├── grype-gosec-hdf.json │ │ └── sample_input_report │ │ │ ├── Go_Ethereum_gosec_results_all_suppressed.json │ │ │ ├── Go_Ethereum_gosec_results_external_suppressed.json │ │ │ └── Grype_gosec_results.json │ ├── inspec │ │ └── json │ │ │ ├── Ubuntu-18.04-Profile.json │ │ │ ├── profile_and_controls │ │ │ ├── Windows_Server_2022_v1r3_mini-profile.json │ │ │ └── windows_server_2022_v1r3_mini_controls │ │ │ │ ├── V-93205.rb │ │ │ │ ├── V-93207.rb │ │ │ │ ├── V-93369.rb │ │ │ │ ├── V-93461.rb │ │ │ │ └── V-93473.rb │ │ │ └── rhel-7-v3r7-mini-sample-profile.json │ ├── jfrog_xray │ │ ├── jfrog-hdf-withraw.json │ │ ├── jfrog-hdf.json │ │ └── sample_input_report │ │ │ └── jfrog_xray_sample.json │ ├── msft_secure │ │ ├── sample_input_report │ │ │ ├── combined.json │ │ │ ├── profiles.json │ │ │ └── secureScore.json │ │ ├── secure_score-hdf-withraws.json │ │ └── secure_score-hdfs.json │ ├── nessus │ │ ├── nessus-hdf-10.0.0.1-withraw.json │ │ ├── nessus-hdf-10.0.0.1.json │ │ ├── nessus-hdf-10.0.0.2-withraw.json │ │ ├── nessus-hdf-10.0.0.2.json │ │ ├── nessus-hdf-10.0.0.3-withraw.json │ │ ├── nessus-hdf-10.0.0.3.json │ │ └── sample_input_report │ │ │ └── sample.nessus │ ├── netsparker │ │ ├── netsparker-hdf-withraw.json │ │ ├── netsparker-hdf.json │ │ └── sample_input_report │ │ │ └── sample-netsparker-invicti.xml │ ├── neuvector │ │ ├── neuvector-hdf-mitre-caldera.json │ │ ├── neuvector-hdf-mitre-heimdall.json │ │ ├── neuvector-hdf-mitre-heimdall2.json │ │ ├── neuvector-hdf-mitre-vulcan.json │ │ ├── neuvector-hdf-withraw-mitre-caldera.json │ │ ├── neuvector-hdf-withraw-mitre-heimdall.json │ │ ├── neuvector-hdf-withraw-mitre-heimdall2.json │ │ ├── neuvector-hdf-withraw-mitre-vulcan.json │ │ └── sample_input_report │ │ │ ├── neuvector-mitre-caldera.json │ │ │ ├── neuvector-mitre-heimdall.json │ │ │ ├── neuvector-mitre-heimdall2.json │ │ │ └── neuvector-mitre-vulcan.json │ ├── nikto │ │ ├── nikto-hdf-withraw.json │ │ ├── nikto-hdf.json │ │ └── sample_input_report │ │ │ └── zero.webappsecurity.json │ ├── passthrough │ │ ├── minimal-hdf-passthrough-nonobject.json │ │ ├── minimal-hdf-passthrough-object.json │ │ └── passthrough-object.json │ ├── prisma │ │ ├── localhost.json │ │ ├── my-fake-host-1.somewhere.cloud.json │ │ ├── my-fake-host-10.somewhere.cloud.json │ │ ├── my-fake-host-11.somewhere.cloud.json │ │ ├── my-fake-host-12.somewhere.cloud.json │ │ ├── my-fake-host-13.somewhere.cloud.json │ │ ├── my-fake-host-14.somewhere.cloud.json │ │ ├── my-fake-host-15.somewhere.cloud.json │ │ ├── my-fake-host-2.somewhere.cloud.json │ │ ├── my-fake-host-3.somewhere.cloud.json │ │ ├── my-fake-host-4.somewhere.cloud.json │ │ ├── my-fake-host-5.somewhere.cloud.json │ │ ├── my-fake-host-6.somewhere.cloud.json │ │ ├── my-fake-host-7.somewhere.cloud.json │ │ ├── my-fake-host-8.somewhere.cloud.json │ │ ├── my-fake-host-9.somewhere.cloud.json │ │ └── sample_input_report │ │ │ └── prismacloud_sample.csv │ ├── prowler │ │ ├── prowler-hdf.json │ │ └── sample_input_report │ │ │ ├── prowler-sample.asff-json │ │ │ └── prowler_sample.json │ ├── sarif │ │ ├── sample_input_report │ │ │ └── sarif_input.sarif │ │ ├── sarif-hdf-withraw.json │ │ └── sarif-hdf.json │ ├── scoutsuite │ │ ├── sample_input_report │ │ │ └── scoutsuite_sample.js │ │ ├── scoutsuite-hdf-withraw.json │ │ └── scoutsuite-hdf.json │ ├── snyk │ │ ├── nodejs-goof-local-hdf.json │ │ ├── nodejs-goof-remote-hdf.json │ │ └── sample_input_report │ │ │ ├── nodejs-goof-local.json │ │ │ └── nodejs-goof-remote.json │ ├── sonarqube │ │ ├── sonarqube-branch-hdf.json │ │ ├── sonarqube-hdf.json │ │ └── sonarqube-pull-request-hdf.json │ ├── target │ │ ├── minimal-hdf-target-nonobject.json │ │ ├── minimal-hdf-target-object.json │ │ └── target-object.json │ ├── thresholds │ │ ├── red_hat_good.counts.good.yml │ │ ├── rhel-8_hardened.counts.bad.noimpactHigh.yml │ │ ├── rhel-8_hardened.counts.good.exact.yml │ │ ├── triple_overlay_profile_example.json.counts.bad.compliance.yml │ │ ├── triple_overlay_profile_example.json.counts.bad.total.yml │ │ ├── triple_overlay_profile_example.json.counts.good.yml │ │ └── triple_overlay_profile_example.json.counts.totalMinMax.yml │ ├── trivy │ │ ├── sample_input_report │ │ │ └── trivy-image_golang-1.12-alpine_sample.json │ │ └── trivy-image_golang-1.12-alpine-hdf.json │ ├── trufflehog │ │ ├── sample_input_report │ │ │ ├── trufflehog.json │ │ │ ├── trufflehog_docker_example.json │ │ │ ├── trufflehog_dup.ndjson │ │ │ ├── trufflehog_report_example.json │ │ │ └── trufflehog_saf_example.json │ │ ├── trufflehog-docker-hdf-withraw.json │ │ ├── trufflehog-docker-hdf.json │ │ ├── trufflehog-hdf-withraw.json │ │ ├── trufflehog-hdf.json │ │ ├── trufflehog-ndjson-dup-hdf.json │ │ ├── trufflehog-report-example-hdf-withraw.json │ │ ├── trufflehog-report-example-hdf.json │ │ ├── trufflehog-saf-hdf-withraw.json │ │ └── trufflehog-saf-hdf.json │ ├── twistlock │ │ ├── sample_input_report │ │ │ ├── twistlock-twistcli-coderepo-scan-sample.json │ │ │ └── twistlock-twistcli-sample-1.json │ │ ├── twistlock-coderepo-hdf-withraw.json │ │ ├── twistlock-coderepo-hdf.json │ │ ├── twistlock-hdf-withraw.json │ │ └── twistlock-hdf.json │ ├── utils │ │ └── ohdf │ │ │ └── calculations │ │ │ ├── calculateComplianceScoresForExecJSONs.sample │ │ │ ├── calculateSeverityCounts.sample │ │ │ ├── calculateSummariesForExecJSONs.sample │ │ │ ├── calculateTotalCounts.sample │ │ │ └── calculateTotalCountsForSummaries.sample │ ├── veracode │ │ ├── sample_input_report │ │ │ └── veracode.xml │ │ └── veracode-hdf.json │ ├── xccdf │ │ ├── cis │ │ │ ├── CIS_AlmaLinux_OS_9_Benchmark_v2.0.0-xccdf.xml │ │ │ ├── CIS_Amazon_Linux_2_Benchmark_v3.0.0-xccdf.xml │ │ │ ├── CIS_Apache_Tomcat_10_Benchmark_v1.1.0-xccdf.xml │ │ │ └── CIS_Microsoft_IIS_10_Benchmark_v1.2.1-xccdf.xml │ │ └── stigs │ │ │ ├── FULL_Windows_Server_2022_V2R1_mini-sample-xccdf.xml │ │ │ ├── U_ASD_STIG_V5R1_Manual-xccdf.xml │ │ │ ├── U_Adobe_ColdFusion_11_STIG_V1R4_Manual-xccdf.xml │ │ │ ├── U_Apache_Tomcat_Application_Server_9_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_Apache_Tomcat_Application_Server_9_STIG_V2R3_Manual-xccdf.xml │ │ │ ├── U_Apple_OS_X_10-14_STIG_V2R3_Manual-xccdf.xml │ │ │ ├── U_Apple_OS_X_10-14_STIG_V2R4_Manual-xccdf.xml │ │ │ ├── U_Apple_OS_X_10-15_STIG_V1R4_Manual-xccdf.xml │ │ │ ├── U_Apple_OS_X_10-15_STIG_V1R5_Manual-xccdf.xml │ │ │ ├── U_Apple_macOS_11_STIG_V1R2_Manual-xccdf.xml │ │ │ ├── U_Apple_macOS_11_STIG_V1R3_Manual-xccdf.xml │ │ │ ├── U_Application_Layer_Gateway_V1R2_Manual-xccdf.xml │ │ │ ├── U_Application_Server_SRG_V3R1_Manual-xccdf.xml │ │ │ ├── U_CAN_Ubuntu_18-04_LTS_STIG_V2R3_Manual-xccdf.xml │ │ │ ├── U_CAN_Ubuntu_18-04_LTS_STIG_V2R4_Manual-xccdf.xml │ │ │ ├── U_CAN_Ubuntu_20-04_LTS_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_CA_API_Gateway_ALG_STIG_V1R2_Manual-xccdf.xml │ │ │ ├── U_CD_PGSQL_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_Central_Log_Server_SRG_V1R4_Manual-xccdf.xml │ │ │ ├── U_Central_Log_Server_SRG_V2R1_Manual-xccdf.xml │ │ │ ├── U_Cisco_IOS-XE_Router_RTR_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_Cisco_IOS-XR_Router_RTR_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_Cisco_IOS_Router_RTR_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_Cisco_IOS_XE_Switch_RTR_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_Cisco_NX-OS_Switch_RTR_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_Container_Platform_SRG_V1R1_Manual-xccdf.xml │ │ │ ├── U_Container_Platform_SRG_V1R2_Manual-xccdf.xml │ │ │ ├── U_Database_SRG_V3R1_Manual-xccdf.xml │ │ │ ├── U_Docker_Enterprise_2-x_Linux-UNIX_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_Domain_Name_System_V2R4_Manual-xccdf.xml │ │ │ ├── U_EDB_PGS_Advanced_Server_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_EDB_Postgres_Advanced_Server_v11_on_Windows_V2R1_Manual-xccdf.xml │ │ │ ├── U_F5_BIG-IP_Device_Management_11-x_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_F5_BIG-IP_Local_Traffic_Manager_11-x_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_General_Purpose_Operating_System_SRG_V1R6_Manual-xccdf.xml │ │ │ ├── U_General_Purpose_Operating_System_SRG_V2R1_Manual-xccdf.xml │ │ │ ├── U_HP_FlexFabric_Switch_NDM_STIG_V1R3_Manual-xccdf.xml │ │ │ ├── U_IBM_AIX_7-x_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_IBM_AIX_7-x_STIG_V2R3_Manual-xccdf.xml │ │ │ ├── U_IBM_DB2_V10-5_LUW_STIG_V1R4_Manual-xccdf.xml │ │ │ ├── U_IBM_DataPower_ALG_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_IBM_WebSphere_Traditional_V9-x_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_IBM_zOS_ACF2_STIG_V8R2_Manual-xccdf.xml │ │ │ ├── U_IBM_zOS_ACF2_STIG_V8R3_Manual-xccdf.xml │ │ │ ├── U_IBM_zOS_RACF_STIG_V8R3_Manual-xccdf.xml │ │ │ ├── U_IBM_zOS_RACF_STIG_V8R4_Manual-xccdf.xml │ │ │ ├── U_IBM_zOS_TSS_STIG_V8R2_Manual-xccdf.xml │ │ │ ├── U_IBM_zOS_TSS_STIG_V8R3_Manual-xccdf.xml │ │ │ ├── U_IB_8-x_DNS_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_Juniper_Router_RTR_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_Kubernetes_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_Kubernetes_STIG_V1R2_Manual-xccdf.xml │ │ │ ├── U_MS_IE11_STIG_V1R19_Manual-xccdf.xml │ │ │ ├── U_MS_Office_365_ProPlus_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_MS_Office_365_ProPlus_STIG_V2R3_Manual-xccdf.xml │ │ │ ├── U_MS_Outlook_2010_STIG_V1R13_Manual-xccdf.xml │ │ │ ├── U_MS_Outlook_2013_STIG_V1R13_Manual-xccdf.xml │ │ │ ├── U_MS_SQL_Server_2014_Instance_STIG_V1R10_Manual-xccdf.xml │ │ │ ├── U_MS_SQL_Server_2014_Instance_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_MS_SQL_Server_2016_Instance_STIG_V2R3_Manual-xccdf.xml │ │ │ ├── U_MS_SQL_Server_2016_Instance_STIG_V2R4_Manual-xccdf.xml │ │ │ ├── U_MS_Windows_10_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_MS_Windows_2012_and_2012_R2_DC_STIG_V3R2_Manual-xccdf.xml │ │ │ ├── U_MS_Windows_2012_and_2012_R2_MS_STIG_V3R2_Manual-xccdf.xml │ │ │ ├── U_MS_Windows_Server_2016_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_MS_Windows_Server_2019_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_Mainframe_Product_SRG_V1R4_Manual-xccdf.xml │ │ │ ├── U_McAfee_VirusScan88_Local_Client_STIG_V5R16_Manual-xccdf.xml │ │ │ ├── U_McAfee_VirusScan88_Managed_Client_STIG_V5R21_Manual-xccdf.xml │ │ │ ├── U_Microsoft_Windows_2012_Server_DNS_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_Microsoft_Windows_2012_Server_DNS_STIG_V2R3_Manual-xccdf.xml │ │ │ ├── U_NDM_SRG_V4R1_Manual-xccdf.xml │ │ │ ├── U_Oracle_Database_11-2g_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_Oracle_Database_11g_Installation_STIG_V8R20_Manual-xccdf.xml │ │ │ ├── U_Oracle_Database_11g_Instance_STIG_V8R20_Manual-xccdf.xml │ │ │ ├── U_Oracle_Database_12c_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_Oracle_HTTP_Server_12-1-3_STIG_V1R7_Manual-xccdf.xml │ │ │ ├── U_Oracle_Linux_6_STIG_V2R3_Manual-xccdf.xml │ │ │ ├── U_Oracle_Linux_6_STIG_V2R4_Manual-xccdf.xml │ │ │ ├── U_Oracle_Linux_7_V2R3_Manual-xccdf.xml │ │ │ ├── U_Oracle_Linux_7_V2R4_Manual-xccdf.xml │ │ │ ├── U_Oracle_MySQL_8-0_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_Oracle_WebLogic_Server_12c_V2R1_Manual-xccdf.xml │ │ │ ├── U_PGS_SQL_9-x_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_PGS_SQL_9-x_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_RHEL_7_STIG_V2R7_Manual-xccdf.xml │ │ │ ├── U_RHEL_7_STIG_V3R3_Manual-xccdf.xml │ │ │ ├── U_RHEL_7_STIG_V3R4_Manual-xccdf.xml │ │ │ ├── U_RHEL_8_STIG_V1R2_Manual-xccdf.xml │ │ │ ├── U_RHEL_8_STIG_V1R3_Manual-xccdf.xml │ │ │ ├── U_Router_SRG_V4R2_Manual-xccdf.xml │ │ │ ├── U_SLES_12_STIG_V2R3_Manual-xccdf.xml │ │ │ ├── U_SLES_12_STIG_V2R4_Manual-xccdf.xml │ │ │ ├── U_SLES_15_STIG_V1R2_Manual-xccdf.xml │ │ │ ├── U_SLES_15_STIG_V1R3_Manual-xccdf.xml │ │ │ ├── U_SOL_10_SPARC_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_SOL_10_x86_STIG_V2R2_Manual-xccdf.xml │ │ │ ├── U_SOL_11_SPARC_STIG_V2R3_Manual-xccdf.xml │ │ │ ├── U_SOL_11_SPARC_STIG_V2R4_Manual-xccdf.xml │ │ │ ├── U_SOL_11_X86_STIG_V2R3_Manual-xccdf.xml │ │ │ ├── U_SOL_11_X86_STIG_V2R4_Manual-xccdf.xml │ │ │ ├── U_SYM_ProxySG_ALG_STIG_V1R3_Manual-xccdf.xml │ │ │ ├── U_Tanium_7-0_STIG_V1R2_Manual-xccdf.xml │ │ │ ├── U_Tanium_7-3_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_Traditional_Security_Checklist_V1R3_Manual-xccdf.xml │ │ │ ├── U_Trend_Micro_Deep_Security_9-x_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_UEM_Server_SRG_V1R1_Manual-xccdf.xml │ │ │ ├── U_VMW_vRealize_Automation_7-x_SLES_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_VMW_vRealize_Automation_7-x_SLES_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_VMW_vRealize_Automation_7-x_tc_Server_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_VMW_vRealize_Automation_7-x_tc_Server_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_VMW_vRealize_Ops_6-x_SLES_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_VMW_vRealize_Ops_6-x_SLES_STIG_V2R1_Manual-xccdf.xml │ │ │ ├── U_VMW_vRealize_Ops_6-x_tc_Server_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_VMW_vSphere_6-7_Photon_OS_STIG_V1R1_Manual-xccdf.xml │ │ │ ├── U_VPN_SRG_V2R3_Manual-xccdf.xml │ │ │ ├── U_Video_Services_Policy_STIG_V1R11_Manual-xccdf.xml │ │ │ ├── U_Voice_Video_Services_Policy_STIG_V3R17_Manual-xccdf.xml │ │ │ ├── U_Web_Server_V2R3_Manual-xccdf.xml │ │ │ ├── Windows_Server_2022_V2R1_mini-sample-xccdf.xml │ │ │ └── rhel-7-v3r8-mini-sample-xxcdf.xml │ ├── xccdf_results │ │ ├── sample_input_report │ │ │ ├── xccdf-results-openscap-rhel7.xml │ │ │ ├── xccdf-results-openscap-rhel8.xml │ │ │ ├── xccdf-results-scc-rhel7.xml │ │ │ └── xccdf-results-scc-rhel8.xml │ │ ├── xccdf-openscap-rhel7-hdf-withraw.json │ │ ├── xccdf-openscap-rhel7-hdf.json │ │ ├── xccdf-openscap-rhel8-hdf-withraw.json │ │ ├── xccdf-openscap-rhel8-hdf.json │ │ ├── xccdf-scc-rhel7-hdf-withraw.json │ │ ├── xccdf-scc-rhel7-hdf.json │ │ ├── xccdf-scc-rhel8-hdf-withraw.json │ │ └── xccdf-scc-rhel8-hdf.json │ └── zap │ │ ├── sample_input_report │ │ ├── webgoat.json │ │ └── zero.webappsecurity.json │ │ ├── zap-webappsecurity-hdf-withraw.json │ │ ├── zap-webappsecurity-hdf.json │ │ ├── zap-webgoat-hdf-withraw.json │ │ └── zap-webgoat-hdf.json ├── tsconfig.json └── utils │ ├── __tests__ │ ├── global.test.ts │ └── logging.test.ts │ └── ohdf │ ├── __tests__ │ └── outputGenerator.test.ts │ ├── calculations.test.ts │ └── dataloader.test.ts ├── tsconfig.json └── vitest.config.ts /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.env-example -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/mergify.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/anchore-syft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/anchore-syft.yml -------------------------------------------------------------------------------- /.github/workflows/auto-approve-and-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/auto-approve-and-merge.yml -------------------------------------------------------------------------------- /.github/workflows/build-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/build-macos.yml -------------------------------------------------------------------------------- /.github/workflows/build-rpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/build-rpm.yml -------------------------------------------------------------------------------- /.github/workflows/build-windows-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/build-windows-linux.yml -------------------------------------------------------------------------------- /.github/workflows/bump-brew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/bump-brew.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/draft-release.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/e2e-ci.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/push-to-docker-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/push-to-docker-main.yml -------------------------------------------------------------------------------- /.github/workflows/push-to-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/push-to-docker.yml -------------------------------------------------------------------------------- /.github/workflows/push-to-npm-gpr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/push-to-npm-gpr.yml -------------------------------------------------------------------------------- /.github/workflows/test-docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.github/workflows/test-docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.0.0 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | saf-cli.mitre.org -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.5.1 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/_config.yml -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /docs/contributors-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/docs/contributors-guide.md -------------------------------------------------------------------------------- /docs/emasser/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/docs/emasser/index.md -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /oclif-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/oclif-theme.json -------------------------------------------------------------------------------- /pack-hdf-converters.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/pack-hdf-converters.bat -------------------------------------------------------------------------------- /pack-hdf-converters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/pack-hdf-converters.sh -------------------------------------------------------------------------------- /pack-heimdall-lite.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/pack-heimdall-lite.bat -------------------------------------------------------------------------------- /pack-heimdall-lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/pack-heimdall-lite.sh -------------------------------------------------------------------------------- /pack-inspec-objects.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/pack-inspec-objects.bat -------------------------------------------------------------------------------- /pack-inspec-objects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/pack-inspec-objects.sh -------------------------------------------------------------------------------- /pack-inspecjs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/pack-inspecjs.bat -------------------------------------------------------------------------------- /pack-inspecjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/pack-inspecjs.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/package.json -------------------------------------------------------------------------------- /release-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/release-prep.ps1 -------------------------------------------------------------------------------- /release-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/release-prep.sh -------------------------------------------------------------------------------- /saf-cli.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/saf-cli.code-workspace -------------------------------------------------------------------------------- /saf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/saf.spec -------------------------------------------------------------------------------- /src/commands/attest/apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/attest/apply.ts -------------------------------------------------------------------------------- /src/commands/attest/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/attest/create.ts -------------------------------------------------------------------------------- /src/commands/convert/anchoregrype2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/anchoregrype2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/asff2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/asff2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/aws_config2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/aws_config2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/burpsuite2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/burpsuite2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/ckl2POAM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/ckl2POAM.ts -------------------------------------------------------------------------------- /src/commands/convert/ckl2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/ckl2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/conveyor2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/conveyor2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/cyclonedx_sbom2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/cyclonedx_sbom2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/dbprotect2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/dbprotect2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/dependency_track2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/dependency_track2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/fortify2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/fortify2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/gosec2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/gosec2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/hdf2asff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/hdf2asff.ts -------------------------------------------------------------------------------- /src/commands/convert/hdf2caat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/hdf2caat.ts -------------------------------------------------------------------------------- /src/commands/convert/hdf2ckl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/hdf2ckl.ts -------------------------------------------------------------------------------- /src/commands/convert/hdf2condensed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/hdf2condensed.ts -------------------------------------------------------------------------------- /src/commands/convert/hdf2csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/hdf2csv.ts -------------------------------------------------------------------------------- /src/commands/convert/hdf2splunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/hdf2splunk.ts -------------------------------------------------------------------------------- /src/commands/convert/hdf2xccdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/hdf2xccdf.ts -------------------------------------------------------------------------------- /src/commands/convert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/index.ts -------------------------------------------------------------------------------- /src/commands/convert/ionchannel2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/ionchannel2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/jfrog_xray2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/jfrog_xray2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/msft_secure2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/msft_secure2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/nessus2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/nessus2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/netsparker2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/netsparker2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/neuvector2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/neuvector2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/nikto2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/nikto2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/prisma2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/prisma2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/prowler2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/prowler2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/sarif2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/sarif2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/scoutsuite2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/scoutsuite2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/snyk2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/snyk2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/sonarqube2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/sonarqube2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/splunk2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/splunk2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/trivy2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/trivy2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/trufflehog2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/trufflehog2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/twistlock2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/twistlock2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/veracode2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/veracode2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/xccdf_results2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/xccdf_results2hdf.ts -------------------------------------------------------------------------------- /src/commands/convert/zap2hdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/convert/zap2hdf.ts -------------------------------------------------------------------------------- /src/commands/emasser/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/configure.ts -------------------------------------------------------------------------------- /src/commands/emasser/delete/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/delete/artifacts.ts -------------------------------------------------------------------------------- /src/commands/emasser/delete/cloud_resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/delete/cloud_resources.ts -------------------------------------------------------------------------------- /src/commands/emasser/delete/container_scans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/delete/container_scans.ts -------------------------------------------------------------------------------- /src/commands/emasser/delete/hardware_baseline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/delete/hardware_baseline.ts -------------------------------------------------------------------------------- /src/commands/emasser/delete/milestones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/delete/milestones.ts -------------------------------------------------------------------------------- /src/commands/emasser/delete/poams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/delete/poams.ts -------------------------------------------------------------------------------- /src/commands/emasser/delete/software_baseline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/delete/software_baseline.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/artifacts.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/cac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/cac.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/cmmc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/cmmc.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/controls.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/dashboards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/dashboards.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/hardware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/hardware.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/milestones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/milestones.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/pac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/pac.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/poams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/poams.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/roles.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/software.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/software.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/system.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/systems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/systems.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/test_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/test_connection.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/test_results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/test_results.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/workflow_definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/workflow_definitions.ts -------------------------------------------------------------------------------- /src/commands/emasser/get/workflow_instances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/get/workflow_instances.ts -------------------------------------------------------------------------------- /src/commands/emasser/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/hello.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/artifacts.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/cac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/cac.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/cloud_resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/cloud_resources.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/container_scans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/container_scans.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/device_scans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/device_scans.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/hardware_baseline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/hardware_baseline.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/milestones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/milestones.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/pac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/pac.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/poams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/poams.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/register.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/software_baseline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/software_baseline.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/static_code_scans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/static_code_scans.ts -------------------------------------------------------------------------------- /src/commands/emasser/post/test_results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/post/test_results.ts -------------------------------------------------------------------------------- /src/commands/emasser/put/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/put/artifacts.ts -------------------------------------------------------------------------------- /src/commands/emasser/put/controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/put/controls.ts -------------------------------------------------------------------------------- /src/commands/emasser/put/hardware_baseline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/put/hardware_baseline.ts -------------------------------------------------------------------------------- /src/commands/emasser/put/milestones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/put/milestones.ts -------------------------------------------------------------------------------- /src/commands/emasser/put/poams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/put/poams.ts -------------------------------------------------------------------------------- /src/commands/emasser/put/software_baseline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/put/software_baseline.ts -------------------------------------------------------------------------------- /src/commands/emasser/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/emasser/version.ts -------------------------------------------------------------------------------- /src/commands/generate/ckl_metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/generate/ckl_metadata.ts -------------------------------------------------------------------------------- /src/commands/generate/delta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/generate/delta.ts -------------------------------------------------------------------------------- /src/commands/generate/inspec_metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/generate/inspec_metadata.ts -------------------------------------------------------------------------------- /src/commands/generate/inspec_profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/generate/inspec_profile.ts -------------------------------------------------------------------------------- /src/commands/generate/spreadsheet2inspec_stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/generate/spreadsheet2inspec_stub.ts -------------------------------------------------------------------------------- /src/commands/generate/threshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/generate/threshold.ts -------------------------------------------------------------------------------- /src/commands/generate/update_controls4delta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/generate/update_controls4delta.ts -------------------------------------------------------------------------------- /src/commands/harden/harden.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/harden/harden.ts -------------------------------------------------------------------------------- /src/commands/scan/scan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/scan/scan.ts -------------------------------------------------------------------------------- /src/commands/supplement/passthrough/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/supplement/passthrough/read.ts -------------------------------------------------------------------------------- /src/commands/supplement/passthrough/write.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/supplement/passthrough/write.ts -------------------------------------------------------------------------------- /src/commands/supplement/target/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/supplement/target/read.ts -------------------------------------------------------------------------------- /src/commands/supplement/target/write.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/supplement/target/write.ts -------------------------------------------------------------------------------- /src/commands/validate/threshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/validate/threshold.ts -------------------------------------------------------------------------------- /src/commands/view/heimdall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/view/heimdall.ts -------------------------------------------------------------------------------- /src/commands/view/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/commands/view/summary.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export {run} from '@oclif/core' 2 | -------------------------------------------------------------------------------- /src/resources/cis2nist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/resources/cis2nist.json -------------------------------------------------------------------------------- /src/resources/files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/resources/files.json -------------------------------------------------------------------------------- /src/types/STIG.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/types/STIG.d.ts -------------------------------------------------------------------------------- /src/types/accurate-search/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'accurate-search'; 2 | -------------------------------------------------------------------------------- /src/types/csv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/types/csv.d.ts -------------------------------------------------------------------------------- /src/types/emass_client/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@mitre/emass_client'; 2 | -------------------------------------------------------------------------------- /src/types/fuse/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'fuse.js' 2 | -------------------------------------------------------------------------------- /src/types/inspec.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/types/inspec.d.ts -------------------------------------------------------------------------------- /src/types/splunk-sdk-no-env/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/types/splunk-sdk-no-env/index.d.ts -------------------------------------------------------------------------------- /src/types/threshold.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/types/threshold.d.ts -------------------------------------------------------------------------------- /src/types/xlsx-populate.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'xlsx-populate' 2 | -------------------------------------------------------------------------------- /src/utils/ckl2poam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/ckl2poam.ts -------------------------------------------------------------------------------- /src/utils/csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/csv.ts -------------------------------------------------------------------------------- /src/utils/emasser/apiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/emasser/apiConfig.ts -------------------------------------------------------------------------------- /src/utils/emasser/apiConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/emasser/apiConnection.ts -------------------------------------------------------------------------------- /src/utils/emasser/generateConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/emasser/generateConfig.ts -------------------------------------------------------------------------------- /src/utils/emasser/initConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/emasser/initConnection.ts -------------------------------------------------------------------------------- /src/utils/emasser/outputError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/emasser/outputError.ts -------------------------------------------------------------------------------- /src/utils/emasser/outputFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/emasser/outputFormatter.ts -------------------------------------------------------------------------------- /src/utils/emasser/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/emasser/utilities.ts -------------------------------------------------------------------------------- /src/utils/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/global.ts -------------------------------------------------------------------------------- /src/utils/linter-formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/linter-formatter.js -------------------------------------------------------------------------------- /src/utils/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/logging.ts -------------------------------------------------------------------------------- /src/utils/oclif/baseCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/oclif/baseCommand.ts -------------------------------------------------------------------------------- /src/utils/oclif/cliHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/oclif/cliHelper.ts -------------------------------------------------------------------------------- /src/utils/oclif/help/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/oclif/help/help.ts -------------------------------------------------------------------------------- /src/utils/oclif/hooks/command_not_found.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/oclif/hooks/command_not_found.ts -------------------------------------------------------------------------------- /src/utils/ohdf/calculations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/ohdf/calculations.ts -------------------------------------------------------------------------------- /src/utils/ohdf/dataLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/ohdf/dataLoader.ts -------------------------------------------------------------------------------- /src/utils/ohdf/outputGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/ohdf/outputGenerator.ts -------------------------------------------------------------------------------- /src/utils/ohdf/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/ohdf/types.ts -------------------------------------------------------------------------------- /src/utils/threshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/threshold.ts -------------------------------------------------------------------------------- /src/utils/xccdf2inspec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/src/utils/xccdf2inspec.ts -------------------------------------------------------------------------------- /test/commands/attest/apply.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/attest/apply.test.ts -------------------------------------------------------------------------------- /test/commands/convert/anchoregrype2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/anchoregrype2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/burpsuite2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/burpsuite2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/ckl2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/ckl2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/ckl2poam.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/ckl2poam.test.ts -------------------------------------------------------------------------------- /test/commands/convert/cyclonedx_sbom2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/cyclonedx_sbom2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/dbprotect2hdf.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/dbprotect2hdf.spec.ts -------------------------------------------------------------------------------- /test/commands/convert/dependency_track2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/dependency_track2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/fortify2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/fortify2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/gosec2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/gosec2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/hdf2caat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/hdf2caat.test.ts -------------------------------------------------------------------------------- /test/commands/convert/hdf2ckl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/hdf2ckl.test.ts -------------------------------------------------------------------------------- /test/commands/convert/hdf2csv.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/hdf2csv.test.ts -------------------------------------------------------------------------------- /test/commands/convert/jfrog_xray2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/jfrog_xray2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/msft_secure2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/msft_secure2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/netsparker2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/netsparker2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/neuvector2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/neuvector2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/nikto2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/nikto2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/prisma2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/prisma2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/sarif2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/sarif2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/scoutsuite2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/scoutsuite2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/trufflehog2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/trufflehog2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/twistlock2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/twistlock2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/veracode2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/veracode2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/xccdf_results2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/xccdf_results2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/convert/zap2hdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/convert/zap2hdf.test.ts -------------------------------------------------------------------------------- /test/commands/emasser/delete.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/emasser/delete.test.ts -------------------------------------------------------------------------------- /test/commands/emasser/get.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/emasser/get.test.ts -------------------------------------------------------------------------------- /test/commands/emasser/mock.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/emasser/mock.server.ts -------------------------------------------------------------------------------- /test/commands/emasser/post.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/emasser/post.test.ts -------------------------------------------------------------------------------- /test/commands/emasser/put.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/emasser/put.test.ts -------------------------------------------------------------------------------- /test/commands/generate/delta.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/generate/delta.test.ts -------------------------------------------------------------------------------- /test/commands/generate/inspec_profile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/generate/inspec_profile.test.ts -------------------------------------------------------------------------------- /test/commands/generate/spreadsheet2inspec_stub.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/generate/spreadsheet2inspec_stub.test.ts -------------------------------------------------------------------------------- /test/commands/generate/threshold.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/generate/threshold.test.ts -------------------------------------------------------------------------------- /test/commands/supplement/passthrough.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/supplement/passthrough.test.ts -------------------------------------------------------------------------------- /test/commands/supplement/target.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/supplement/target.test.ts -------------------------------------------------------------------------------- /test/commands/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/utils.ts -------------------------------------------------------------------------------- /test/commands/validate/threshold.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/validate/threshold.test.ts -------------------------------------------------------------------------------- /test/commands/view/heimdall-view-cli.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/view/heimdall-view-cli.test.ts -------------------------------------------------------------------------------- /test/commands/view/summary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/commands/view/summary.test.ts -------------------------------------------------------------------------------- /test/sample_data/HDF/input/RHEL7_overrides_hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/input/RHEL7_overrides_hdf.json -------------------------------------------------------------------------------- /test/sample_data/HDF/input/minimal-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/input/minimal-hdf.json -------------------------------------------------------------------------------- /test/sample_data/HDF/input/minimal_hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/input/minimal_hdf.json -------------------------------------------------------------------------------- /test/sample_data/HDF/input/red_hat_good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/input/red_hat_good.json -------------------------------------------------------------------------------- /test/sample_data/HDF/input/rhel-8_hardened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/input/rhel-8_hardened.json -------------------------------------------------------------------------------- /test/sample_data/HDF/input/triple_overlay_profile_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/input/triple_overlay_profile_example.json -------------------------------------------------------------------------------- /test/sample_data/HDF/input/triple_overlay_profile_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/input/triple_overlay_profile_sample.json -------------------------------------------------------------------------------- /test/sample_data/HDF/input/vSphere8_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/input/vSphere8_report.json -------------------------------------------------------------------------------- /test/sample_data/HDF/output/caat/caat.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/output/caat/caat.xlsx -------------------------------------------------------------------------------- /test/sample_data/HDF/output/csv/red_hat_good_parsed_CSV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/output/csv/red_hat_good_parsed_CSV.json -------------------------------------------------------------------------------- /test/sample_data/HDF/output/csv/triple_overlay_parsed_CSV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/output/csv/triple_overlay_parsed_CSV.json -------------------------------------------------------------------------------- /test/sample_data/HDF/output/summary/rhel-8_hardened_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/output/summary/rhel-8_hardened_output.json -------------------------------------------------------------------------------- /test/sample_data/HDF/output/summary/rhel-8_hardened_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/output/summary/rhel-8_hardened_output.md -------------------------------------------------------------------------------- /test/sample_data/HDF/output/summary/rhel-8_hardened_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/HDF/output/summary/rhel-8_hardened_output.yml -------------------------------------------------------------------------------- /test/sample_data/anchoregrype/amazon-grype-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/anchoregrype/amazon-grype-hdf.json -------------------------------------------------------------------------------- /test/sample_data/anchoregrype/amazon-grype-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/anchoregrype/amazon-grype-withraw.json -------------------------------------------------------------------------------- /test/sample_data/anchoregrype/anchore-grype-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/anchoregrype/anchore-grype-hdf.json -------------------------------------------------------------------------------- /test/sample_data/anchoregrype/anchore-grype-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/anchoregrype/anchore-grype-withraw.json -------------------------------------------------------------------------------- /test/sample_data/anchoregrype/sample_input_report/amazon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/anchoregrype/sample_input_report/amazon.json -------------------------------------------------------------------------------- /test/sample_data/anchoregrype/sample_input_report/anchore_grype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/anchoregrype/sample_input_report/anchore_grype.json -------------------------------------------------------------------------------- /test/sample_data/anchoregrype/sample_input_report/tensorflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/anchoregrype/sample_input_report/tensorflow.json -------------------------------------------------------------------------------- /test/sample_data/anchoregrype/tensorflow-grype-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/anchoregrype/tensorflow-grype-hdf.json -------------------------------------------------------------------------------- /test/sample_data/anchoregrype/tensorflow-grype-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/anchoregrype/tensorflow-grype-withraw.json -------------------------------------------------------------------------------- /test/sample_data/asff/asff-aws_foundational_security_best_practices_v1.0.0-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/asff/asff-aws_foundational_security_best_practices_v1.0.0-hdf.json -------------------------------------------------------------------------------- /test/sample_data/asff/asff-cis_aws-foundations_benchmark_v1.2.0-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/asff/asff-cis_aws-foundations_benchmark_v1.2.0-hdf.json -------------------------------------------------------------------------------- /test/sample_data/asff/asff-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/asff/asff-hdf.json -------------------------------------------------------------------------------- /test/sample_data/asff/example-3-layer-overlay_hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/asff/example-3-layer-overlay_hdf.json -------------------------------------------------------------------------------- /test/sample_data/asff/prowler-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/asff/prowler-hdf.json -------------------------------------------------------------------------------- /test/sample_data/asff/rhel7_V-71931-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/asff/rhel7_V-71931-hdf.json -------------------------------------------------------------------------------- /test/sample_data/asff/sample_input_report/asff_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/asff/sample_input_report/asff_sample.json -------------------------------------------------------------------------------- /test/sample_data/asff/sample_input_report/example-3-layer-overlay_asff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/asff/sample_input_report/example-3-layer-overlay_asff.json -------------------------------------------------------------------------------- /test/sample_data/asff/sample_input_report/rhel7_V-71931_asff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/asff/sample_input_report/rhel7_V-71931_asff.json -------------------------------------------------------------------------------- /test/sample_data/asff/trivy-image_golang-1.12-alpine-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/asff/trivy-image_golang-1.12-alpine-hdf.json -------------------------------------------------------------------------------- /test/sample_data/attestations/attestations_jsonFormat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/attestations/attestations_jsonFormat.json -------------------------------------------------------------------------------- /test/sample_data/attestations/attestations_xlsxFormat.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/attestations/attestations_xlsxFormat.xlsx -------------------------------------------------------------------------------- /test/sample_data/attestations/attestations_yamlFormat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/attestations/attestations_yamlFormat.yaml -------------------------------------------------------------------------------- /test/sample_data/attestations/rhel8_sample_oneOfEachControlStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/attestations/rhel8_sample_oneOfEachControlStatus.json -------------------------------------------------------------------------------- /test/sample_data/attestations/rhel8_sample_oneOfEachControlStatus_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/attestations/rhel8_sample_oneOfEachControlStatus_output.json -------------------------------------------------------------------------------- /test/sample_data/attestations/triple_overlay_attested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/attestations/triple_overlay_attested.json -------------------------------------------------------------------------------- /test/sample_data/attestations/triple_overlay_example-attestations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/attestations/triple_overlay_example-attestations.json -------------------------------------------------------------------------------- /test/sample_data/attestations/triple_overlay_example-attestations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/attestations/triple_overlay_example-attestations.yml -------------------------------------------------------------------------------- /test/sample_data/aws/aws_config_hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/aws/aws_config_hdf.json -------------------------------------------------------------------------------- /test/sample_data/burpsuite/burpsuite-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/burpsuite/burpsuite-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/burpsuite/burpsuite-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/burpsuite/burpsuite-hdf.json -------------------------------------------------------------------------------- /test/sample_data/burpsuite/sample_input_report/zero.webappsecurity.com.min: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/burpsuite/sample_input_report/zero.webappsecurity.com.min -------------------------------------------------------------------------------- /test/sample_data/checklist/checklist-RHEL8V1R3-hdf-with-raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/checklist-RHEL8V1R3-hdf-with-raw.json -------------------------------------------------------------------------------- /test/sample_data/checklist/checklist-RHEL8V1R3-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/checklist-RHEL8V1R3-hdf.json -------------------------------------------------------------------------------- /test/sample_data/checklist/converted-rhel7_overrides.ckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/converted-rhel7_overrides.ckl -------------------------------------------------------------------------------- /test/sample_data/checklist/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/metadata.json -------------------------------------------------------------------------------- /test/sample_data/checklist/red_hat_good.ckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/red_hat_good.ckl -------------------------------------------------------------------------------- /test/sample_data/checklist/red_hat_good_metadata.ckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/red_hat_good_metadata.ckl -------------------------------------------------------------------------------- /test/sample_data/checklist/sample_input_report/ckl_with_invalid_metadata.ckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/sample_input_report/ckl_with_invalid_metadata.ckl -------------------------------------------------------------------------------- /test/sample_data/checklist/sample_input_report/converted-RHEL8V1R3.ckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/sample_input_report/converted-RHEL8V1R3.ckl -------------------------------------------------------------------------------- /test/sample_data/checklist/sample_input_report/invalid_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/sample_input_report/invalid_metadata.json -------------------------------------------------------------------------------- /test/sample_data/checklist/sample_input_report/small_ckl_overrides.ckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/sample_input_report/small_ckl_overrides.ckl -------------------------------------------------------------------------------- /test/sample_data/checklist/sample_input_report/three_stig_checklist.ckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/sample_input_report/three_stig_checklist.ckl -------------------------------------------------------------------------------- /test/sample_data/checklist/small_overrides_hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/small_overrides_hdf.json -------------------------------------------------------------------------------- /test/sample_data/checklist/three_stig_checklist-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/three_stig_checklist-hdf.json -------------------------------------------------------------------------------- /test/sample_data/checklist/vSphere8_report.ckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/checklist/vSphere8_report.ckl -------------------------------------------------------------------------------- /test/sample_data/conveyor/conveyor-clamav-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/conveyor/conveyor-clamav-hdf.json -------------------------------------------------------------------------------- /test/sample_data/conveyor/conveyor-codequality-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/conveyor/conveyor-codequality-hdf.json -------------------------------------------------------------------------------- /test/sample_data/conveyor/conveyor-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/conveyor/conveyor-hdf.json -------------------------------------------------------------------------------- /test/sample_data/conveyor/conveyor-moldy-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/conveyor/conveyor-moldy-hdf.json -------------------------------------------------------------------------------- /test/sample_data/conveyor/conveyor-stigma-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/conveyor/conveyor-stigma-hdf.json -------------------------------------------------------------------------------- /test/sample_data/conveyor/sample_input_report/large-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/conveyor/sample_input_report/large-results.json -------------------------------------------------------------------------------- /test/sample_data/conveyor/sample_input_report/sample-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/conveyor/sample_input_report/sample-results.json -------------------------------------------------------------------------------- /test/sample_data/csv/input/Ubuntu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/csv/input/Ubuntu.csv -------------------------------------------------------------------------------- /test/sample_data/csv/input/stig.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/csv/input/stig.csv -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sample_input_report/dropwizard-no-vulns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sample_input_report/dropwizard-no-vulns.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sample_input_report/dropwizard-vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sample_input_report/dropwizard-vex.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sample_input_report/dropwizard-vulns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sample_input_report/dropwizard-vulns.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sample_input_report/generated-saf-sbom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sample_input_report/generated-saf-sbom.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sample_input_report/spdx-to-cyclonedx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sample_input_report/spdx-to-cyclonedx.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sample_input_report/syft-scan-alpine-container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sample_input_report/syft-scan-alpine-container.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sample_input_report/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sample_input_report/vex.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-converted-spdx-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-converted-spdx-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-converted-spdx-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-converted-spdx-hdf.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-dropwizard-no-vulns-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-dropwizard-no-vulns-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-dropwizard-no-vulns-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-dropwizard-no-vulns-hdf.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-dropwizard-vex-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-dropwizard-vex-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-dropwizard-vex-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-dropwizard-vex-hdf.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-dropwizard-vulns-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-dropwizard-vulns-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-dropwizard-vulns-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-dropwizard-vulns-hdf.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-saf-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-saf-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-saf-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-saf-hdf.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-syft-alpine-container-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-syft-alpine-container-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-syft-alpine-container-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-syft-alpine-container-hdf.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-vex-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-vex-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/cyclonedx_sbom/sbom-vex-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/cyclonedx_sbom/sbom-vex-hdf.json -------------------------------------------------------------------------------- /test/sample_data/dbprotect/dbprotect-check-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dbprotect/dbprotect-check-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/dbprotect/dbprotect-check-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dbprotect/dbprotect-check-hdf.json -------------------------------------------------------------------------------- /test/sample_data/dbprotect/dbprotect-findings-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dbprotect/dbprotect-findings-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/dbprotect/dbprotect-findings-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dbprotect/dbprotect-findings-hdf.json -------------------------------------------------------------------------------- /test/sample_data/dbprotect/sample_input_report/DbProtect-Check-Results-Details-XML-Sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dbprotect/sample_input_report/DbProtect-Check-Results-Details-XML-Sample.xml -------------------------------------------------------------------------------- /test/sample_data/dbprotect/sample_input_report/DbProtect-Findings-Detail-XML-Sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dbprotect/sample_input_report/DbProtect-Findings-Detail-XML-Sample.xml -------------------------------------------------------------------------------- /test/sample_data/dependency_track/hdf-default-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dependency_track/hdf-default-withraw.json -------------------------------------------------------------------------------- /test/sample_data/dependency_track/hdf-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dependency_track/hdf-default.json -------------------------------------------------------------------------------- /test/sample_data/dependency_track/hdf-info-vulnerability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dependency_track/hdf-info-vulnerability.json -------------------------------------------------------------------------------- /test/sample_data/dependency_track/hdf-no-vulnerabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dependency_track/hdf-no-vulnerabilities.json -------------------------------------------------------------------------------- /test/sample_data/dependency_track/hdf-optional-attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dependency_track/hdf-optional-attributes.json -------------------------------------------------------------------------------- /test/sample_data/dependency_track/hdf-with-attributions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dependency_track/hdf-with-attributions.json -------------------------------------------------------------------------------- /test/sample_data/dependency_track/sample_input_report/fpf-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dependency_track/sample_input_report/fpf-default.json -------------------------------------------------------------------------------- /test/sample_data/dependency_track/sample_input_report/fpf-info-vulnerability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dependency_track/sample_input_report/fpf-info-vulnerability.json -------------------------------------------------------------------------------- /test/sample_data/dependency_track/sample_input_report/fpf-no-vulnerabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dependency_track/sample_input_report/fpf-no-vulnerabilities.json -------------------------------------------------------------------------------- /test/sample_data/dependency_track/sample_input_report/fpf-optional-attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dependency_track/sample_input_report/fpf-optional-attributes.json -------------------------------------------------------------------------------- /test/sample_data/dependency_track/sample_input_report/fpf-with-attributions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/dependency_track/sample_input_report/fpf-with-attributions.json -------------------------------------------------------------------------------- /test/sample_data/fortify/fortify-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/fortify/fortify-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/fortify/fortify-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/fortify/fortify-hdf.json -------------------------------------------------------------------------------- /test/sample_data/fortify/sample_input_report/fortify_webgoat_results.fvdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/fortify/sample_input_report/fortify_webgoat_results.fvdl -------------------------------------------------------------------------------- /test/sample_data/gosec/go-ethereum-all-unsuppressed-gosec-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/gosec/go-ethereum-all-unsuppressed-gosec-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/gosec/go-ethereum-all-unsuppressed-gosec-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/gosec/go-ethereum-all-unsuppressed-gosec-hdf.json -------------------------------------------------------------------------------- /test/sample_data/gosec/go-ethereum-external-unsuppressed-gosec-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/gosec/go-ethereum-external-unsuppressed-gosec-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/gosec/go-ethereum-external-unsuppressed-gosec-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/gosec/go-ethereum-external-unsuppressed-gosec-hdf.json -------------------------------------------------------------------------------- /test/sample_data/gosec/grype-gosec-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/gosec/grype-gosec-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/gosec/grype-gosec-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/gosec/grype-gosec-hdf.json -------------------------------------------------------------------------------- /test/sample_data/gosec/sample_input_report/Go_Ethereum_gosec_results_all_suppressed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/gosec/sample_input_report/Go_Ethereum_gosec_results_all_suppressed.json -------------------------------------------------------------------------------- /test/sample_data/gosec/sample_input_report/Go_Ethereum_gosec_results_external_suppressed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/gosec/sample_input_report/Go_Ethereum_gosec_results_external_suppressed.json -------------------------------------------------------------------------------- /test/sample_data/gosec/sample_input_report/Grype_gosec_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/gosec/sample_input_report/Grype_gosec_results.json -------------------------------------------------------------------------------- /test/sample_data/inspec/json/Ubuntu-18.04-Profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/inspec/json/Ubuntu-18.04-Profile.json -------------------------------------------------------------------------------- /test/sample_data/inspec/json/profile_and_controls/Windows_Server_2022_v1r3_mini-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/inspec/json/profile_and_controls/Windows_Server_2022_v1r3_mini-profile.json -------------------------------------------------------------------------------- /test/sample_data/inspec/json/profile_and_controls/windows_server_2022_v1r3_mini_controls/V-93205.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/inspec/json/profile_and_controls/windows_server_2022_v1r3_mini_controls/V-93205.rb -------------------------------------------------------------------------------- /test/sample_data/inspec/json/profile_and_controls/windows_server_2022_v1r3_mini_controls/V-93207.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/inspec/json/profile_and_controls/windows_server_2022_v1r3_mini_controls/V-93207.rb -------------------------------------------------------------------------------- /test/sample_data/inspec/json/profile_and_controls/windows_server_2022_v1r3_mini_controls/V-93369.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/inspec/json/profile_and_controls/windows_server_2022_v1r3_mini_controls/V-93369.rb -------------------------------------------------------------------------------- /test/sample_data/inspec/json/profile_and_controls/windows_server_2022_v1r3_mini_controls/V-93461.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/inspec/json/profile_and_controls/windows_server_2022_v1r3_mini_controls/V-93461.rb -------------------------------------------------------------------------------- /test/sample_data/inspec/json/profile_and_controls/windows_server_2022_v1r3_mini_controls/V-93473.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/inspec/json/profile_and_controls/windows_server_2022_v1r3_mini_controls/V-93473.rb -------------------------------------------------------------------------------- /test/sample_data/inspec/json/rhel-7-v3r7-mini-sample-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/inspec/json/rhel-7-v3r7-mini-sample-profile.json -------------------------------------------------------------------------------- /test/sample_data/jfrog_xray/jfrog-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/jfrog_xray/jfrog-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/jfrog_xray/jfrog-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/jfrog_xray/jfrog-hdf.json -------------------------------------------------------------------------------- /test/sample_data/jfrog_xray/sample_input_report/jfrog_xray_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/jfrog_xray/sample_input_report/jfrog_xray_sample.json -------------------------------------------------------------------------------- /test/sample_data/msft_secure/sample_input_report/combined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/msft_secure/sample_input_report/combined.json -------------------------------------------------------------------------------- /test/sample_data/msft_secure/sample_input_report/profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/msft_secure/sample_input_report/profiles.json -------------------------------------------------------------------------------- /test/sample_data/msft_secure/sample_input_report/secureScore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/msft_secure/sample_input_report/secureScore.json -------------------------------------------------------------------------------- /test/sample_data/msft_secure/secure_score-hdf-withraws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/msft_secure/secure_score-hdf-withraws.json -------------------------------------------------------------------------------- /test/sample_data/msft_secure/secure_score-hdfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/msft_secure/secure_score-hdfs.json -------------------------------------------------------------------------------- /test/sample_data/nessus/nessus-hdf-10.0.0.1-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/nessus/nessus-hdf-10.0.0.1-withraw.json -------------------------------------------------------------------------------- /test/sample_data/nessus/nessus-hdf-10.0.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/nessus/nessus-hdf-10.0.0.1.json -------------------------------------------------------------------------------- /test/sample_data/nessus/nessus-hdf-10.0.0.2-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/nessus/nessus-hdf-10.0.0.2-withraw.json -------------------------------------------------------------------------------- /test/sample_data/nessus/nessus-hdf-10.0.0.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/nessus/nessus-hdf-10.0.0.2.json -------------------------------------------------------------------------------- /test/sample_data/nessus/nessus-hdf-10.0.0.3-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/nessus/nessus-hdf-10.0.0.3-withraw.json -------------------------------------------------------------------------------- /test/sample_data/nessus/nessus-hdf-10.0.0.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/nessus/nessus-hdf-10.0.0.3.json -------------------------------------------------------------------------------- /test/sample_data/nessus/sample_input_report/sample.nessus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/nessus/sample_input_report/sample.nessus -------------------------------------------------------------------------------- /test/sample_data/netsparker/netsparker-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/netsparker/netsparker-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/netsparker/netsparker-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/netsparker/netsparker-hdf.json -------------------------------------------------------------------------------- /test/sample_data/netsparker/sample_input_report/sample-netsparker-invicti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/netsparker/sample_input_report/sample-netsparker-invicti.xml -------------------------------------------------------------------------------- /test/sample_data/neuvector/neuvector-hdf-mitre-caldera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/neuvector-hdf-mitre-caldera.json -------------------------------------------------------------------------------- /test/sample_data/neuvector/neuvector-hdf-mitre-heimdall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/neuvector-hdf-mitre-heimdall.json -------------------------------------------------------------------------------- /test/sample_data/neuvector/neuvector-hdf-mitre-heimdall2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/neuvector-hdf-mitre-heimdall2.json -------------------------------------------------------------------------------- /test/sample_data/neuvector/neuvector-hdf-mitre-vulcan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/neuvector-hdf-mitre-vulcan.json -------------------------------------------------------------------------------- /test/sample_data/neuvector/neuvector-hdf-withraw-mitre-caldera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/neuvector-hdf-withraw-mitre-caldera.json -------------------------------------------------------------------------------- /test/sample_data/neuvector/neuvector-hdf-withraw-mitre-heimdall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/neuvector-hdf-withraw-mitre-heimdall.json -------------------------------------------------------------------------------- /test/sample_data/neuvector/neuvector-hdf-withraw-mitre-heimdall2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/neuvector-hdf-withraw-mitre-heimdall2.json -------------------------------------------------------------------------------- /test/sample_data/neuvector/neuvector-hdf-withraw-mitre-vulcan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/neuvector-hdf-withraw-mitre-vulcan.json -------------------------------------------------------------------------------- /test/sample_data/neuvector/sample_input_report/neuvector-mitre-caldera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/sample_input_report/neuvector-mitre-caldera.json -------------------------------------------------------------------------------- /test/sample_data/neuvector/sample_input_report/neuvector-mitre-heimdall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/sample_input_report/neuvector-mitre-heimdall.json -------------------------------------------------------------------------------- /test/sample_data/neuvector/sample_input_report/neuvector-mitre-heimdall2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/sample_input_report/neuvector-mitre-heimdall2.json -------------------------------------------------------------------------------- /test/sample_data/neuvector/sample_input_report/neuvector-mitre-vulcan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/neuvector/sample_input_report/neuvector-mitre-vulcan.json -------------------------------------------------------------------------------- /test/sample_data/nikto/nikto-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/nikto/nikto-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/nikto/nikto-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/nikto/nikto-hdf.json -------------------------------------------------------------------------------- /test/sample_data/nikto/sample_input_report/zero.webappsecurity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/nikto/sample_input_report/zero.webappsecurity.json -------------------------------------------------------------------------------- /test/sample_data/passthrough/minimal-hdf-passthrough-nonobject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/passthrough/minimal-hdf-passthrough-nonobject.json -------------------------------------------------------------------------------- /test/sample_data/passthrough/minimal-hdf-passthrough-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/passthrough/minimal-hdf-passthrough-object.json -------------------------------------------------------------------------------- /test/sample_data/passthrough/passthrough-object.json: -------------------------------------------------------------------------------- 1 | { 2 | "raw": "a raw test string" 3 | } 4 | -------------------------------------------------------------------------------- /test/sample_data/prisma/localhost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/localhost.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-1.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-1.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-10.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-10.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-11.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-11.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-12.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-12.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-13.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-13.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-14.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-14.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-15.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-15.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-2.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-2.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-3.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-3.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-4.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-4.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-5.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-5.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-6.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-6.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-7.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-7.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-8.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-8.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/my-fake-host-9.somewhere.cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/my-fake-host-9.somewhere.cloud.json -------------------------------------------------------------------------------- /test/sample_data/prisma/sample_input_report/prismacloud_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prisma/sample_input_report/prismacloud_sample.csv -------------------------------------------------------------------------------- /test/sample_data/prowler/prowler-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prowler/prowler-hdf.json -------------------------------------------------------------------------------- /test/sample_data/prowler/sample_input_report/prowler-sample.asff-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prowler/sample_input_report/prowler-sample.asff-json -------------------------------------------------------------------------------- /test/sample_data/prowler/sample_input_report/prowler_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/prowler/sample_input_report/prowler_sample.json -------------------------------------------------------------------------------- /test/sample_data/sarif/sample_input_report/sarif_input.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/sarif/sample_input_report/sarif_input.sarif -------------------------------------------------------------------------------- /test/sample_data/sarif/sarif-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/sarif/sarif-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/sarif/sarif-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/sarif/sarif-hdf.json -------------------------------------------------------------------------------- /test/sample_data/scoutsuite/sample_input_report/scoutsuite_sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/scoutsuite/sample_input_report/scoutsuite_sample.js -------------------------------------------------------------------------------- /test/sample_data/scoutsuite/scoutsuite-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/scoutsuite/scoutsuite-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/scoutsuite/scoutsuite-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/scoutsuite/scoutsuite-hdf.json -------------------------------------------------------------------------------- /test/sample_data/snyk/nodejs-goof-local-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/snyk/nodejs-goof-local-hdf.json -------------------------------------------------------------------------------- /test/sample_data/snyk/nodejs-goof-remote-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/snyk/nodejs-goof-remote-hdf.json -------------------------------------------------------------------------------- /test/sample_data/snyk/sample_input_report/nodejs-goof-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/snyk/sample_input_report/nodejs-goof-local.json -------------------------------------------------------------------------------- /test/sample_data/snyk/sample_input_report/nodejs-goof-remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/snyk/sample_input_report/nodejs-goof-remote.json -------------------------------------------------------------------------------- /test/sample_data/sonarqube/sonarqube-branch-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/sonarqube/sonarqube-branch-hdf.json -------------------------------------------------------------------------------- /test/sample_data/sonarqube/sonarqube-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/sonarqube/sonarqube-hdf.json -------------------------------------------------------------------------------- /test/sample_data/sonarqube/sonarqube-pull-request-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/sonarqube/sonarqube-pull-request-hdf.json -------------------------------------------------------------------------------- /test/sample_data/target/minimal-hdf-target-nonobject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/target/minimal-hdf-target-nonobject.json -------------------------------------------------------------------------------- /test/sample_data/target/minimal-hdf-target-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/target/minimal-hdf-target-object.json -------------------------------------------------------------------------------- /test/sample_data/target/target-object.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip_address": "127.0.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /test/sample_data/thresholds/red_hat_good.counts.good.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/thresholds/red_hat_good.counts.good.yml -------------------------------------------------------------------------------- /test/sample_data/thresholds/rhel-8_hardened.counts.bad.noimpactHigh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/thresholds/rhel-8_hardened.counts.bad.noimpactHigh.yml -------------------------------------------------------------------------------- /test/sample_data/thresholds/rhel-8_hardened.counts.good.exact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/thresholds/rhel-8_hardened.counts.good.exact.yml -------------------------------------------------------------------------------- /test/sample_data/thresholds/triple_overlay_profile_example.json.counts.bad.compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/thresholds/triple_overlay_profile_example.json.counts.bad.compliance.yml -------------------------------------------------------------------------------- /test/sample_data/thresholds/triple_overlay_profile_example.json.counts.bad.total.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/thresholds/triple_overlay_profile_example.json.counts.bad.total.yml -------------------------------------------------------------------------------- /test/sample_data/thresholds/triple_overlay_profile_example.json.counts.good.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/thresholds/triple_overlay_profile_example.json.counts.good.yml -------------------------------------------------------------------------------- /test/sample_data/thresholds/triple_overlay_profile_example.json.counts.totalMinMax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/thresholds/triple_overlay_profile_example.json.counts.totalMinMax.yml -------------------------------------------------------------------------------- /test/sample_data/trivy/sample_input_report/trivy-image_golang-1.12-alpine_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trivy/sample_input_report/trivy-image_golang-1.12-alpine_sample.json -------------------------------------------------------------------------------- /test/sample_data/trivy/trivy-image_golang-1.12-alpine-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trivy/trivy-image_golang-1.12-alpine-hdf.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/sample_input_report/trufflehog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/sample_input_report/trufflehog.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/sample_input_report/trufflehog_docker_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/sample_input_report/trufflehog_docker_example.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/sample_input_report/trufflehog_dup.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/sample_input_report/trufflehog_dup.ndjson -------------------------------------------------------------------------------- /test/sample_data/trufflehog/sample_input_report/trufflehog_report_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/sample_input_report/trufflehog_report_example.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/sample_input_report/trufflehog_saf_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/sample_input_report/trufflehog_saf_example.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/trufflehog-docker-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/trufflehog-docker-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/trufflehog-docker-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/trufflehog-docker-hdf.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/trufflehog-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/trufflehog-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/trufflehog-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/trufflehog-hdf.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/trufflehog-ndjson-dup-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/trufflehog-ndjson-dup-hdf.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/trufflehog-report-example-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/trufflehog-report-example-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/trufflehog-report-example-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/trufflehog-report-example-hdf.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/trufflehog-saf-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/trufflehog-saf-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/trufflehog/trufflehog-saf-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/trufflehog/trufflehog-saf-hdf.json -------------------------------------------------------------------------------- /test/sample_data/twistlock/sample_input_report/twistlock-twistcli-coderepo-scan-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/twistlock/sample_input_report/twistlock-twistcli-coderepo-scan-sample.json -------------------------------------------------------------------------------- /test/sample_data/twistlock/sample_input_report/twistlock-twistcli-sample-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/twistlock/sample_input_report/twistlock-twistcli-sample-1.json -------------------------------------------------------------------------------- /test/sample_data/twistlock/twistlock-coderepo-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/twistlock/twistlock-coderepo-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/twistlock/twistlock-coderepo-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/twistlock/twistlock-coderepo-hdf.json -------------------------------------------------------------------------------- /test/sample_data/twistlock/twistlock-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/twistlock/twistlock-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/twistlock/twistlock-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/twistlock/twistlock-hdf.json -------------------------------------------------------------------------------- /test/sample_data/utils/ohdf/calculations/calculateComplianceScoresForExecJSONs.sample: -------------------------------------------------------------------------------- 1 | {"redhat-enterprise-linux-8-stig-baseline":[66]} 2 | -------------------------------------------------------------------------------- /test/sample_data/utils/ohdf/calculations/calculateSeverityCounts.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/utils/ohdf/calculations/calculateSeverityCounts.sample -------------------------------------------------------------------------------- /test/sample_data/utils/ohdf/calculations/calculateSummariesForExecJSONs.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/utils/ohdf/calculations/calculateSummariesForExecJSONs.sample -------------------------------------------------------------------------------- /test/sample_data/utils/ohdf/calculations/calculateTotalCounts.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/utils/ohdf/calculations/calculateTotalCounts.sample -------------------------------------------------------------------------------- /test/sample_data/utils/ohdf/calculations/calculateTotalCountsForSummaries.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/utils/ohdf/calculations/calculateTotalCountsForSummaries.sample -------------------------------------------------------------------------------- /test/sample_data/veracode/sample_input_report/veracode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/veracode/sample_input_report/veracode.xml -------------------------------------------------------------------------------- /test/sample_data/veracode/veracode-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/veracode/veracode-hdf.json -------------------------------------------------------------------------------- /test/sample_data/xccdf/cis/CIS_AlmaLinux_OS_9_Benchmark_v2.0.0-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/cis/CIS_AlmaLinux_OS_9_Benchmark_v2.0.0-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/cis/CIS_Amazon_Linux_2_Benchmark_v3.0.0-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/cis/CIS_Amazon_Linux_2_Benchmark_v3.0.0-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/cis/CIS_Apache_Tomcat_10_Benchmark_v1.1.0-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/cis/CIS_Apache_Tomcat_10_Benchmark_v1.1.0-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/cis/CIS_Microsoft_IIS_10_Benchmark_v1.2.1-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/cis/CIS_Microsoft_IIS_10_Benchmark_v1.2.1-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/FULL_Windows_Server_2022_V2R1_mini-sample-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/FULL_Windows_Server_2022_V2R1_mini-sample-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_ASD_STIG_V5R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_ASD_STIG_V5R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Adobe_ColdFusion_11_STIG_V1R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Adobe_ColdFusion_11_STIG_V1R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Apache_Tomcat_Application_Server_9_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Apache_Tomcat_Application_Server_9_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Apache_Tomcat_Application_Server_9_STIG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Apache_Tomcat_Application_Server_9_STIG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Apple_OS_X_10-14_STIG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Apple_OS_X_10-14_STIG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Apple_OS_X_10-14_STIG_V2R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Apple_OS_X_10-14_STIG_V2R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Apple_OS_X_10-15_STIG_V1R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Apple_OS_X_10-15_STIG_V1R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Apple_OS_X_10-15_STIG_V1R5_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Apple_OS_X_10-15_STIG_V1R5_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Apple_macOS_11_STIG_V1R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Apple_macOS_11_STIG_V1R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Apple_macOS_11_STIG_V1R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Apple_macOS_11_STIG_V1R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Application_Layer_Gateway_V1R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Application_Layer_Gateway_V1R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Application_Server_SRG_V3R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Application_Server_SRG_V3R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_CAN_Ubuntu_18-04_LTS_STIG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_CAN_Ubuntu_18-04_LTS_STIG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_CAN_Ubuntu_18-04_LTS_STIG_V2R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_CAN_Ubuntu_18-04_LTS_STIG_V2R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_CAN_Ubuntu_20-04_LTS_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_CAN_Ubuntu_20-04_LTS_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_CA_API_Gateway_ALG_STIG_V1R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_CA_API_Gateway_ALG_STIG_V1R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_CD_PGSQL_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_CD_PGSQL_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Central_Log_Server_SRG_V1R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Central_Log_Server_SRG_V1R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Central_Log_Server_SRG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Central_Log_Server_SRG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Cisco_IOS-XE_Router_RTR_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Cisco_IOS-XE_Router_RTR_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Cisco_IOS-XR_Router_RTR_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Cisco_IOS-XR_Router_RTR_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Cisco_IOS_Router_RTR_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Cisco_IOS_Router_RTR_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Cisco_IOS_XE_Switch_RTR_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Cisco_IOS_XE_Switch_RTR_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Cisco_NX-OS_Switch_RTR_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Cisco_NX-OS_Switch_RTR_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Container_Platform_SRG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Container_Platform_SRG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Container_Platform_SRG_V1R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Container_Platform_SRG_V1R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Database_SRG_V3R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Database_SRG_V3R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Docker_Enterprise_2-x_Linux-UNIX_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Docker_Enterprise_2-x_Linux-UNIX_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Domain_Name_System_V2R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Domain_Name_System_V2R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_EDB_PGS_Advanced_Server_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_EDB_PGS_Advanced_Server_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_EDB_Postgres_Advanced_Server_v11_on_Windows_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_EDB_Postgres_Advanced_Server_v11_on_Windows_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_F5_BIG-IP_Device_Management_11-x_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_F5_BIG-IP_Device_Management_11-x_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_F5_BIG-IP_Local_Traffic_Manager_11-x_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_F5_BIG-IP_Local_Traffic_Manager_11-x_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_General_Purpose_Operating_System_SRG_V1R6_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_General_Purpose_Operating_System_SRG_V1R6_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_General_Purpose_Operating_System_SRG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_General_Purpose_Operating_System_SRG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_HP_FlexFabric_Switch_NDM_STIG_V1R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_HP_FlexFabric_Switch_NDM_STIG_V1R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IBM_AIX_7-x_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IBM_AIX_7-x_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IBM_AIX_7-x_STIG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IBM_AIX_7-x_STIG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IBM_DB2_V10-5_LUW_STIG_V1R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IBM_DB2_V10-5_LUW_STIG_V1R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IBM_DataPower_ALG_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IBM_DataPower_ALG_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IBM_WebSphere_Traditional_V9-x_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IBM_WebSphere_Traditional_V9-x_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IBM_zOS_ACF2_STIG_V8R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IBM_zOS_ACF2_STIG_V8R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IBM_zOS_ACF2_STIG_V8R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IBM_zOS_ACF2_STIG_V8R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IBM_zOS_RACF_STIG_V8R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IBM_zOS_RACF_STIG_V8R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IBM_zOS_RACF_STIG_V8R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IBM_zOS_RACF_STIG_V8R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IBM_zOS_TSS_STIG_V8R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IBM_zOS_TSS_STIG_V8R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IBM_zOS_TSS_STIG_V8R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IBM_zOS_TSS_STIG_V8R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_IB_8-x_DNS_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_IB_8-x_DNS_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Juniper_Router_RTR_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Juniper_Router_RTR_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Kubernetes_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Kubernetes_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Kubernetes_STIG_V1R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Kubernetes_STIG_V1R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_IE11_STIG_V1R19_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_IE11_STIG_V1R19_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_Office_365_ProPlus_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_Office_365_ProPlus_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_Office_365_ProPlus_STIG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_Office_365_ProPlus_STIG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_Outlook_2010_STIG_V1R13_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_Outlook_2010_STIG_V1R13_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_Outlook_2013_STIG_V1R13_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_Outlook_2013_STIG_V1R13_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_SQL_Server_2014_Instance_STIG_V1R10_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_SQL_Server_2014_Instance_STIG_V1R10_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_SQL_Server_2014_Instance_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_SQL_Server_2014_Instance_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_SQL_Server_2016_Instance_STIG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_SQL_Server_2016_Instance_STIG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_SQL_Server_2016_Instance_STIG_V2R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_SQL_Server_2016_Instance_STIG_V2R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_Windows_10_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_Windows_10_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_Windows_2012_and_2012_R2_DC_STIG_V3R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_Windows_2012_and_2012_R2_DC_STIG_V3R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_Windows_2012_and_2012_R2_MS_STIG_V3R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_Windows_2012_and_2012_R2_MS_STIG_V3R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_Windows_Server_2016_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_Windows_Server_2016_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_MS_Windows_Server_2019_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_MS_Windows_Server_2019_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Mainframe_Product_SRG_V1R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Mainframe_Product_SRG_V1R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_McAfee_VirusScan88_Local_Client_STIG_V5R16_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_McAfee_VirusScan88_Local_Client_STIG_V5R16_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_McAfee_VirusScan88_Managed_Client_STIG_V5R21_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_McAfee_VirusScan88_Managed_Client_STIG_V5R21_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Microsoft_Windows_2012_Server_DNS_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Microsoft_Windows_2012_Server_DNS_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Microsoft_Windows_2012_Server_DNS_STIG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Microsoft_Windows_2012_Server_DNS_STIG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_NDM_SRG_V4R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_NDM_SRG_V4R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Oracle_Database_11-2g_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Oracle_Database_11-2g_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Oracle_Database_11g_Installation_STIG_V8R20_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Oracle_Database_11g_Installation_STIG_V8R20_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Oracle_Database_11g_Instance_STIG_V8R20_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Oracle_Database_11g_Instance_STIG_V8R20_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Oracle_Database_12c_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Oracle_Database_12c_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Oracle_HTTP_Server_12-1-3_STIG_V1R7_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Oracle_HTTP_Server_12-1-3_STIG_V1R7_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Oracle_Linux_6_STIG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Oracle_Linux_6_STIG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Oracle_Linux_6_STIG_V2R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Oracle_Linux_6_STIG_V2R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Oracle_Linux_7_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Oracle_Linux_7_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Oracle_Linux_7_V2R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Oracle_Linux_7_V2R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Oracle_MySQL_8-0_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Oracle_MySQL_8-0_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Oracle_WebLogic_Server_12c_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Oracle_WebLogic_Server_12c_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_PGS_SQL_9-x_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_PGS_SQL_9-x_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_PGS_SQL_9-x_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_PGS_SQL_9-x_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_RHEL_7_STIG_V2R7_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_RHEL_7_STIG_V2R7_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_RHEL_7_STIG_V3R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_RHEL_7_STIG_V3R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_RHEL_7_STIG_V3R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_RHEL_7_STIG_V3R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_RHEL_8_STIG_V1R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_RHEL_8_STIG_V1R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_RHEL_8_STIG_V1R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_RHEL_8_STIG_V1R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Router_SRG_V4R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Router_SRG_V4R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_SLES_12_STIG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_SLES_12_STIG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_SLES_12_STIG_V2R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_SLES_12_STIG_V2R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_SLES_15_STIG_V1R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_SLES_15_STIG_V1R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_SLES_15_STIG_V1R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_SLES_15_STIG_V1R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_SOL_10_SPARC_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_SOL_10_SPARC_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_SOL_10_x86_STIG_V2R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_SOL_10_x86_STIG_V2R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_SOL_11_SPARC_STIG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_SOL_11_SPARC_STIG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_SOL_11_SPARC_STIG_V2R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_SOL_11_SPARC_STIG_V2R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_SOL_11_X86_STIG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_SOL_11_X86_STIG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_SOL_11_X86_STIG_V2R4_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_SOL_11_X86_STIG_V2R4_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_SYM_ProxySG_ALG_STIG_V1R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_SYM_ProxySG_ALG_STIG_V1R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Tanium_7-0_STIG_V1R2_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Tanium_7-0_STIG_V1R2_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Tanium_7-3_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Tanium_7-3_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Traditional_Security_Checklist_V1R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Traditional_Security_Checklist_V1R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Trend_Micro_Deep_Security_9-x_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Trend_Micro_Deep_Security_9-x_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_UEM_Server_SRG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_UEM_Server_SRG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_VMW_vRealize_Automation_7-x_SLES_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_VMW_vRealize_Automation_7-x_SLES_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_VMW_vRealize_Automation_7-x_SLES_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_VMW_vRealize_Automation_7-x_SLES_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_VMW_vRealize_Automation_7-x_tc_Server_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_VMW_vRealize_Automation_7-x_tc_Server_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_VMW_vRealize_Automation_7-x_tc_Server_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_VMW_vRealize_Automation_7-x_tc_Server_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_VMW_vRealize_Ops_6-x_SLES_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_VMW_vRealize_Ops_6-x_SLES_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_VMW_vRealize_Ops_6-x_SLES_STIG_V2R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_VMW_vRealize_Ops_6-x_SLES_STIG_V2R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_VMW_vRealize_Ops_6-x_tc_Server_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_VMW_vRealize_Ops_6-x_tc_Server_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_VMW_vSphere_6-7_Photon_OS_STIG_V1R1_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_VMW_vSphere_6-7_Photon_OS_STIG_V1R1_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_VPN_SRG_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_VPN_SRG_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Video_Services_Policy_STIG_V1R11_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Video_Services_Policy_STIG_V1R11_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Voice_Video_Services_Policy_STIG_V3R17_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Voice_Video_Services_Policy_STIG_V3R17_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/U_Web_Server_V2R3_Manual-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/U_Web_Server_V2R3_Manual-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/Windows_Server_2022_V2R1_mini-sample-xccdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/Windows_Server_2022_V2R1_mini-sample-xccdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf/stigs/rhel-7-v3r8-mini-sample-xxcdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf/stigs/rhel-7-v3r8-mini-sample-xxcdf.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/sample_input_report/xccdf-results-openscap-rhel7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/sample_input_report/xccdf-results-openscap-rhel7.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/sample_input_report/xccdf-results-openscap-rhel8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/sample_input_report/xccdf-results-openscap-rhel8.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/sample_input_report/xccdf-results-scc-rhel7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/sample_input_report/xccdf-results-scc-rhel7.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/sample_input_report/xccdf-results-scc-rhel8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/sample_input_report/xccdf-results-scc-rhel8.xml -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/xccdf-openscap-rhel7-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/xccdf-openscap-rhel7-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/xccdf-openscap-rhel7-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/xccdf-openscap-rhel7-hdf.json -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/xccdf-openscap-rhel8-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/xccdf-openscap-rhel8-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/xccdf-openscap-rhel8-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/xccdf-openscap-rhel8-hdf.json -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/xccdf-scc-rhel7-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/xccdf-scc-rhel7-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/xccdf-scc-rhel7-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/xccdf-scc-rhel7-hdf.json -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/xccdf-scc-rhel8-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/xccdf-scc-rhel8-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/xccdf_results/xccdf-scc-rhel8-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/xccdf_results/xccdf-scc-rhel8-hdf.json -------------------------------------------------------------------------------- /test/sample_data/zap/sample_input_report/webgoat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/zap/sample_input_report/webgoat.json -------------------------------------------------------------------------------- /test/sample_data/zap/sample_input_report/zero.webappsecurity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/zap/sample_input_report/zero.webappsecurity.json -------------------------------------------------------------------------------- /test/sample_data/zap/zap-webappsecurity-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/zap/zap-webappsecurity-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/zap/zap-webappsecurity-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/zap/zap-webappsecurity-hdf.json -------------------------------------------------------------------------------- /test/sample_data/zap/zap-webgoat-hdf-withraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/zap/zap-webgoat-hdf-withraw.json -------------------------------------------------------------------------------- /test/sample_data/zap/zap-webgoat-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/sample_data/zap/zap-webgoat-hdf.json -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/utils/__tests__/global.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/utils/__tests__/global.test.ts -------------------------------------------------------------------------------- /test/utils/__tests__/logging.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/utils/__tests__/logging.test.ts -------------------------------------------------------------------------------- /test/utils/ohdf/__tests__/outputGenerator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/utils/ohdf/__tests__/outputGenerator.test.ts -------------------------------------------------------------------------------- /test/utils/ohdf/calculations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/utils/ohdf/calculations.test.ts -------------------------------------------------------------------------------- /test/utils/ohdf/dataloader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/test/utils/ohdf/dataloader.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/saf/HEAD/vitest.config.ts --------------------------------------------------------------------------------