16 lines
599 B
Python
16 lines
599 B
Python
def get_investigate_content():
|
|
"""
|
|
Returns the content for the Investigate page.
|
|
"""
|
|
return {
|
|
"title": "Investigate",
|
|
"description": "Explore and analyze potential threats using the resources and tools provided.",
|
|
"resources": [
|
|
{"name": "Threat Intel", "url": "/investigate/threat"},
|
|
{"name": "IP", "url": "/investigate/ip"},
|
|
{"name": "Domain", "url": "/investigate/domain"},
|
|
{"name": "File Hash", "url": "/investigate/filehash"},
|
|
{"name": "Malware", "url": "/investigate/malware"}
|
|
]
|
|
}
|