17 lines
804 B
Python
17 lines
804 B
Python
def get_threat_content():
|
|
"""
|
|
Returns content for the Threat Intelligence page.
|
|
"""
|
|
return {
|
|
"title": "Threat Intelligence",
|
|
"description": "Explore tools and resources for threat intelligence.",
|
|
"resources": [
|
|
{"name": "Threat Intel - MyDFIR (YouTube)", "url": "https://youtu.be/PyWKOG3q4P4?si=eh4Dl_40ZscQa9n8"},
|
|
{"name": "Threat View", "url": "https://threatview.io/"},
|
|
{"name": "Threat Miner", "url": "https://www.threatminer.org/index.php"},
|
|
{"name": "Pulsedive", "url": "https://pulsedive.com/"},
|
|
{"name": "OTX Alienvault", "url": "https://otx.alienvault.com/"},
|
|
{"name": "Pyramid of Pain", "url": "https://detect-respond.blogspot.com/2013/03/the-pyramid-of-pain.html"}
|
|
]
|
|
}
|