Censys · Schema

Smb

Smb schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
group_name string Default group name
has_ntlm boolean Server supports the NTLM authentication method
native_os string Server-identified operating system
negotiation_log object
ntlm string Native LAN manager
session_setup_log object
smb_capabilities object Capabilities flags for the connection. See [MS-SMB2] Sect. 2.2.4.
smb_version object
smbv1_support boolean
View JSON Schema on GitHub

JSON Schema

asset-graph-smb-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/asset-graph-smb-schema.json",
  "title": "Smb",
  "description": "Smb schema from Asset Graph API",
  "type": "object",
  "properties": {
    "group_name": {
      "description": "Default group name",
      "type": "string"
    },
    "has_ntlm": {
      "description": "Server supports the NTLM authentication method",
      "type": "boolean"
    },
    "native_os": {
      "description": "Server-identified operating system",
      "type": "string"
    },
    "negotiation_log": {
      "$ref": "#/components/schemas/Smb_NegotiationLog"
    },
    "ntlm": {
      "description": "Native LAN manager",
      "type": "string"
    },
    "session_setup_log": {
      "$ref": "#/components/schemas/Smb_SessionSetupLog"
    },
    "smb_capabilities": {
      "$ref": "#/components/schemas/Smb_SmbCapabilities",
      "description": "Capabilities flags for the connection. See [MS-SMB2] Sect. 2.2.4."
    },
    "smb_version": {
      "$ref": "#/components/schemas/Smb_SmbVersions"
    },
    "smbv1_support": {
      "type": "boolean"
    }
  },
  "additionalProperties": false
}