diff --git a/README.md b/README.md index 6acddcf5..ee1b8bb8 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ TheHive Case Templates could be found in `docs/thehive_templates` directory and ## Data source of the ATC framework -ATC RE&CT project plays a role of data source for the [Atomic Threat Coverage](https://github.com/atc-project/atomic-threat-coverage) framework, that uses it to generate Markdown and Confluence knowledge bases, ATT&CK Navigator profiles, Elasticsearch indexes and [other](https://github.com/atc-project/atomic-threat-coverage#how-it-works) analytics. +ATC RE&CT project plays a role of data source for the [Atomic Threat Coverage](https://github.com/atc-project/atomic-threat-coverage) framework, that uses it to generate Markdown and Confluence knowledge bases, ATT&CK Navigator layers, Elasticsearch indexes and [other](https://github.com/atc-project/atomic-threat-coverage#how-it-works) analytics. Originally analytics related to Incident Response were part of the ATC, but we decided to move it into a separate project to make it easier to maintain and provide an option for integration with other projects in this area. @@ -139,7 +139,7 @@ Originally analytics related to Incident Response were part of the ATC, but we d python3 main.py --thehive python3 main.py -NAV ``` - You will find the outcome in the `docs` directory and Confluence pages (according to the configuration). At the moment, RE&CT Navigator profile could be opened only in the [customized application](https://github.com/atc-project/react-navigator). + You will find the outcome in the `docs` directory and Confluence pages (according to the configuration). Also, the RE&CT Navigator layer could be opened only in the [customized application](https://github.com/atc-project/react-navigator). 5. Generate your own (private) website with your analytics, using [mkdocs](https://www.mkdocs.org/): ``` diff --git a/README_RU.md b/README_RU.md index b14018a4..1ac5998a 100644 --- a/README_RU.md +++ b/README_RU.md @@ -141,7 +141,7 @@ Response Playbook (Сценарий Реагирования) — это пла python3 main.py --thehive python3 main.py -NAV ``` - Результат будет доступен в директории `docs` и страницах Confluence (в соответствии с конфигурацией). На текущий момент, профиль RE&CT Navigator можно открыть только в [кастомизированном приложении](https://github.com/atc-project/react-navigator). + Результат будет доступен в директории `docs` и страницах Confluence (в соответствии с конфигурацией). Профиль RE&CT Navigator можно открыть только в [кастомизированном приложении](https://github.com/atc-project/react-navigator). 5. Сгенерируйте ваш собственный (приватный) веб-сайт с вашей собственной аналитикой, используя [mkdocs](https://www.mkdocs.org/): ``` diff --git a/main.py b/main.py index c8251ede..3790b587 100755 --- a/main.py +++ b/main.py @@ -61,9 +61,11 @@ help="Build initial pages or directories " + "depending on the export type") parser.add_argument('-cpat', '--confluence-pat', action='store', - help='Personal Access Token used to export analytics \ - to Confluence. Confluence Username and passsword \ - promted if this parameter is not provided') + help='Personal Access Token used to export analytics to \ + the Confluence. You can also use CONFLUENCE_PAT \ + environment variable instead of the argument. If this \ + parameter or the variable are not provided, Confluence \ + username and password will be requested.') args = parser.parse_args()