Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAPEX-188: remove technique non_mappables table from website #84

Merged
merged 1 commit into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading