Censys · Schema

Ike_V1

Ike_V1 schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
accepted_proposal boolean Did the host accept our security proposal? When false, the host responded with an error.
notify_message_types arraynull Which types of NOTIFY messages did the host send us?
vendor_ids arraynull The list of Vendor ID "extensions" the host claimed to support in its handshake
View JSON Schema on GitHub

JSON Schema

platform-ike-v1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-ike-v1-schema.json",
  "title": "Ike_V1",
  "description": "Ike_V1 schema from Censys Platform API",
  "type": "object",
  "properties": {
    "accepted_proposal": {
      "description": "Did the host accept our security proposal? When false, the host responded with an error.",
      "type": "boolean"
    },
    "notify_message_types": {
      "description": "Which types of NOTIFY messages did the host send us?",
      "items": {
        "format": "int32",
        "minimum": 0,
        "type": "integer"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "vendor_ids": {
      "description": "The list of Vendor ID \"extensions\" the host claimed to support in its handshake",
      "format": "utf8",
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "additionalProperties": false
}