Upload files to "Modules/Investigate"

This commit is contained in:
2024-11-28 00:56:18 -05:00
parent 0911fc4e4f
commit ebbe6e89fe
5 changed files with 74 additions and 0 deletions

View File

@ -0,0 +1,15 @@
def get_domain_content():
"""
Returns content for the Domain Analysis page.
"""
return {
"title": "Domain Analysis",
"description": "Explore tools and resources for analyzing domains.",
"resources": [
{"name": "UrlScan", "url": "https://urlscan.io/"},
{"name": "Wannabrowser", "url": "https://www.wannabrowser.net/"},
{"name": "Browserling", "url": "https://www.browserling.com/"},
{"name": "Kasm", "url": "https://www.kasmweb.com/"},
{"name": "URL2PNG", "url": "https://www.url2png.com/"}
]
}

View File

@ -0,0 +1,14 @@
def get_filehash_content():
"""
Returns content for the File Hash Analysis page.
"""
return {
"title": "File Hash Analysis",
"description": "Explore tools and methods for analyzing file hashes.",
"resources": [
{"name": "VirusTotal", "url": "https://www.virustotal.com/gui/home/upload"},
{"name": "Hybrid Analysis", "url": "https://www.hybrid-analysis.com/"},
{"name": "Joe Security", "url": "https://www.joesecurity.org/"},
{"name": "Intezer", "url": "https://analyze.intezer.com/"}
]
}

15
Modules/Investigate/ip.py Normal file
View File

@ -0,0 +1,15 @@
def get_ip_content():
"""
Returns content for the IP Analysis page.
"""
return {
"title": "IP Analysis",
"description": "Explore tools and resources for analyzing IP addresses.",
"resources": [
{"name": "Censys", "url": "https://search.censys.io/"},
{"name": "Shodan", "url": "https://www.shodan.io/"},
{"name": "Feodo Tracker", "url": "https://feodotracker.abuse.ch/browse/"},
{"name": "IBM X-Force", "url": "https://exchange.xforce.ibmcloud.com/"},
{"name": "GreyNoise", "url": "https://viz.greynoise.io/"}
]
}

View File

@ -0,0 +1,14 @@
def get_malware_content():
"""
Returns content for the Malware Analysis page.
"""
return {
"title": "Malware Analysis",
"description": "Explore tools and resources for analyzing malware.",
"resources": [
{"name": "Virus Total", "url": "https://www.virustotal.com/gui/home/upload"},
{"name": "Any Run", "url": "https://any.run/"},
{"name": "Hybrid Analysis", "url": "https://www.hybrid-analysis.com/"},
{"name": "OTX Alienvault", "url": "https://otx.alienvault.com/"}
]
}

View File

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