]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
quic: complete schema.json
authorPhilippe Antoine <contact@catenacyber.fr>
Wed, 8 Jun 2022 09:23:47 +0000 (11:23 +0200)
committerPhilippe Antoine <pantoine@oisf.net>
Tue, 2 Aug 2022 12:54:54 +0000 (14:54 +0200)
adding ja3 and extension fields

etc/schema.json

index fe8c1c28fb8c6efbf2a6ef18443b8381389582a4..9debd45893fbec0774b5118147789fe770c26045 100644 (file)
                             "string": {
                                 "type": "string"
                             }
+                        },
+                        "additionalProperties": false
+                    }
+                },
+                "extensions": {
+                    "type": "array",
+                    "items": {
+                        "type": "object",
+                        "properties": {
+                            "name": {
+                                "type": "string"
+                            },
+                            "type": {
+                                "type": "integer"
+                            },
+                            "values": {
+                                "type": "array",
+                                "items": {
+                                    "type": "string"
+                                }
+                            }
+                        },
+                        "additionalProperties": false
+                    }
+                },
+                "ja3": {
+                    "type": "object",
+                    "optional": true,
+                    "properties": {
+                        "hash": {
+                            "type": "string"
+                        },
+                        "string": {
+                            "type": "string"
+                        }
+                    },
+                    "additionalProperties": false
+                },
+                "ja3s": {
+                    "type": "object",
+                    "optional": true,
+                    "properties": {
+                        "hash": {
+                            "type": "string"
+                        },
+                        "string": {
+                            "type": "string"
                         }
                     },
                     "additionalProperties": false