As a user of the ATT&CK website, I want to see the correct count of tactics on the tactics page (https://attack.mitre.org/beta/tactics/enterprise/).
To fix this, we should replace (
|
'tactics_list_len': str(len(tactics)) |
) to
'tactics_list_len': str(len(tactics[domain])). This will return the correct tactic count per domain.
Please pull/submit pull request from/to the feature/subtechniques-2.1 branch
As a user of the ATT&CK website, I want to see the correct count of tactics on the tactics page (https://attack.mitre.org/beta/tactics/enterprise/).
To fix this, we should replace (
attack-website/modules/tactic.py
Line 48 in 82d24bb
'tactics_list_len': str(len(tactics[domain])). This will return the correct tactic count per domain.Please pull/submit pull request from/to the
feature/subtechniques-2.1branch