├── .firebase └── hosting.ZGlzdA.cache ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── release-drafter.yml └── workflows │ ├── VERSION.yml │ ├── control-table-data-ingestion.yml │ ├── gh-pages.yml │ ├── increment.yml │ └── release.yml ├── .github_changelog_generator ├── .gitignore ├── CNAME ├── CODE_OF_CONDUCT.md ├── Docker_Instructions.md ├── Dockerfile ├── LICENSE.md ├── NOTICE.md ├── README.md ├── VERSION ├── VERSION.md ├── docs ├── Readme.md └── tutorials │ ├── configure-app.md │ ├── deploy.md │ └── setup.md ├── package.json ├── public ├── CNAME ├── DRAFT-DevSecOps_Best_Practices_Guide_01262020.pdf ├── DevSecOps_Best_Practices_Guide.pdf ├── How to Use the MITRE SAF.pdf ├── MITRE_InSpec_Profiles_and_HDF_include_NIST_SP-800-53_Associations.pdf ├── MITRE_SAF_Code_Review_Recommendations.pdf ├── _redirects ├── favicon.ico ├── img │ ├── icons │ │ ├── apple-touch-icon (1).png │ │ ├── apple-touch-icon-114x114-precomposed.png │ │ ├── apple-touch-icon-120x120-precomposed.png │ │ ├── apple-touch-icon-144x144-precomposed.png │ │ ├── apple-touch-icon-152x152-precomposed.png │ │ ├── apple-touch-icon-57x57-precomposed.png │ │ ├── apple-touch-icon-60x60-precomposed.png │ │ ├── apple-touch-icon-72x72-precomposed.png │ │ ├── apple-touch-icon-76x76-precomposed.png │ │ └── favicon.ico │ └── mitrelogo-whiteonblue.jpg ├── index.html ├── manifest.json ├── robots.txt └── saf_logo.svg ├── src ├── App.vue ├── assets │ ├── data │ │ ├── Events │ │ │ └── eventsData.json │ │ ├── OrganizingTeam.json │ │ ├── Speakers │ │ │ └── Speakers.json │ │ ├── Team.json │ │ ├── baselineProfiles │ │ │ ├── apache-server-2.2-stig-baseline.json │ │ │ ├── apache-site-2.2-stig-baseline.json │ │ │ ├── apache-tomcat-7-cis-baseline.json │ │ │ ├── apache-tomcat-8-cis-baseline.json │ │ │ ├── aws-foundations-cis-baseline.json │ │ │ ├── aws-rds-crunchy-data-postgresql-9-stig-baseline.json │ │ │ ├── aws-rds-crunchy-data-postgresql-stig-baseline.json │ │ │ ├── aws-rds-infrastructure-cis-baseline.json │ │ │ ├── aws-rds-microsoft-sql-server-2014-instance-stig-baseline.json │ │ │ ├── aws-rds-oracle-database-12c-stig-baseline.json │ │ │ ├── aws-rds-oracle-mysql-ee-5.7-cis-baseline.json │ │ │ ├── aws-s3-baseline.json │ │ │ ├── canonical-ubuntu-16.04-lts-stig-baseline.json │ │ │ ├── canonical-ubuntu-20.04-lts-stig-baseline.json │ │ │ ├── crunchy-data-postgresql-stig-baseline.json │ │ │ ├── docker-ce-cis-baseline.json │ │ │ ├── heimdall_tools.csv │ │ │ ├── inspec-gcp-cis-benchmark.json │ │ │ ├── inspec-gcp-pci-profile.json │ │ │ ├── inspec-gke-cis-benchmark.json │ │ │ ├── kubernetes-cis-baseline.json │ │ │ ├── microsoft-iis-8.5-server-stig-baseline.json │ │ │ ├── microsoft-iis-8.5-site-stig-baseline.json │ │ │ ├── microsoft-sql-server-2014-database-stig-baseline.json │ │ │ ├── microsoft-sql-server-2014-instance-stig-baseline.json │ │ │ ├── microsoft-windows-10-stig-baseline.json │ │ │ ├── microsoft-windows-2012r2-memberserver-stig-baseline.json │ │ │ ├── microsoft-windows-server-2016-stig-baseline.json │ │ │ ├── microsoft-windows-server-2019-stig-baseline.json │ │ │ ├── mongodb-enterprise-advanced-3-stig-baseline.json │ │ │ ├── nginx-baseline.json │ │ │ ├── nginx-stigready-baseline.json │ │ │ ├── oracle-database-12c-stig-baseline.json │ │ │ ├── oracle-java-runtime-environment-7-unix-stig-baseline.json │ │ │ ├── oracle-java-runtime-environment-8-unix-stig-baseline.json │ │ │ ├── oracle-mysql-ee-5.7-cis-baseline.json │ │ │ ├── pgstigcheck-inspec.json │ │ │ ├── rds-bp-benchmark.json │ │ │ ├── redhat-enterprise-linux-6-stig-baseline.json │ │ │ ├── redhat-enterprise-linux-7-stig-baseline.json │ │ │ ├── redhat-enterprise-linux-8-stig-baseline.json │ │ │ ├── redhat-enterprise-linux-cve-vulnerability-scan-baseline.json │ │ │ ├── redhat-jboss-enterprise-application-platform-6.3-stig-baseline.json │ │ │ ├── rsa-archer-6-security-configuration-guide-baseline.json │ │ │ ├── vmware-esxi-6.5-stig-baseline.json │ │ │ ├── vmware-esxi-6.7-stig-baseline.json │ │ │ ├── vmware-vcsa-6.7-stig-baseline.json │ │ │ ├── vmware-vm-6.7-stig-baseline.json │ │ │ └── vmware-vsphere-65-virtual-machine-stig-baseline.json │ │ ├── baselines.json │ │ ├── cms-saf-control-mapping.csv │ │ ├── communityData.json │ │ ├── controltable.json │ │ ├── example-hdf.json │ │ ├── faqs.json │ │ ├── featureEvent.json │ │ ├── footer.json │ │ ├── hardening.json │ │ ├── hdf-schema.json │ │ ├── howitworks.json │ │ ├── mitre-saf-control-mapping.json │ │ ├── news.json │ │ ├── normalize.json │ │ ├── partners.json │ │ ├── resources.json │ │ ├── sponsors.json │ │ ├── trainingData.json │ │ └── whatWeDo.json │ ├── fonts │ │ ├── RobotoCondensed-Bold.ttf │ │ ├── RobotoCondensed-BoldItalic.ttf │ │ ├── RobotoCondensed-Italic.ttf │ │ ├── RobotoCondensed-Light.ttf │ │ ├── RobotoCondensed-LightItalic.ttf │ │ ├── RobotoCondensed-Regular.ttf │ │ ├── google-font.woff │ │ └── google-font.woff2 │ ├── img │ │ ├── Feature-Events │ │ │ └── imagenotfound.png │ │ ├── common │ │ │ └── avatar.png │ │ ├── do-not-remove │ │ │ └── about.png │ │ ├── gdg hero min.webp │ │ ├── gdg-logo.svg │ │ ├── gdg.jpg │ │ ├── gif │ │ │ └── profile.png │ │ ├── hdf-schema-diagram.png │ │ ├── home.jpg │ │ ├── home.png │ │ ├── home.svg │ │ ├── partners │ │ │ ├── Army.png │ │ │ ├── CDC.png │ │ │ ├── CMS.png │ │ │ ├── DHHS.png │ │ │ ├── DHS.png │ │ │ ├── DISA.png │ │ │ ├── DOD.png │ │ │ ├── FAA.png │ │ │ ├── IRS.png │ │ │ ├── NGIA.png │ │ │ ├── NRO.png │ │ │ ├── Progress_Chef_Primary_Logo_Stacked.png │ │ │ ├── Shield.png │ │ │ ├── VA.png │ │ │ ├── ansible-lockdown.png │ │ │ ├── cb.webp │ │ │ ├── cerner.png │ │ │ ├── cg.webp │ │ │ ├── community.png │ │ │ ├── crunchydata.png │ │ │ ├── dod-cyber-exchange.svg │ │ │ ├── elastic.png │ │ │ ├── gcp.png │ │ │ ├── gdg-x.svg │ │ │ ├── github.png │ │ │ ├── github.webp │ │ │ ├── google.svg │ │ │ ├── lockheed-martin-logo.png │ │ │ ├── nessus.png │ │ │ ├── refactr.png │ │ │ ├── rfed-logo-horiz.svg │ │ │ ├── saf_logo.png │ │ │ ├── simp-blk.svg │ │ │ ├── simp-wht.svg │ │ │ ├── simp.png │ │ │ ├── sophos.png │ │ │ ├── vmware-logo.png │ │ │ ├── vmware.png │ │ │ ├── wtm.png │ │ │ └── wtm.svg │ │ ├── svg │ │ │ ├── Ansible Icon-Dark.svg │ │ │ ├── Ansible Logo and Typemark-Dark.svg │ │ │ ├── Ansible Logo and Typemark-Light.svg │ │ │ ├── Ansible Typemark-Dark.svg │ │ │ ├── CHEF Icon and Typemark-Dark.svg │ │ │ ├── CHEF Icon and Typemark-Light.svg │ │ │ ├── CHEF Icon-Dark.svg │ │ │ ├── CHEF Typemark-Dark.svg │ │ │ ├── Harden Icon-Dark-NoColor.svg │ │ │ ├── Harden Icon-Dark.svg │ │ │ ├── Harden Icon-Light.svg │ │ │ ├── Hardening Lib Icon-Dark-NoColor.svg │ │ │ ├── Hardening Lib Icon-Dark.svg │ │ │ ├── Hardening Lib Icon-Light.svg │ │ │ ├── InSpec Icon-Dark-NoColor.svg │ │ │ ├── InSpec Icon-Dark.svg │ │ │ ├── InSpec Icon-Light.svg │ │ │ ├── InSpec Typemark-Dark.svg │ │ │ ├── InSpec Typemark-Light.svg │ │ │ ├── Normalize Icon-Dark-NoColor.svg │ │ │ ├── Normalize Icon-Dark.svg │ │ │ ├── Normalize Icon-Light.svg │ │ │ ├── Plan Icon-Dark.svg │ │ │ ├── Plan Icon-Light.svg │ │ │ ├── Splunk Icon-Dark.svg │ │ │ ├── Splunk Icon-Light.svg │ │ │ ├── Terraform Icon and Typemark-Dark.svg │ │ │ ├── Terraform Icon and Typemark-Light.svg │ │ │ ├── Terraform Icon-Dark.svg │ │ │ ├── Terraform Typemark-Dark.svg │ │ │ ├── Validate Icon-Dark-NoColor.svg │ │ │ ├── Validate Icon-Dark.svg │ │ │ ├── Validate Icon-Light.svg │ │ │ ├── Validation Lib Icon-Dark-NoColor.svg │ │ │ ├── Validation Lib Icon-Dark.svg │ │ │ ├── Validation Lib Icon-Light.svg │ │ │ ├── Visualize Icon-Dark-NoColor.svg │ │ │ ├── Visualize Icon-Dark.svg │ │ │ ├── Visualize Icon-Light.svg │ │ │ ├── ansible.svg │ │ │ ├── bg.svg │ │ │ ├── chef-2.svg │ │ │ ├── contact.svg │ │ │ ├── hdf.svg │ │ │ ├── hdf2.svg │ │ │ ├── hdf3.svg │ │ │ ├── heimdall.svg │ │ │ ├── inspec-blue-back-border.svg │ │ │ ├── inspec-white-back-border.svg │ │ │ ├── inspec-white-border.svg │ │ │ ├── keycloak.svg │ │ │ ├── netlify-dark.svg │ │ │ ├── netlify-light.svg │ │ │ ├── powershell-logo.svg │ │ │ ├── saf_logo.svg │ │ │ ├── team.svg │ │ │ ├── terraform-full.svg │ │ │ └── terraform.svg │ │ ├── team │ │ │ ├── .keep │ │ │ ├── aaron-lippold.png │ │ │ ├── alicia-sturtevant.png │ │ │ ├── brett-kreider.png │ │ │ ├── colin-doherty.png │ │ │ ├── dan-haynes.png │ │ │ ├── eugene-aronne.png │ │ │ ├── jacob-henry.png │ │ │ ├── lipee-vora.png │ │ │ ├── luke-malinowski.png │ │ │ ├── mark-tollick.png │ │ │ ├── mohamed-el-sharkawi.png │ │ │ ├── robert-thew.png │ │ │ ├── rony-xavier.png │ │ │ ├── sam-cornwell.png │ │ │ ├── vikram-bala.png │ │ │ └── will-dower.png │ │ ├── tools │ │ │ ├── SAF_Tools_Security_Validation.png │ │ │ ├── ansible-lockdown.png │ │ │ ├── aws_lambda_logo.png │ │ │ ├── emass.png │ │ │ ├── emass.svg │ │ │ ├── emass_dark.png │ │ │ ├── heimdall_logo.png │ │ │ ├── inspec-delta-icon.png │ │ │ ├── inspec-runner.png │ │ │ ├── inspec_logo.png │ │ │ ├── saf_logo.png │ │ │ ├── splunk-black-white-bg.png │ │ │ └── splunk-white-black-bg.png │ │ └── what-we-do │ │ │ ├── android.svg │ │ │ ├── angular.svg │ │ │ ├── aog.png │ │ │ ├── assessment_chevron.svg │ │ │ ├── development_chevron.svg │ │ │ ├── firebase.svg │ │ │ ├── gcp.svg │ │ │ ├── howWeSupportIt.png │ │ │ ├── notFound.png │ │ │ ├── operations_chevron.svg │ │ │ ├── planning_chevron.svg │ │ │ ├── polymer.svg │ │ │ ├── tf.svg │ │ │ └── whenToUseIt.png │ ├── logo.png │ └── logo.svg ├── components │ ├── About │ │ ├── AntiHarassmentPolicy.vue │ │ ├── aboutCommunity.vue │ │ ├── aboutHeader.vue │ │ ├── coc.vue │ │ └── communityGuidelines.vue │ ├── Admin │ │ ├── Core │ │ │ ├── AdminDrawer.vue │ │ │ └── AdminToolbar.vue │ │ ├── PushNotification │ │ │ └── PushNotification.vue │ │ ├── Speaker │ │ │ ├── addSpeaker.vue │ │ │ ├── editSpeakers.vue │ │ │ └── removeSpeakers.vue │ │ └── Team │ │ │ ├── addTeam.vue │ │ │ ├── editTeam.vue │ │ │ ├── removeTeam.vue │ │ │ └── viewTeam.vue │ ├── Blogs │ │ ├── BlogCard.vue │ │ ├── BlogsDetails.vue │ │ └── BlogsHeader.vue │ ├── Contact │ │ ├── contactDetails.vue │ │ └── contactHeader.vue │ ├── FAQ │ │ └── faqInfo.vue │ ├── IconBase.vue │ ├── News │ │ └── newsInfo.vue │ ├── Team │ │ ├── CoreTeam.vue │ │ ├── TeamHeader.vue │ │ ├── TeamMemberCard.vue │ │ ├── organizingTeam.vue │ │ └── organizingTeamList.vue │ ├── common │ │ ├── card │ │ │ ├── featureEventCard.vue │ │ │ ├── home │ │ │ │ ├── eventcard.vue │ │ │ │ └── eventcardloader.vue │ │ │ ├── pastEvent │ │ │ │ ├── pastEventCard.vue │ │ │ │ └── pastEventCardLoader.vue │ │ │ ├── upcomingEvent.vue │ │ │ └── upcomingEventLoader.vue │ │ ├── partners.vue │ │ └── socialInfo.vue │ ├── controlTable │ │ └── ControlTable.vue │ ├── core │ │ ├── BottomNav.vue │ │ ├── Drawer.vue │ │ ├── Footer.vue │ │ ├── Header.vue │ │ ├── PushNotifications.vue │ │ ├── Toolbar.vue │ │ └── View.vue │ ├── events │ │ ├── eventsHeader.vue │ │ ├── pastEvents.vue │ │ └── upcomingEvents.vue │ ├── gettingstarted │ │ └── gsInfo.vue │ ├── home │ │ ├── aboutCommunity.vue │ │ ├── dem.vue │ │ ├── events.vue │ │ ├── featureEvents.vue │ │ ├── homeScreen.vue │ │ ├── whatwedo.vue │ │ └── wwdComponents │ │ │ ├── Chevrons.vue │ │ │ ├── HowItWorks.vue │ │ │ ├── toolBlock.vue │ │ │ ├── wwdBasicCard.vue │ │ │ └── wwdSection.vue │ ├── normalize │ │ ├── HDFSVG.vue │ │ └── normalizeInfo.vue │ ├── profiles │ │ ├── profileTemplate.vue │ │ └── profileTemplateCompact.vue │ ├── training │ │ ├── RSVPBlock.vue │ │ └── traininginfo.vue │ └── util.js ├── config │ └── config.js ├── main.js ├── plugins │ └── vuetify.js ├── router.js ├── store │ ├── modules │ │ └── controlTable.module.js │ └── store.js ├── style.css ├── sw.js └── views │ ├── About.vue │ ├── Admin │ ├── Community.vue │ ├── Events.vue │ ├── Setting.vue │ ├── Speaker.vue │ ├── Speaker │ │ └── viewSpeaker.vue │ ├── Team.vue │ ├── Team │ │ └── showTeam.vue │ ├── dashboard.vue │ └── login.vue │ ├── Blogs.vue │ ├── Contact.vue │ ├── ControlTableView.vue │ ├── Events.vue │ ├── Events │ ├── EventTemplate.vue │ └── Layout │ │ ├── Layout.vue │ │ └── SubLayout │ │ ├── LayoutAbout.vue │ │ ├── LayoutAgenda.vue │ │ ├── LayoutPartner.vue │ │ ├── LayoutSpeakers.vue │ │ └── SubComponents │ │ └── LayoutSpeaker.vue │ ├── Faq.vue │ ├── GettingStarted.vue │ ├── Hardening.vue │ ├── Home.vue │ ├── News.vue │ ├── Normalize.vue │ ├── Partners.vue │ ├── Team.vue │ ├── Training.vue │ ├── Validation.vue │ └── ViewTeam.vue └── vue.config.js /.firebase/hosting.ZGlzdA.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/.firebase/hosting.ZGlzdA.cache -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/VERSION.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/.github/workflows/VERSION.yml -------------------------------------------------------------------------------- /.github/workflows/control-table-data-ingestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/.github/workflows/control-table-data-ingestion.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/increment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/.github/workflows/increment.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github_changelog_generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/.github_changelog_generator -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | saf.mitre.org 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Docker_Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/Docker_Instructions.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v1.0.38.1 2 | -------------------------------------------------------------------------------- /VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/VERSION.md -------------------------------------------------------------------------------- /docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/docs/Readme.md -------------------------------------------------------------------------------- /docs/tutorials/configure-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/docs/tutorials/configure-app.md -------------------------------------------------------------------------------- /docs/tutorials/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/docs/tutorials/deploy.md -------------------------------------------------------------------------------- /docs/tutorials/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/docs/tutorials/setup.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/package.json -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | saf.mitre.org 2 | -------------------------------------------------------------------------------- /public/DRAFT-DevSecOps_Best_Practices_Guide_01262020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/DRAFT-DevSecOps_Best_Practices_Guide_01262020.pdf -------------------------------------------------------------------------------- /public/DevSecOps_Best_Practices_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/DevSecOps_Best_Practices_Guide.pdf -------------------------------------------------------------------------------- /public/How to Use the MITRE SAF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/How to Use the MITRE SAF.pdf -------------------------------------------------------------------------------- /public/MITRE_InSpec_Profiles_and_HDF_include_NIST_SP-800-53_Associations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/MITRE_InSpec_Profiles_and_HDF_include_NIST_SP-800-53_Associations.pdf -------------------------------------------------------------------------------- /public/MITRE_SAF_Code_Review_Recommendations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/MITRE_SAF_Code_Review_Recommendations.pdf -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/img/icons/apple-touch-icon (1).png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/img/icons/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-120x120-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/img/icons/apple-touch-icon-120x120-precomposed.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/img/icons/apple-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-152x152-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/img/icons/apple-touch-icon-152x152-precomposed.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/img/icons/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-60x60-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/img/icons/apple-touch-icon-60x60-precomposed.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/img/icons/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-76x76-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/img/icons/apple-touch-icon-76x76-precomposed.png -------------------------------------------------------------------------------- /public/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/img/icons/favicon.ico -------------------------------------------------------------------------------- /public/img/mitrelogo-whiteonblue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/img/mitrelogo-whiteonblue.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/saf_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/public/saf_logo.svg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/data/Events/eventsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/Events/eventsData.json -------------------------------------------------------------------------------- /src/assets/data/OrganizingTeam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/OrganizingTeam.json -------------------------------------------------------------------------------- /src/assets/data/Speakers/Speakers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/Speakers/Speakers.json -------------------------------------------------------------------------------- /src/assets/data/Team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/Team.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/apache-server-2.2-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/apache-server-2.2-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/apache-site-2.2-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/apache-site-2.2-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/apache-tomcat-7-cis-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/apache-tomcat-7-cis-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/apache-tomcat-8-cis-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/apache-tomcat-8-cis-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/aws-foundations-cis-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/aws-foundations-cis-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/aws-rds-crunchy-data-postgresql-9-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/aws-rds-crunchy-data-postgresql-9-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/aws-rds-crunchy-data-postgresql-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/aws-rds-crunchy-data-postgresql-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/aws-rds-infrastructure-cis-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/aws-rds-infrastructure-cis-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/aws-rds-microsoft-sql-server-2014-instance-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/aws-rds-microsoft-sql-server-2014-instance-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/aws-rds-oracle-database-12c-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/aws-rds-oracle-database-12c-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/aws-rds-oracle-mysql-ee-5.7-cis-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/aws-rds-oracle-mysql-ee-5.7-cis-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/aws-s3-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/aws-s3-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/canonical-ubuntu-16.04-lts-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/canonical-ubuntu-16.04-lts-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/canonical-ubuntu-20.04-lts-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/canonical-ubuntu-20.04-lts-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/crunchy-data-postgresql-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/crunchy-data-postgresql-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/docker-ce-cis-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/docker-ce-cis-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/heimdall_tools.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/heimdall_tools.csv -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/inspec-gcp-cis-benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/inspec-gcp-cis-benchmark.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/inspec-gcp-pci-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/inspec-gcp-pci-profile.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/inspec-gke-cis-benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/inspec-gke-cis-benchmark.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/kubernetes-cis-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/kubernetes-cis-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/microsoft-iis-8.5-server-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/microsoft-iis-8.5-server-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/microsoft-iis-8.5-site-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/microsoft-iis-8.5-site-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/microsoft-sql-server-2014-database-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/microsoft-sql-server-2014-database-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/microsoft-sql-server-2014-instance-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/microsoft-sql-server-2014-instance-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/microsoft-windows-10-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/microsoft-windows-10-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/microsoft-windows-2012r2-memberserver-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/microsoft-windows-2012r2-memberserver-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/microsoft-windows-server-2016-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/microsoft-windows-server-2016-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/microsoft-windows-server-2019-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/microsoft-windows-server-2019-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/mongodb-enterprise-advanced-3-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/mongodb-enterprise-advanced-3-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/nginx-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/nginx-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/nginx-stigready-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/nginx-stigready-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/oracle-database-12c-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/oracle-database-12c-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/oracle-java-runtime-environment-7-unix-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/oracle-java-runtime-environment-7-unix-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/oracle-java-runtime-environment-8-unix-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/oracle-java-runtime-environment-8-unix-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/oracle-mysql-ee-5.7-cis-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/oracle-mysql-ee-5.7-cis-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/pgstigcheck-inspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/pgstigcheck-inspec.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/rds-bp-benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/rds-bp-benchmark.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/redhat-enterprise-linux-6-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/redhat-enterprise-linux-6-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/redhat-enterprise-linux-7-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/redhat-enterprise-linux-7-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/redhat-enterprise-linux-8-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/redhat-enterprise-linux-8-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/redhat-enterprise-linux-cve-vulnerability-scan-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/redhat-enterprise-linux-cve-vulnerability-scan-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/redhat-jboss-enterprise-application-platform-6.3-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/redhat-jboss-enterprise-application-platform-6.3-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/rsa-archer-6-security-configuration-guide-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/rsa-archer-6-security-configuration-guide-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/vmware-esxi-6.5-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/vmware-esxi-6.5-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/vmware-esxi-6.7-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/vmware-esxi-6.7-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/vmware-vcsa-6.7-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/vmware-vcsa-6.7-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/vmware-vm-6.7-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/vmware-vm-6.7-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselineProfiles/vmware-vsphere-65-virtual-machine-stig-baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselineProfiles/vmware-vsphere-65-virtual-machine-stig-baseline.json -------------------------------------------------------------------------------- /src/assets/data/baselines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/baselines.json -------------------------------------------------------------------------------- /src/assets/data/cms-saf-control-mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/cms-saf-control-mapping.csv -------------------------------------------------------------------------------- /src/assets/data/communityData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/communityData.json -------------------------------------------------------------------------------- /src/assets/data/controltable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/controltable.json -------------------------------------------------------------------------------- /src/assets/data/example-hdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/example-hdf.json -------------------------------------------------------------------------------- /src/assets/data/faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/faqs.json -------------------------------------------------------------------------------- /src/assets/data/featureEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/featureEvent.json -------------------------------------------------------------------------------- /src/assets/data/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/footer.json -------------------------------------------------------------------------------- /src/assets/data/hardening.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/hardening.json -------------------------------------------------------------------------------- /src/assets/data/hdf-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/hdf-schema.json -------------------------------------------------------------------------------- /src/assets/data/howitworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/howitworks.json -------------------------------------------------------------------------------- /src/assets/data/mitre-saf-control-mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/mitre-saf-control-mapping.json -------------------------------------------------------------------------------- /src/assets/data/news.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/news.json -------------------------------------------------------------------------------- /src/assets/data/normalize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/normalize.json -------------------------------------------------------------------------------- /src/assets/data/partners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/partners.json -------------------------------------------------------------------------------- /src/assets/data/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/resources.json -------------------------------------------------------------------------------- /src/assets/data/sponsors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/sponsors.json -------------------------------------------------------------------------------- /src/assets/data/trainingData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/trainingData.json -------------------------------------------------------------------------------- /src/assets/data/whatWeDo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/data/whatWeDo.json -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/fonts/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/fonts/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/fonts/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/fonts/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/fonts/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/fonts/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/google-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/fonts/google-font.woff -------------------------------------------------------------------------------- /src/assets/fonts/google-font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/fonts/google-font.woff2 -------------------------------------------------------------------------------- /src/assets/img/Feature-Events/imagenotfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/Feature-Events/imagenotfound.png -------------------------------------------------------------------------------- /src/assets/img/common/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/common/avatar.png -------------------------------------------------------------------------------- /src/assets/img/do-not-remove/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/do-not-remove/about.png -------------------------------------------------------------------------------- /src/assets/img/gdg hero min.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/gdg hero min.webp -------------------------------------------------------------------------------- /src/assets/img/gdg-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/gdg-logo.svg -------------------------------------------------------------------------------- /src/assets/img/gdg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/gdg.jpg -------------------------------------------------------------------------------- /src/assets/img/gif/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/gif/profile.png -------------------------------------------------------------------------------- /src/assets/img/hdf-schema-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/hdf-schema-diagram.png -------------------------------------------------------------------------------- /src/assets/img/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/home.jpg -------------------------------------------------------------------------------- /src/assets/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/home.png -------------------------------------------------------------------------------- /src/assets/img/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/home.svg -------------------------------------------------------------------------------- /src/assets/img/partners/Army.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/Army.png -------------------------------------------------------------------------------- /src/assets/img/partners/CDC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/CDC.png -------------------------------------------------------------------------------- /src/assets/img/partners/CMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/CMS.png -------------------------------------------------------------------------------- /src/assets/img/partners/DHHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/DHHS.png -------------------------------------------------------------------------------- /src/assets/img/partners/DHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/DHS.png -------------------------------------------------------------------------------- /src/assets/img/partners/DISA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/DISA.png -------------------------------------------------------------------------------- /src/assets/img/partners/DOD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/DOD.png -------------------------------------------------------------------------------- /src/assets/img/partners/FAA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/FAA.png -------------------------------------------------------------------------------- /src/assets/img/partners/IRS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/IRS.png -------------------------------------------------------------------------------- /src/assets/img/partners/NGIA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/NGIA.png -------------------------------------------------------------------------------- /src/assets/img/partners/NRO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/NRO.png -------------------------------------------------------------------------------- /src/assets/img/partners/Progress_Chef_Primary_Logo_Stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/Progress_Chef_Primary_Logo_Stacked.png -------------------------------------------------------------------------------- /src/assets/img/partners/Shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/Shield.png -------------------------------------------------------------------------------- /src/assets/img/partners/VA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/VA.png -------------------------------------------------------------------------------- /src/assets/img/partners/ansible-lockdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/ansible-lockdown.png -------------------------------------------------------------------------------- /src/assets/img/partners/cb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/cb.webp -------------------------------------------------------------------------------- /src/assets/img/partners/cerner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/cerner.png -------------------------------------------------------------------------------- /src/assets/img/partners/cg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/cg.webp -------------------------------------------------------------------------------- /src/assets/img/partners/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/community.png -------------------------------------------------------------------------------- /src/assets/img/partners/crunchydata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/crunchydata.png -------------------------------------------------------------------------------- /src/assets/img/partners/dod-cyber-exchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/dod-cyber-exchange.svg -------------------------------------------------------------------------------- /src/assets/img/partners/elastic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/elastic.png -------------------------------------------------------------------------------- /src/assets/img/partners/gcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/gcp.png -------------------------------------------------------------------------------- /src/assets/img/partners/gdg-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/gdg-x.svg -------------------------------------------------------------------------------- /src/assets/img/partners/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/github.png -------------------------------------------------------------------------------- /src/assets/img/partners/github.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/github.webp -------------------------------------------------------------------------------- /src/assets/img/partners/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/google.svg -------------------------------------------------------------------------------- /src/assets/img/partners/lockheed-martin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/lockheed-martin-logo.png -------------------------------------------------------------------------------- /src/assets/img/partners/nessus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/nessus.png -------------------------------------------------------------------------------- /src/assets/img/partners/refactr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/refactr.png -------------------------------------------------------------------------------- /src/assets/img/partners/rfed-logo-horiz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/rfed-logo-horiz.svg -------------------------------------------------------------------------------- /src/assets/img/partners/saf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/saf_logo.png -------------------------------------------------------------------------------- /src/assets/img/partners/simp-blk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/simp-blk.svg -------------------------------------------------------------------------------- /src/assets/img/partners/simp-wht.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/simp-wht.svg -------------------------------------------------------------------------------- /src/assets/img/partners/simp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/simp.png -------------------------------------------------------------------------------- /src/assets/img/partners/sophos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/sophos.png -------------------------------------------------------------------------------- /src/assets/img/partners/vmware-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/vmware-logo.png -------------------------------------------------------------------------------- /src/assets/img/partners/vmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/vmware.png -------------------------------------------------------------------------------- /src/assets/img/partners/wtm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/wtm.png -------------------------------------------------------------------------------- /src/assets/img/partners/wtm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/partners/wtm.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Ansible Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Ansible Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Ansible Logo and Typemark-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Ansible Logo and Typemark-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Ansible Logo and Typemark-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Ansible Logo and Typemark-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Ansible Typemark-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Ansible Typemark-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/CHEF Icon and Typemark-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/CHEF Icon and Typemark-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/CHEF Icon and Typemark-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/CHEF Icon and Typemark-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/CHEF Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/CHEF Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/CHEF Typemark-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/CHEF Typemark-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Harden Icon-Dark-NoColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Harden Icon-Dark-NoColor.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Harden Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Harden Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Harden Icon-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Harden Icon-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Hardening Lib Icon-Dark-NoColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Hardening Lib Icon-Dark-NoColor.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Hardening Lib Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Hardening Lib Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Hardening Lib Icon-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Hardening Lib Icon-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/InSpec Icon-Dark-NoColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/InSpec Icon-Dark-NoColor.svg -------------------------------------------------------------------------------- /src/assets/img/svg/InSpec Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/InSpec Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/InSpec Icon-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/InSpec Icon-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/InSpec Typemark-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/InSpec Typemark-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/InSpec Typemark-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/InSpec Typemark-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Normalize Icon-Dark-NoColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Normalize Icon-Dark-NoColor.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Normalize Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Normalize Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Normalize Icon-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Normalize Icon-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Plan Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Plan Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Plan Icon-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Plan Icon-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Splunk Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Splunk Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Splunk Icon-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Splunk Icon-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Terraform Icon and Typemark-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Terraform Icon and Typemark-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Terraform Icon and Typemark-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Terraform Icon and Typemark-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Terraform Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Terraform Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Terraform Typemark-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Terraform Typemark-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Validate Icon-Dark-NoColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Validate Icon-Dark-NoColor.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Validate Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Validate Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Validate Icon-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Validate Icon-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Validation Lib Icon-Dark-NoColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Validation Lib Icon-Dark-NoColor.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Validation Lib Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Validation Lib Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Validation Lib Icon-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Validation Lib Icon-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Visualize Icon-Dark-NoColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Visualize Icon-Dark-NoColor.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Visualize Icon-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Visualize Icon-Dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/Visualize Icon-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/Visualize Icon-Light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/ansible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/ansible.svg -------------------------------------------------------------------------------- /src/assets/img/svg/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/bg.svg -------------------------------------------------------------------------------- /src/assets/img/svg/chef-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/chef-2.svg -------------------------------------------------------------------------------- /src/assets/img/svg/contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/contact.svg -------------------------------------------------------------------------------- /src/assets/img/svg/hdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/hdf.svg -------------------------------------------------------------------------------- /src/assets/img/svg/hdf2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/hdf2.svg -------------------------------------------------------------------------------- /src/assets/img/svg/hdf3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/hdf3.svg -------------------------------------------------------------------------------- /src/assets/img/svg/heimdall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/heimdall.svg -------------------------------------------------------------------------------- /src/assets/img/svg/inspec-blue-back-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/inspec-blue-back-border.svg -------------------------------------------------------------------------------- /src/assets/img/svg/inspec-white-back-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/inspec-white-back-border.svg -------------------------------------------------------------------------------- /src/assets/img/svg/inspec-white-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/inspec-white-border.svg -------------------------------------------------------------------------------- /src/assets/img/svg/keycloak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/keycloak.svg -------------------------------------------------------------------------------- /src/assets/img/svg/netlify-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/netlify-dark.svg -------------------------------------------------------------------------------- /src/assets/img/svg/netlify-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/netlify-light.svg -------------------------------------------------------------------------------- /src/assets/img/svg/powershell-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/powershell-logo.svg -------------------------------------------------------------------------------- /src/assets/img/svg/saf_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/saf_logo.svg -------------------------------------------------------------------------------- /src/assets/img/svg/team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/team.svg -------------------------------------------------------------------------------- /src/assets/img/svg/terraform-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/terraform-full.svg -------------------------------------------------------------------------------- /src/assets/img/svg/terraform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/svg/terraform.svg -------------------------------------------------------------------------------- /src/assets/img/team/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/img/team/aaron-lippold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/aaron-lippold.png -------------------------------------------------------------------------------- /src/assets/img/team/alicia-sturtevant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/alicia-sturtevant.png -------------------------------------------------------------------------------- /src/assets/img/team/brett-kreider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/brett-kreider.png -------------------------------------------------------------------------------- /src/assets/img/team/colin-doherty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/colin-doherty.png -------------------------------------------------------------------------------- /src/assets/img/team/dan-haynes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/dan-haynes.png -------------------------------------------------------------------------------- /src/assets/img/team/eugene-aronne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/eugene-aronne.png -------------------------------------------------------------------------------- /src/assets/img/team/jacob-henry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/jacob-henry.png -------------------------------------------------------------------------------- /src/assets/img/team/lipee-vora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/lipee-vora.png -------------------------------------------------------------------------------- /src/assets/img/team/luke-malinowski.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/luke-malinowski.png -------------------------------------------------------------------------------- /src/assets/img/team/mark-tollick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/mark-tollick.png -------------------------------------------------------------------------------- /src/assets/img/team/mohamed-el-sharkawi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/mohamed-el-sharkawi.png -------------------------------------------------------------------------------- /src/assets/img/team/robert-thew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/robert-thew.png -------------------------------------------------------------------------------- /src/assets/img/team/rony-xavier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/rony-xavier.png -------------------------------------------------------------------------------- /src/assets/img/team/sam-cornwell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/sam-cornwell.png -------------------------------------------------------------------------------- /src/assets/img/team/vikram-bala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/vikram-bala.png -------------------------------------------------------------------------------- /src/assets/img/team/will-dower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/team/will-dower.png -------------------------------------------------------------------------------- /src/assets/img/tools/SAF_Tools_Security_Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/SAF_Tools_Security_Validation.png -------------------------------------------------------------------------------- /src/assets/img/tools/ansible-lockdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/ansible-lockdown.png -------------------------------------------------------------------------------- /src/assets/img/tools/aws_lambda_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/aws_lambda_logo.png -------------------------------------------------------------------------------- /src/assets/img/tools/emass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/emass.png -------------------------------------------------------------------------------- /src/assets/img/tools/emass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/emass.svg -------------------------------------------------------------------------------- /src/assets/img/tools/emass_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/emass_dark.png -------------------------------------------------------------------------------- /src/assets/img/tools/heimdall_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/heimdall_logo.png -------------------------------------------------------------------------------- /src/assets/img/tools/inspec-delta-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/inspec-delta-icon.png -------------------------------------------------------------------------------- /src/assets/img/tools/inspec-runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/inspec-runner.png -------------------------------------------------------------------------------- /src/assets/img/tools/inspec_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/inspec_logo.png -------------------------------------------------------------------------------- /src/assets/img/tools/saf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/saf_logo.png -------------------------------------------------------------------------------- /src/assets/img/tools/splunk-black-white-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/splunk-black-white-bg.png -------------------------------------------------------------------------------- /src/assets/img/tools/splunk-white-black-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/tools/splunk-white-black-bg.png -------------------------------------------------------------------------------- /src/assets/img/what-we-do/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/android.svg -------------------------------------------------------------------------------- /src/assets/img/what-we-do/angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/angular.svg -------------------------------------------------------------------------------- /src/assets/img/what-we-do/aog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/aog.png -------------------------------------------------------------------------------- /src/assets/img/what-we-do/assessment_chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/assessment_chevron.svg -------------------------------------------------------------------------------- /src/assets/img/what-we-do/development_chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/development_chevron.svg -------------------------------------------------------------------------------- /src/assets/img/what-we-do/firebase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/firebase.svg -------------------------------------------------------------------------------- /src/assets/img/what-we-do/gcp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/gcp.svg -------------------------------------------------------------------------------- /src/assets/img/what-we-do/howWeSupportIt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/howWeSupportIt.png -------------------------------------------------------------------------------- /src/assets/img/what-we-do/notFound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/notFound.png -------------------------------------------------------------------------------- /src/assets/img/what-we-do/operations_chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/operations_chevron.svg -------------------------------------------------------------------------------- /src/assets/img/what-we-do/planning_chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/planning_chevron.svg -------------------------------------------------------------------------------- /src/assets/img/what-we-do/polymer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/polymer.svg -------------------------------------------------------------------------------- /src/assets/img/what-we-do/tf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/tf.svg -------------------------------------------------------------------------------- /src/assets/img/what-we-do/whenToUseIt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/img/what-we-do/whenToUseIt.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/About/AntiHarassmentPolicy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/About/AntiHarassmentPolicy.vue -------------------------------------------------------------------------------- /src/components/About/aboutCommunity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/About/aboutCommunity.vue -------------------------------------------------------------------------------- /src/components/About/aboutHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/About/aboutHeader.vue -------------------------------------------------------------------------------- /src/components/About/coc.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/About/coc.vue -------------------------------------------------------------------------------- /src/components/About/communityGuidelines.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/About/communityGuidelines.vue -------------------------------------------------------------------------------- /src/components/Admin/Core/AdminDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Admin/Core/AdminDrawer.vue -------------------------------------------------------------------------------- /src/components/Admin/Core/AdminToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Admin/Core/AdminToolbar.vue -------------------------------------------------------------------------------- /src/components/Admin/PushNotification/PushNotification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Admin/PushNotification/PushNotification.vue -------------------------------------------------------------------------------- /src/components/Admin/Speaker/addSpeaker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Admin/Speaker/addSpeaker.vue -------------------------------------------------------------------------------- /src/components/Admin/Speaker/editSpeakers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Admin/Speaker/editSpeakers.vue -------------------------------------------------------------------------------- /src/components/Admin/Speaker/removeSpeakers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Admin/Speaker/removeSpeakers.vue -------------------------------------------------------------------------------- /src/components/Admin/Team/addTeam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Admin/Team/addTeam.vue -------------------------------------------------------------------------------- /src/components/Admin/Team/editTeam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Admin/Team/editTeam.vue -------------------------------------------------------------------------------- /src/components/Admin/Team/removeTeam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Admin/Team/removeTeam.vue -------------------------------------------------------------------------------- /src/components/Admin/Team/viewTeam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Admin/Team/viewTeam.vue -------------------------------------------------------------------------------- /src/components/Blogs/BlogCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Blogs/BlogCard.vue -------------------------------------------------------------------------------- /src/components/Blogs/BlogsDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Blogs/BlogsDetails.vue -------------------------------------------------------------------------------- /src/components/Blogs/BlogsHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Blogs/BlogsHeader.vue -------------------------------------------------------------------------------- /src/components/Contact/contactDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Contact/contactDetails.vue -------------------------------------------------------------------------------- /src/components/Contact/contactHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Contact/contactHeader.vue -------------------------------------------------------------------------------- /src/components/FAQ/faqInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/FAQ/faqInfo.vue -------------------------------------------------------------------------------- /src/components/IconBase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/IconBase.vue -------------------------------------------------------------------------------- /src/components/News/newsInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/News/newsInfo.vue -------------------------------------------------------------------------------- /src/components/Team/CoreTeam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Team/CoreTeam.vue -------------------------------------------------------------------------------- /src/components/Team/TeamHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Team/TeamHeader.vue -------------------------------------------------------------------------------- /src/components/Team/TeamMemberCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Team/TeamMemberCard.vue -------------------------------------------------------------------------------- /src/components/Team/organizingTeam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Team/organizingTeam.vue -------------------------------------------------------------------------------- /src/components/Team/organizingTeamList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/Team/organizingTeamList.vue -------------------------------------------------------------------------------- /src/components/common/card/featureEventCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/common/card/featureEventCard.vue -------------------------------------------------------------------------------- /src/components/common/card/home/eventcard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/common/card/home/eventcard.vue -------------------------------------------------------------------------------- /src/components/common/card/home/eventcardloader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/common/card/home/eventcardloader.vue -------------------------------------------------------------------------------- /src/components/common/card/pastEvent/pastEventCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/common/card/pastEvent/pastEventCard.vue -------------------------------------------------------------------------------- /src/components/common/card/pastEvent/pastEventCardLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/common/card/pastEvent/pastEventCardLoader.vue -------------------------------------------------------------------------------- /src/components/common/card/upcomingEvent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/common/card/upcomingEvent.vue -------------------------------------------------------------------------------- /src/components/common/card/upcomingEventLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/common/card/upcomingEventLoader.vue -------------------------------------------------------------------------------- /src/components/common/partners.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/common/partners.vue -------------------------------------------------------------------------------- /src/components/common/socialInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/common/socialInfo.vue -------------------------------------------------------------------------------- /src/components/controlTable/ControlTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/controlTable/ControlTable.vue -------------------------------------------------------------------------------- /src/components/core/BottomNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/core/BottomNav.vue -------------------------------------------------------------------------------- /src/components/core/Drawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/core/Drawer.vue -------------------------------------------------------------------------------- /src/components/core/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/core/Footer.vue -------------------------------------------------------------------------------- /src/components/core/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/core/Header.vue -------------------------------------------------------------------------------- /src/components/core/PushNotifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/core/PushNotifications.vue -------------------------------------------------------------------------------- /src/components/core/Toolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/core/Toolbar.vue -------------------------------------------------------------------------------- /src/components/core/View.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/core/View.vue -------------------------------------------------------------------------------- /src/components/events/eventsHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/events/eventsHeader.vue -------------------------------------------------------------------------------- /src/components/events/pastEvents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/events/pastEvents.vue -------------------------------------------------------------------------------- /src/components/events/upcomingEvents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/events/upcomingEvents.vue -------------------------------------------------------------------------------- /src/components/gettingstarted/gsInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/gettingstarted/gsInfo.vue -------------------------------------------------------------------------------- /src/components/home/aboutCommunity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/home/aboutCommunity.vue -------------------------------------------------------------------------------- /src/components/home/dem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/home/dem.vue -------------------------------------------------------------------------------- /src/components/home/events.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/home/events.vue -------------------------------------------------------------------------------- /src/components/home/featureEvents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/home/featureEvents.vue -------------------------------------------------------------------------------- /src/components/home/homeScreen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/home/homeScreen.vue -------------------------------------------------------------------------------- /src/components/home/whatwedo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/home/whatwedo.vue -------------------------------------------------------------------------------- /src/components/home/wwdComponents/Chevrons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/home/wwdComponents/Chevrons.vue -------------------------------------------------------------------------------- /src/components/home/wwdComponents/HowItWorks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/home/wwdComponents/HowItWorks.vue -------------------------------------------------------------------------------- /src/components/home/wwdComponents/toolBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/home/wwdComponents/toolBlock.vue -------------------------------------------------------------------------------- /src/components/home/wwdComponents/wwdBasicCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/home/wwdComponents/wwdBasicCard.vue -------------------------------------------------------------------------------- /src/components/home/wwdComponents/wwdSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/home/wwdComponents/wwdSection.vue -------------------------------------------------------------------------------- /src/components/normalize/HDFSVG.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/normalize/HDFSVG.vue -------------------------------------------------------------------------------- /src/components/normalize/normalizeInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/normalize/normalizeInfo.vue -------------------------------------------------------------------------------- /src/components/profiles/profileTemplate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/profiles/profileTemplate.vue -------------------------------------------------------------------------------- /src/components/profiles/profileTemplateCompact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/profiles/profileTemplateCompact.vue -------------------------------------------------------------------------------- /src/components/training/RSVPBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/training/RSVPBlock.vue -------------------------------------------------------------------------------- /src/components/training/traininginfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/training/traininginfo.vue -------------------------------------------------------------------------------- /src/components/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/components/util.js -------------------------------------------------------------------------------- /src/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/config/config.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/main.js -------------------------------------------------------------------------------- /src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/plugins/vuetify.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/router.js -------------------------------------------------------------------------------- /src/store/modules/controlTable.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/store/modules/controlTable.module.js -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/store/store.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/style.css -------------------------------------------------------------------------------- /src/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/sw.js -------------------------------------------------------------------------------- /src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/About.vue -------------------------------------------------------------------------------- /src/views/Admin/Community.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/Admin/Events.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Admin/Events.vue -------------------------------------------------------------------------------- /src/views/Admin/Setting.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/Admin/Speaker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Admin/Speaker.vue -------------------------------------------------------------------------------- /src/views/Admin/Speaker/viewSpeaker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Admin/Speaker/viewSpeaker.vue -------------------------------------------------------------------------------- /src/views/Admin/Team.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Admin/Team.vue -------------------------------------------------------------------------------- /src/views/Admin/Team/showTeam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Admin/Team/showTeam.vue -------------------------------------------------------------------------------- /src/views/Admin/dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Admin/dashboard.vue -------------------------------------------------------------------------------- /src/views/Admin/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Admin/login.vue -------------------------------------------------------------------------------- /src/views/Blogs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Blogs.vue -------------------------------------------------------------------------------- /src/views/Contact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Contact.vue -------------------------------------------------------------------------------- /src/views/ControlTableView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/ControlTableView.vue -------------------------------------------------------------------------------- /src/views/Events.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Events.vue -------------------------------------------------------------------------------- /src/views/Events/EventTemplate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Events/EventTemplate.vue -------------------------------------------------------------------------------- /src/views/Events/Layout/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Events/Layout/Layout.vue -------------------------------------------------------------------------------- /src/views/Events/Layout/SubLayout/LayoutAbout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Events/Layout/SubLayout/LayoutAbout.vue -------------------------------------------------------------------------------- /src/views/Events/Layout/SubLayout/LayoutAgenda.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Events/Layout/SubLayout/LayoutAgenda.vue -------------------------------------------------------------------------------- /src/views/Events/Layout/SubLayout/LayoutPartner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Events/Layout/SubLayout/LayoutPartner.vue -------------------------------------------------------------------------------- /src/views/Events/Layout/SubLayout/LayoutSpeakers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Events/Layout/SubLayout/LayoutSpeakers.vue -------------------------------------------------------------------------------- /src/views/Events/Layout/SubLayout/SubComponents/LayoutSpeaker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Events/Layout/SubLayout/SubComponents/LayoutSpeaker.vue -------------------------------------------------------------------------------- /src/views/Faq.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Faq.vue -------------------------------------------------------------------------------- /src/views/GettingStarted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/GettingStarted.vue -------------------------------------------------------------------------------- /src/views/Hardening.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Hardening.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /src/views/News.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/News.vue -------------------------------------------------------------------------------- /src/views/Normalize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Normalize.vue -------------------------------------------------------------------------------- /src/views/Partners.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Partners.vue -------------------------------------------------------------------------------- /src/views/Team.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Team.vue -------------------------------------------------------------------------------- /src/views/Training.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Training.vue -------------------------------------------------------------------------------- /src/views/Validation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/Validation.vue -------------------------------------------------------------------------------- /src/views/ViewTeam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/src/views/ViewTeam.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/mitre-saf/HEAD/vue.config.js --------------------------------------------------------------------------------