Skip to content

Commit

Permalink
Update integration docs (#537)
Browse files Browse the repository at this point in the history
* update navigator integration documentation

* update changelog

* add link
  • Loading branch information
clemiller authored May 13, 2024
1 parent f921268 commit b5cba28
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 28 deletions.
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
- Added support for viewing Assets on a configured external ATT&CK Website. See [frontend#526](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/issues/526).
- Added collection events to object history in the sidebar. See [frontend#140](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/issues/140).
- Updated Angular to v17.
- Updated the [integration documentation](https://github.com/center-for-threat-informed-defense/attack-workbench-frontend/blob/master/docs/integrations.md) to be compatible with v5.0.0 of the [ATT&CK Navigator](https://github.com/mitre-attack/attack-navigator).

## 31 October 2023

Expand Down
59 changes: 31 additions & 28 deletions docs/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,38 +42,41 @@ Clone the [ATT&CK Navigator](https://github.com/mitre-attack/attack-navigator) r

### 2. Update the config

Edit the config file `nav-app/src/assets/config.json` by prepending a new object to the versions array connecting to the ATT&CK Workbench REST API. Refer to [Workbench REST API URLs, above](#workbench-rest-api-urls), for the values for the enterprise, mobile and ICS URLs.
Edit the config file `nav-app/src/assets/config.json` by enabling and adding an object to the versions array connecting to the ATT&CK Workbench REST API. Refer to [Workbench REST API URLs, above](#workbench-rest-api-urls), for the values for the enterprise, mobile and ICS URLs.

```json
{
"versions": [
{
"name": "ATT&CK Workbench Data",
"version": "11",
"authentication": {
"enabled": true,
"serviceName": "navigator",
"apiKey": "sample-navigator-apikey"
},
"domains": [
{
"name": "Enterprise",
"identifier": "enterprise-attack",
"data": ["(Enterprise URL)"]
"versions": {
"enabled": true,
"data": [
{
"name": "ATT&CK Workbench Data",
"version": "14",
"authentication": {
"enabled": true,
"serviceName": "navigator",
"apiKey": "sample-navigator-apikey"
},
{
"name": "Mobile",
"identifier": "mobile-attack",
"data": ["(Mobile URL)"]
},
{
"name": "ICS",
"identifier": "ics-attack",
"data": ["(ICS URL)"]
}
]
}
]
"domains": [
{
"name": "Enterprise",
"identifier": "enterprise-attack",
"data": ["(Enterprise URL)"]
},
{
"name": "Mobile",
"identifier": "mobile-attack",
"data": ["(Mobile URL)"]
},
{
"name": "ICS",
"identifier": "ics-attack",
"data": ["(ICS URL)"]
}
]
}
]
}
}
```

Expand Down

0 comments on commit b5cba28

Please sign in to comment.