diff --git a/data/resources_navigation.json b/data/resources_navigation.json index 9c53f193ffc..09c0447f4ff 100644 --- a/data/resources_navigation.json +++ b/data/resources_navigation.json @@ -8,6 +8,12 @@ "path": "/resources/", "children": [] }, + { + "name": "Learn More About ATTACK", + "id": "learn-more-about-attack", + "path": "/resources/learn-more-about-attack/", + "children": [] + }, { "name": "Getting Started", "id": "getting-started", @@ -112,4 +118,4 @@ "children": [] } ] -} +} \ No newline at end of file diff --git a/modules/resources/__init__.py b/modules/resources/__init__.py index 42706553376..4ef4e1a6ca3 100644 --- a/modules/resources/__init__.py +++ b/modules/resources/__init__.py @@ -22,6 +22,12 @@ def get_menu(): "external_link": False, "children": [], }, + { + "display_name": "Learn More About ATTACK", + "url": "/resources/learn-more-about-attack/", + "external_link": False, + "children": [], + }, { "display_name": "Contribute", "url": "/resources/contribute/", diff --git a/modules/resources/static_pages/learn-more-about-attack.md b/modules/resources/static_pages/learn-more-about-attack.md new file mode 100644 index 00000000000..abb23ffc58a --- /dev/null +++ b/modules/resources/static_pages/learn-more-about-attack.md @@ -0,0 +1,3 @@ +Title: Learn More About ATT&CK +Template: resources/learn-more-about-attack +save_as: resources/learn-more-about-attack/index.html \ No newline at end of file diff --git a/modules/resources/templates/learn-more-about-attack.html b/modules/resources/templates/learn-more-about-attack.html new file mode 100644 index 00000000000..5a885d38362 --- /dev/null +++ b/modules/resources/templates/learn-more-about-attack.html @@ -0,0 +1,108 @@ +{% extends "general/two-column.html" %} +{% set active_page = "resources" -%} +{% set title = page.title + " | MITRE ATT&CK®" -%} +{% import 'macros/navigation.html' as navigation %} +{% import 'macros/contact_card.html' as contact_card %} + +{% block innerleft %} + +{% endblock %} + +{% block innerright %} +
+
+ +
+
+
+

Lean More About ATT&CK

+
+
+

Featured MITRE Presentations

+

+ The featured presentations highlight applications, new techniques, and current topics of interest to ATT&CK. + All MITRE presentations were developed by members of the ATT&CK team at MITRE. +

+
+ {{contact_card.render("
Automation: The Wonderful Wizard of CTI (Or is IT?)
", "", + "This presentation from the SANS CTI Summit + explores how automation can be applied to cyber + threat intelligence using the Threat Report ATT&CK + Mapper (TRAM).", + buttons=[ + {"label": "View Presentation", "url": + "https://www.slideshare.net/MITREATTACK/automation-the-wonderful-wizard-of-cti-or-is-it"} + ], + fa_icon=None, invert_icon=True, header_background=True, footer_description="January 2020")}} + {{contact_card.render("
Adaptive Adversary Emulation with + MITRE ATT&CK
", "", "This presentation from the SANS Purple Team + Summit looks at moving beyond traditional, rigid + adversary emulation by leveraging MITRE ATT&CK.", + buttons=[ + {"label": "View Presentation", "url": + "https://www.sans.org/presentations/adaptive-adversary-emulation-with-mitre-att-ck/"} + ], + fa_icon=None, invert_icon=True, header_background=True, footer_description="October 2019")}} + {{contact_card.render("
Becoming a Yogi on Mac ATT&CK
", "", "This presentation + gives an overview of the ATT&CK framework and matrix for MacOS and how to use it, using OceanLotus as an + example. Includes a walkthrough of mapping a given technique from a report to the ATT&CK matrix, and + highlight areas of desired improvement", + buttons=[ + {"label": "View Presentation", "url": "https://www.youtube.com/watch?v=N_xBbDDycHo"} + ], + fa_icon=None, invert_icon=True, header_background=True, footer_description="October 2021")}} +
+
+ Browse all MITRE presentations +
+
+

ATT&CKCon Presentations

+

+ At MITRE ATT&CK's yearly conference, cybersecurity leaders and practitioners of all levels are + invited to strengthen capabilities and engage with others in the community through two days of programming, + featuring knowledgeable speakers, engaging content, and meaningful collaboration, all designed to help + leverage the ATT&CK framework. Browse the archive of presentations organized by event. +

+

+ Learn about future ATT&CKcons by keeping up with us at Engage with ATT&CK +

+
+ {{contact_card.render("ATT&CKcon 4.0", "/resources/attackcon/october-2023/", "October 24th - 25th, + 2023
McLean, VA", + invert_icon=True)}} + {{contact_card.render("ATT&CKcon 3.0", "/resources/attackcon/march-2022/", "March 29th - 30th, + 2022
McLean, VA", + invert_icon=True)}} + {{contact_card.render("ATT&CKcon PowerHour", "/resources/attackcon/october-2020/", "January 21st, + 2021
McLean, VA", + invert_icon=True)}} + {{contact_card.render("ATT&CKcon 2018", "/resources/attackcon/october-2019/", "October 23rd - 24th, + 2018
McLean, VA", + invert_icon=True)}} + {{contact_card.render("ATT&CKcon 2.0", "/resources/attackcon/october-2018/", "October 28th - 30th, + 2019
McLean, VA", + invert_icon=True)}} +
+
+
+

MITRE CTI Training

+

+ Using MITRE ATT&CK for Cyber Threat Intelligence Training by Katie Nickels and Adam Pennington provides + several modules to help you learn how to apply ATT&CK and improve your threat intelligence practices +

+

Take the Training

+
+
+
+
+
+{% endblock %} + +{% block scripts %} {{ super () }} + + +{% endblock %} \ No newline at end of file