Skip to content

Commit

Permalink
remove technique non_mappables table (#84)
Browse files Browse the repository at this point in the history
Co-authored-by: Eva <[email protected]>
  • Loading branch information
emeth1 and Eva authored Feb 21, 2024
1 parent fc8b39d commit 705dfcb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/mappings_explorer/site_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1003,6 +1003,8 @@ def build_attack_pages(projects: list, url_prefix: str, breadcrumbs: list):
projects=projects,
techniques=all_techniques,
)
# non_mappable attack technique tables not currently shown
# in the website. Waiting for better solution to be worked out
non_mappables = parse_non_mappable_techniques(
attack_data=attack_data,
techniques=all_techniques,
Expand Down
3 changes: 2 additions & 1 deletion src/mappings_explorer/templates/attack_landing.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
<span class="tooltip-text">Non-mappable techniques cannot be easily mitigated with preventive controls since they are based on behaviors performed outside of the scope of enterprise defenses and controls</span>
</div>
</div>
{{ macros.table(non_mappable_headers, non_mappables, url_prefix) }}
<!-- non-mappables table removed until better solution worked out -->
<!-- {{ macros.table(non_mappable_headers, non_mappables, url_prefix) }} -->
</div>
</div>
</section>
Expand Down

0 comments on commit 705dfcb

Please sign in to comment.