Censys · Schema
EndpointScanState
EndpointScanState schema from Censys Platform API
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery
Properties
| Name | Type | Description |
|---|---|---|
| banner | string | |
| banner_hash_sha256 | string | |
| chrome_devtools | object | |
| cobalt_strike | object | |
| elasticsearch | object | |
| endpoint_type | string | |
| extracted | object | |
| fortigate | object | |
| graphql | object | |
| hostname | string | |
| http | object | |
| ip | string | |
| ivanti_avalanche | object | |
| jenkins | object | |
| kubernetes | object | |
| mcp | object | |
| ollama | object | |
| open_directory | object | |
| path | string | |
| plex_media_server | object | |
| port | integer | |
| pprof | object | |
| prometheus | object | |
| prometheus_target | object | |
| redlion_web | object | |
| scada_view | object | |
| scan_time | string | |
| screenshots | arraynull | |
| transport_protocol | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-endpointscanstate-schema.json",
"title": "EndpointScanState",
"description": "EndpointScanState schema from Censys Platform API",
"type": "object",
"properties": {
"banner": {
"format": "utf8",
"type": "string"
},
"banner_hash_sha256": {
"format": "hex",
"type": "string"
},
"chrome_devtools": {
"$ref": "#/components/schemas/ChromeDevtools"
},
"cobalt_strike": {
"$ref": "#/components/schemas/CobaltStrike"
},
"elasticsearch": {
"$ref": "#/components/schemas/ElasticSearch"
},
"endpoint_type": {
"type": "string"
},
"extracted": {
"$ref": "#/components/schemas/ExtractedEndpointData"
},
"fortigate": {
"$ref": "#/components/schemas/Fortigate"
},
"graphql": {
"$ref": "#/components/schemas/Graphql"
},
"hostname": {
"type": "string"
},
"http": {
"$ref": "#/components/schemas/Http"
},
"ip": {
"type": "string"
},
"ivanti_avalanche": {
"$ref": "#/components/schemas/IvantiAvalanche"
},
"jenkins": {
"$ref": "#/components/schemas/Jenkins"
},
"kubernetes": {
"$ref": "#/components/schemas/Kubernetes"
},
"mcp": {
"$ref": "#/components/schemas/Mcp"
},
"ollama": {
"$ref": "#/components/schemas/Ollama"
},
"open_directory": {
"$ref": "#/components/schemas/OpenDirectory"
},
"path": {
"type": "string"
},
"plex_media_server": {
"$ref": "#/components/schemas/PlexMediaServer"
},
"port": {
"format": "int32",
"minimum": 0,
"type": "integer"
},
"pprof": {
"$ref": "#/components/schemas/Pprof"
},
"prometheus": {
"$ref": "#/components/schemas/Prometheus"
},
"prometheus_target": {
"$ref": "#/components/schemas/PrometheusTarget"
},
"redlion_web": {
"$ref": "#/components/schemas/RedlionWeb"
},
"scada_view": {
"$ref": "#/components/schemas/ScadaView"
},
"scan_time": {
"type": "string"
},
"screenshots": {
"items": {
"$ref": "#/components/schemas/Screenshot"
},
"type": [
"array",
"null"
]
},
"transport_protocol": {
"enum": [
"",
"tcp",
"udp",
"icmp",
"quic"
],
"type": "string"
}
},
"additionalProperties": false
}