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

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/"}
]
}