From: Hadiqa Alamdar Bukhari Date: Tue, 13 Feb 2024 12:55:38 +0000 (+0500) Subject: dns: add missing dns keywords to schema.json X-Git-Tag: suricata-8.0.0-beta1~1721 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c193b1a3d184ac9e56427b97ca4ed576e40166f;p=thirdparty%2Fsuricata.git dns: add missing dns keywords to schema.json Found and added missing dns fields in schema.json after manual code review. Added description to these newly added dns fields. Feature #5642 --- diff --git a/etc/schema.json b/etc/schema.json index 502888feb0..ec8b915bb5 100644 --- a/etc/schema.json +++ b/etc/schema.json @@ -999,6 +999,10 @@ "description": "DNS opcode as an integer", "type": "integer" }, + "tc": { + "description": "DNS truncation flag", + "type": "boolean" + }, "answers": { "type": "array", "minItems": 1, @@ -1034,6 +1038,22 @@ } }, "additionalProperties": false + }, + "sshfp": { + "description": "A Secure Shell fingerprint, used to verify the system’s authenticity", + "type": "object", + "properties": { + "fingerprint": { + "type": "string" + }, + "algo": { + "type": "integer" + }, + "type": { + "type": "integer" + } + }, + "additionalProperties": false } }, "additionalProperties": false @@ -1190,6 +1210,26 @@ "items": { "type": "string" } + }, + "SSHFP": { + "description": "A Secure Shell fingerprint is used to verify the system’s authenticity", + "type": "array", + "minItems": 1, + "items": { + "type": "object", + "properties": { + "fingerprint": { + "type": "string" + }, + "algo": { + "type": "integer" + }, + "type": { + "type": "integer" + } + }, + "additionalProperties": false + } } }, "additionalProperties": false