doc: quic in eve/schema

Ticket: #6076
pull/9816/head
Philippe Antoine 3 years ago committed by Victor Julien
parent 2f4027c117
commit 8c5310aefd

@ -2971,15 +2971,18 @@
"optional": true, "optional": true,
"properties": { "properties": {
"cyu": { "cyu": {
"description": "ja3-like fingerprint for versions of QUIC before standardization",
"type": "array", "type": "array",
"minItems": 1, "minItems": 1,
"items": { "items": {
"type": "object", "type": "object",
"properties": { "properties": {
"hash": { "hash": {
"description": "cyu hash hex representation",
"type": "string" "type": "string"
}, },
"string": { "string": {
"description": "cyu hash string representation",
"type": "string" "type": "string"
} }
}, },
@ -2987,18 +2990,22 @@
} }
}, },
"extensions": { "extensions": {
"description": "list of extensions in hello",
"type": "array", "type": "array",
"minItems": 1, "minItems": 1,
"items": { "items": {
"type": "object", "type": "object",
"properties": { "properties": {
"name": { "name": {
"description": "human-friendly name of the extension",
"type": "string" "type": "string"
}, },
"type": { "type": {
"description": "integer identifier of the extension",
"type": "integer" "type": "integer"
}, },
"values": { "values": {
"description": "extension values",
"type": "array", "type": "array",
"minItems": 1, "minItems": 1,
"items": { "items": {
@ -3010,38 +3017,47 @@
} }
}, },
"ja3": { "ja3": {
"description": "ja3 from client, as in TLS",
"type": "object", "type": "object",
"optional": true, "optional": true,
"properties": { "properties": {
"hash": { "hash": {
"description": "ja3 hex representation",
"type": "string" "type": "string"
}, },
"string": { "string": {
"description": "ja3 string representation",
"type": "string" "type": "string"
} }
}, },
"additionalProperties": false "additionalProperties": false
}, },
"ja3s": { "ja3s": {
"description": "ja3 from server, as in TLS",
"type": "object", "type": "object",
"optional": true, "optional": true,
"properties": { "properties": {
"hash": { "hash": {
"description": "ja3s hex representation",
"type": "string" "type": "string"
}, },
"string": { "string": {
"description": "ja3s string representation",
"type": "string" "type": "string"
} }
}, },
"additionalProperties": false "additionalProperties": false
}, },
"sni": { "sni": {
"description": "Server Name Indication",
"type": "string" "type": "string"
}, },
"ua": { "ua": {
"description": "User Agent for versions of QUIC before standardization",
"type": "string" "type": "string"
}, },
"version": { "version": {
"description": "Quic protocol version",
"type": "string" "type": "string"
} }
}, },

Loading…
Cancel
Save