Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docusaurus/docs/principles/why-typescript.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Q: Many of our users primarily use Python, so why did we choose to create a Type

A: We chose TypeScript because it filled a need we had to manage multiple websites such as the
[ATT&CK Navigator](https://github.com/mitre-attack/attack-navigator),
[ATT&CK Workbench](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend),
[ATT&CK Workbench](https://github.com/mitre-attack/attack-workbench-frontend),
and a future redesigned ATT&CK website.
These websites all parse the ATT&CK STIX bundles with the same logic spread out across different codebases.
By consolidating the logic into a single TypeScript-based data model, we can ensure consistency and reduce the risk of errors.
Expand Down
4 changes: 2 additions & 2 deletions docusaurus/schemas/archived-changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ The contents of this repository is not affected, but you can find ATT&CK in STIX
|:--------|:-----------------------------------------------------:|:-------------------------------------------------------------------------:|
| Added `x_mitre_modified_by_ref` field to all object types. This field tracks the identity of the individual or organization which created the current _version_ of the object. | :x: | :white_check_mark: |
| Added `x_mitre_domains` field to all non-relationship objects. This field tracks the domains the object is found in. | :x: | :white_check_mark: |
| Added [collection](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/blob/master/docs/collections.md) objects to track information about specific releases of the dataset and to allow the dataset to be imported into [ATT&CK Workbench](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/). | :x: | :white_check_mark: |
| Added a [collection index](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/blob/master/docs/collections.md) to list the contents of this repository and to allow the data to be imported into [ATT&CK Workbench](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/). | :x: | :white_check_mark: |
| Added [collection](https://github.com/mitre-attack/attack-workbench-frontend/blob/master/docs/collections.md) objects to track information about specific releases of the dataset and to allow the dataset to be imported into [ATT&CK Workbench](https://github.com/mitre-attack/attack-workbench-frontend/). | :x: | :white_check_mark: |
| Added a [collection index](https://github.com/mitre-attack/attack-workbench-frontend/blob/master/docs/collections.md) to list the contents of this repository and to allow the data to be imported into [ATT&CK Workbench](https://github.com/mitre-attack/attack-workbench-frontend/). | :x: | :white_check_mark: |

## 29 April 2021

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ The contents of this repository is not affected, but you can find ATT&CK in STIX
|:--------|:-----------------------------------------------------:|:-------------------------------------------------------------------------:|
| Added `x_mitre_modified_by_ref` field to all object types. This field tracks the identity of the individual or organization which created the current _version_ of the object. | :x: | :white_check_mark: |
| Added `x_mitre_domains` field to all non-relationship objects. This field tracks the domains the object is found in. | :x: | :white_check_mark: |
| Added [collection](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/blob/master/docs/collections.md) objects to track information about specific releases of the dataset and to allow the dataset to be imported into [ATT&CK Workbench](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/). | :x: | :white_check_mark: |
| Added a [collection index](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/blob/master/docs/collections.md) to list the contents of this repository and to allow the data to be imported into [ATT&CK Workbench](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/). | :x: | :white_check_mark: |
| Added [collection](https://github.com/mitre-attack/attack-workbench-frontend/blob/master/docs/collections.md) objects to track information about specific releases of the dataset and to allow the dataset to be imported into [ATT&CK Workbench](https://github.com/mitre-attack/attack-workbench-frontend/). | :x: | :white_check_mark: |
| Added a [collection index](https://github.com/mitre-attack/attack-workbench-frontend/blob/master/docs/collections.md) to list the contents of this repository and to allow the data to be imported into [ATT&CK Workbench](https://github.com/mitre-attack/attack-workbench-frontend/). | :x: | :white_check_mark: |

## 29 April 2021

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Collection

See our [collections document](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/blob/main/docs/collections.md) for more information about the design and intention of collection objects.
See our [collections document](https://github.com/mitre-attack/attack-workbench-frontend/blob/main/docs/collections.md) for more information about the design and intention of collection objects.

_Object containing the following properties:_

Expand Down
2 changes: 1 addition & 1 deletion src/schemas/sdo/collection.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const collectionSchema = attackBaseDomainObjectSchema
.strict()
.meta({
description: `
See our [collections document](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/blob/main/docs/collections.md) for more information about the design and intention of collection objects.
See our [collections document](https://github.com/mitre-attack/attack-workbench-frontend/blob/main/docs/collections.md) for more information about the design and intention of collection objects.
`.trim(),
});

Expand Down
Loading