From 95f211d97b5f57a5f546b997e4d05c888036c58a Mon Sep 17 00:00:00 2001 From: David Greenwood Date: Wed, 11 Dec 2024 07:08:58 +0000 Subject: [PATCH] clearing up docs (#42) --- utilities/arango_cti_processor/README.md | 3 ++- utilities/arango_cve_processor/README.md | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/utilities/arango_cti_processor/README.md b/utilities/arango_cti_processor/README.md index 97645a0..da49014 100644 --- a/utilities/arango_cti_processor/README.md +++ b/utilities/arango_cti_processor/README.md @@ -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 diff --git a/utilities/arango_cve_processor/README.md b/utilities/arango_cve_processor/README.md index 9ab1975..cc70508 100644 --- a/utilities/arango_cve_processor/README.md +++ b/utilities/arango_cve_processor/README.md @@ -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. @@ -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