mirror of
https://github.com/utoni/nDPId.git
synced 2026-05-06 03:45:27 +00:00
Bump libnDPI to 37f918322c0a489b5143a987c8f1a44a6f78a6f3 and updated flow json schema file.
* export env vars AR / CMAKE_C_COMPILER_AR and RANLIB / CMAKE_C_COMPILER_RANLIB while building libnDPI * nDPId check API version during startup (macro vs. function call) and print a warning if they are different Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
This commit is contained in:
parent
c5c7d83c97
commit
f9bd7d29ce
375 changed files with 16651 additions and 15694 deletions
|
|
@ -208,91 +208,126 @@
|
|||
},
|
||||
"ndpi": {
|
||||
"type": "object",
|
||||
"required": [ "proto", "breed" ],
|
||||
"required": [ "proto", "proto_id", "breed", "encrypted" ],
|
||||
|
||||
"if": {
|
||||
"properties": { "proto": { "enum": [ "Unknown", "Skype_Teams" ] } }
|
||||
"properties": {
|
||||
"proto": {
|
||||
"type": "string"
|
||||
},
|
||||
"proto_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"category": {
|
||||
"type": "string"
|
||||
},
|
||||
"category_id": {
|
||||
"type": "number"
|
||||
},
|
||||
"encrypted": {
|
||||
"type": "number",
|
||||
"enum": [
|
||||
0,
|
||||
1
|
||||
]
|
||||
},
|
||||
"breed": {
|
||||
"type": "string"
|
||||
},
|
||||
"flow_risk": {
|
||||
"type": "object"
|
||||
},
|
||||
"confidence": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"0": {
|
||||
"type": "string"
|
||||
},
|
||||
"1": {
|
||||
"type": "string"
|
||||
},
|
||||
"2": {
|
||||
"type": "string"
|
||||
},
|
||||
"3": {
|
||||
"type": "string"
|
||||
},
|
||||
"4": {
|
||||
"type": "string"
|
||||
},
|
||||
"5": {
|
||||
"type": "string"
|
||||
},
|
||||
"6": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"entropy": {
|
||||
"type": "number"
|
||||
},
|
||||
"hostname": {
|
||||
"type": "string"
|
||||
},
|
||||
"dhcp": {
|
||||
"type": "object"
|
||||
},
|
||||
"discord": {
|
||||
"type": "object"
|
||||
},
|
||||
"bittorrent": {
|
||||
"type": "object"
|
||||
},
|
||||
"mdns": {
|
||||
"type": "object"
|
||||
},
|
||||
"ntp": {
|
||||
"type": "object"
|
||||
},
|
||||
"ubntac2": {
|
||||
"type": "object"
|
||||
},
|
||||
"kerberos": {
|
||||
"type": "object"
|
||||
},
|
||||
"telnet": {
|
||||
"type": "object"
|
||||
},
|
||||
"tls": {
|
||||
"type": "object"
|
||||
},
|
||||
"quic": {
|
||||
"type": "object"
|
||||
},
|
||||
"imap": {
|
||||
"type": "object"
|
||||
},
|
||||
"http": {
|
||||
"type": "object"
|
||||
},
|
||||
"pop": {
|
||||
"type": "object"
|
||||
},
|
||||
"smtp": {
|
||||
"type": "object"
|
||||
},
|
||||
"dns": {
|
||||
"type": "object"
|
||||
},
|
||||
"ftp": {
|
||||
"type": "object"
|
||||
},
|
||||
"ssh": {
|
||||
"type": "object"
|
||||
},
|
||||
"stun": {
|
||||
"type": "object"
|
||||
},
|
||||
"softether": {
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"return": true
|
||||
},
|
||||
"else": {
|
||||
"required": [ "category", "confidence" ]
|
||||
},
|
||||
|
||||
"proto": {
|
||||
"type": "string"
|
||||
},
|
||||
"category": {
|
||||
"type": "string"
|
||||
},
|
||||
"breed": {
|
||||
"type": "string"
|
||||
},
|
||||
"flow_risk": {
|
||||
"type": "object"
|
||||
},
|
||||
"confidence": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"0",
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4"
|
||||
]
|
||||
}
|
||||
},
|
||||
"entropy": {
|
||||
"type": "number"
|
||||
},
|
||||
"dhcp": {
|
||||
"type": "object"
|
||||
},
|
||||
"bittorrent": {
|
||||
"type": "object"
|
||||
},
|
||||
"mdns": {
|
||||
"type": "object"
|
||||
},
|
||||
"ntp": {
|
||||
"type": "object"
|
||||
},
|
||||
"ubntac2": {
|
||||
"type": "object"
|
||||
},
|
||||
"kerberos": {
|
||||
"type": "object"
|
||||
},
|
||||
"telnet": {
|
||||
"type": "object"
|
||||
},
|
||||
"tls": {
|
||||
"type": "object"
|
||||
},
|
||||
"quic": {
|
||||
"type": "object"
|
||||
},
|
||||
"imap": {
|
||||
"type": "object"
|
||||
},
|
||||
"http": {
|
||||
"type": "object"
|
||||
},
|
||||
"pop": {
|
||||
"type": "object"
|
||||
},
|
||||
"smtp": {
|
||||
"type": "object"
|
||||
},
|
||||
"dns": {
|
||||
"type": "object"
|
||||
},
|
||||
"ftp": {
|
||||
"type": "object"
|
||||
},
|
||||
"ssh": {
|
||||
"type": "object"
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue