Skip to content

Commit

Permalink
clearing up docs (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
himynamesdave authored Dec 11, 2024
1 parent 58e3c98 commit 95f211d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion utilities/arango_cti_processor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ Download and insert all versions of MITRE ATT&CK Enterprise

```shell
python3 utilities/arango_cti_processor/insert_archive_attack_enterprise.py \
--database cti_knowledge_base_store
--database cti_knowledge_base_store \
--ignore_embedded_relationships True
```

Download specific versions of MITRE ATT&CK Enterprise and ignore embedded relationships
Expand Down
5 changes: 3 additions & 2 deletions utilities/arango_cve_processor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Where:
* `insert_archive_cve.py`
* `insert_archive_cpe.py` (ARCHIVED -- logic now exists in [cpe2stix](https://github.com/muchdogesec/cpe2stix), and thus these objects are now imported via `insert_archive_cve.py`))
* `--database` (required): is the name of the Arango database the objects should be stored in. If database does not exist, stix2arango will create it
* `--ignore_embedded_relationships` (optional): boolean, if `true` passed, this will stop any embedded relationships from being generated. Default is `false`
* `--ignore_embedded_relationships` (optional): boolean, if `True` passed, this will stop any embedded relationships from being generated. Default is `false`
* `--years` (optional): the years for which you want CPE and CVE data separated by a comma (e.g. `2024,2023)`. If no `years` flag is passed, all available years will be downloaded. IMPORTANT: flag only works with `insert_archive_cve.py` and `insert_archive_cpe.py`

e.g.
Expand All @@ -23,7 +23,8 @@ Download all CVE data

```shell
python3 utilities/arango_cve_processor/insert_archive_cve.py \
--database cti_knowledge_base_store
--database cti_knowledge_base_store \
--ignore_embedded_relationships True
```

Download only CVE data for year 2023 and 2024
Expand Down

0 comments on commit 95f211d

Please sign in to comment.