Upload files to "Modules"

This commit is contained in:
2024-11-28 00:55:40 -05:00
parent cc9de49dba
commit 002467caed
5 changed files with 488 additions and 0 deletions

15
Modules/investigate.py Normal file
View File

@ -0,0 +1,15 @@
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"}
]
}