From a4563e0d40f336d24ab55530734387390de93ede Mon Sep 17 00:00:00 2001 From: Charles Hu Date: Thu, 6 Jun 2024 09:03:34 -0400 Subject: [PATCH] Revert changes Signed-off-by: Charles Hu --- src/.vuepress/navbar.ts | 3 +-- src/.vuepress/sidebar.ts | 9 +-------- src/courses/mappers/02.md | 6 ------ src/courses/mappers/README.md | 14 -------------- 4 files changed, 2 insertions(+), 30 deletions(-) delete mode 100644 src/courses/mappers/02.md delete mode 100644 src/courses/mappers/README.md diff --git a/src/.vuepress/navbar.ts b/src/.vuepress/navbar.ts index 873076625..06d85e9eb 100644 --- a/src/.vuepress/navbar.ts +++ b/src/.vuepress/navbar.ts @@ -10,8 +10,7 @@ export default navbar([ { text: "Beginner Security Automation Developer Class", link: "/courses/beginner/", icon: "creative" }, { text: "Advanced Security Automation Developer Class", link: "/courses/advanced/", icon: "creative" }, { text: "Security Guidance Developer Class", link: "/courses/guidance/", icon: "creative" }, - { text: "InSpec Profile Development & Testing", link: "/courses/profile-dev-test/", icon: "creative"}, - { text: "HDF Mapper Development & Implementation", link: "/courses/mappers/", icon: "creative"}, + { text: "InSpec Profile Development & Testing", link: "/courses/profile-dev-test", icon: "creative"} ]}, { text: "Resources", icon: "book", diff --git a/src/.vuepress/sidebar.ts b/src/.vuepress/sidebar.ts index 89bd2c450..60cb04788 100644 --- a/src/.vuepress/sidebar.ts +++ b/src/.vuepress/sidebar.ts @@ -32,19 +32,12 @@ export default sidebar({ children: "structure", collapsible: true }, - { + { icon: "creative", text: "InSpec Profile Development & Testing", prefix: "courses/profile-dev-test/", children: "structure", collapsible: true }, - { - icon: "creative", - text: "HDF Mapper Development & Implementation", - prefix: "courses/mappers/", - children: "structure", - collapsible: true - }, ], }); diff --git a/src/courses/mappers/02.md b/src/courses/mappers/02.md deleted file mode 100644 index 8b8b7a1ab..000000000 --- a/src/courses/mappers/02.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -order: 2 -next: 03.md -title: Introduction -author: Charles Hu ---- diff --git a/src/courses/mappers/README.md b/src/courses/mappers/README.md deleted file mode 100644 index 257c08ec7..000000000 --- a/src/courses/mappers/README.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -order: 1 -next: 02.md -title: Introduction -author: Charles Hu ---- - -## Introduction - -HDF Converters is a custom data normalization tool for transforming exported data from various security tool formats into the [Heimdall Data Format (HDF)](https://saf.mitre.org/#/normalize). It is currently integrated into [Heimdall2](https://github.com/mitre/heimdall2) and the [SAF CLI](https://github.com/mitre/saf), which collectively are part of the [Security Automation Framework (SAF)](https://saf.mitre.org/#/), a set of tools and processes which aim to standardize and ease security compliance and testing within an automated build pipeline. - -Mappers are frameworks that allow the underlying conversion infrastructure to correlate certain objects or values from one overarching object or file to another overarching object or file. In the case of HDF Converters, these mappers allow for the conversion of some security service formats to HDF (\*-to-HDF) and vice-versa (HDF-to-\*) using the tools provided by the existing conversion infrastructure. - -The process for creating a mapper for HDF Converters is detailed below. In order to ensure that the created mapper produces a HDF file that is both accurate and detailed, it is important that you provide as much information as possible for prototyping and understand the full (or general) schema of your security export for comprehensive information conversion.