Why Hubble?
Build a single source of truth
Hubble is the world’s first Technology Intelligence Platform, that provides end-to-end visibility across your entire technology domain.
Agentless architecture
Customizable Dashboarding
Intuitive Query Builder
Content Library
Graph Explorer
See
Leave no stone unturned
Hubble integrates with a broad range of technologies that allows us to form a complete, continually updated map of your technology domain.
POWERFUL SEARCH
END-TO-END VISIBILITY
UNDERSTAND
Inventory is not enough
Unlike many other solutions, only Hubble brings full context to your assets, allowing users to quickly explore the assets themselves — and the relationships held with other assets in your environment.
ASSET GRAPH™
WORKFLOWS
ENABLE
Help, not a hindrance
Your IT and Security teams don’t need ‘just another dashboard’ — they need to be enabled with capabilities that integrate seamlessly with existing technology and processes in the enterprise.
INTEROPERABILITY
ASSET INTELLIGENCE
Connector Ecosystem
From OT to BYOD and everything in-between
Hubble supports hundreds of technology types which can be easily ingested into our Asset Graph, allowing for high time-to-value and minimal effort. The Hubble Connector SDK can also be leveraged to build custom connectors, for internal software and asset telemetry.
Connector Ecosystem
How our platform can work for you
Hubble supports hundreds of technology types which can be easily ingested into our Asset Graph, allowing for high time-to-value and minimal effort. The Hubble Connector SDK can also be leveraged to build custom connectors, for internal software and asset telemetry.
Report confidently on the state of your assets and data
Hubble eliminates security gaps by validating controls and identifying coverage and configuration issues.
Hear from our enterprise customers
Hubble for developers
Hubble is a true SaaS platform, which can be extended and integrated with. Hubble handles all of the analytics and infrastructure, so you can focus on putting our data to work in your environment. Contact your support team to access our schema, API docs, SDK, or code samples.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import datetime
from hubble_data_api import assets
def search_for_recent_systems():
seven_days_ago = datetime.datetime.now() - datetime.timedelta(7)
for system_asset in assets.systems(
"last_seen > ?",
(seven_days_ago,)
):
yield system_asset
if __name__ == "__main__":
report_unpatched_systems = []
for record in search_for_recent_systems():
if len(record.active_cves) > 0:
report_unpatched_systems.append(record["system_name"])
print("The following recently seen systems have unpatched vulnerabilities:\n")
print("\n".join(records))