diff options
227 files changed, 739 insertions, 23 deletions
diff --git a/nDPId-test.c b/nDPId-test.c index db9296864..ff0679740 100644 --- a/nDPId-test.c +++ b/nDPId-test.c @@ -34,6 +34,15 @@ struct nDPId_return_value unsigned long long int total_idle_flows; }; +struct distributor_return_value +{ + struct thread_return_value thread_return_value; + + unsigned long long int json_string_len_min; + unsigned long long int json_string_len_max; + double json_string_len_avg; +}; + static int mock_pipefds[PIPE_COUNT] = {}; static int mock_servfds[PIPE_COUNT] = {}; static pthread_mutex_t log_mutex = PTHREAD_MUTEX_INITIALIZER; @@ -148,7 +157,8 @@ error: return NULL; } -static enum nDPIsrvd_parse_return parse_json_lines(struct nDPIsrvd_buffer * const buffer) +static enum nDPIsrvd_parse_return parse_json_lines(struct nDPIsrvd_buffer * const buffer, + struct distributor_return_value * const drv) { struct nDPIsrvd_jsmn jsmn = {}; size_t const n = (buffer->used > buffer->max ? buffer->max : buffer->used); @@ -165,6 +175,18 @@ static enum nDPIsrvd_parse_return parse_json_lines(struct nDPIsrvd_buffer * cons { return PARSE_JSMN_ERROR; } + + if (buffer->json_string_length < drv->json_string_len_min) + { + drv->json_string_len_min = buffer->json_string_length; + } + if (buffer->json_string_length > drv->json_string_len_max) + { + drv->json_string_len_max = buffer->json_string_length; + } + drv->json_string_len_avg = + (drv->json_string_len_avg + (drv->json_string_len_max + drv->json_string_len_min) / 2) / 2; + nDPIsrvd_drain_buffer(buffer); } @@ -178,16 +200,22 @@ static void * distributor_client_mainloop_thread(void * const arg) int signalfd = setup_signalfd(dis_epollfd); struct epoll_event events[32]; size_t const events_size = sizeof(events) / sizeof(events[0]); + struct distributor_return_value * const drv = (struct distributor_return_value *)arg; + struct thread_return_value * const trv = &drv->thread_return_value; if (nDPIsrvd_buffer_init(&client_buffer, NETWORK_BUFFER_MAX_SIZE) != 0 || dis_epollfd < 0 || signalfd < 0) { - THREAD_ERROR_GOTO(arg); + THREAD_ERROR_GOTO(trv); } if (add_in_event(dis_epollfd, mock_servfds[PIPE_READ], NULL) != 0) { - THREAD_ERROR_GOTO(arg); + THREAD_ERROR_GOTO(trv); } + drv->json_string_len_min = (unsigned long long int)-1; + drv->json_string_len_max = 0; + drv->json_string_len_avg = 0.; + while (1) { int nready = epoll_wait(dis_epollfd, events, events_size, -1); @@ -196,7 +224,7 @@ static void * distributor_client_mainloop_thread(void * const arg) { if ((events[i].events & EPOLLIN) == 0 && (events[i].events & EPOLLHUP) == 0) { - THREAD_ERROR_GOTO(arg); + THREAD_ERROR_GOTO(trv); } if (events[i].data.fd == mock_servfds[PIPE_READ]) @@ -210,16 +238,16 @@ static void * distributor_client_mainloop_thread(void * const arg) } else if (bytes_read < 0) { - THREAD_ERROR_GOTO(arg); + THREAD_ERROR_GOTO(trv); } printf("%.*s", (int)bytes_read, client_buffer.ptr.text + client_buffer.used); client_buffer.used += bytes_read; - enum nDPIsrvd_parse_return parse_ret = parse_json_lines(&client_buffer); + enum nDPIsrvd_parse_return parse_ret = parse_json_lines(&client_buffer, drv); if (parse_ret != PARSE_NEED_MORE_DATA) { fprintf(stderr, "JSON parsing failed: %s\n", nDPIsrvd_enum_to_string(parse_ret)); - THREAD_ERROR(arg); + THREAD_ERROR(trv); } } else if (events[i].data.fd == signalfd) @@ -230,18 +258,18 @@ static void * distributor_client_mainloop_thread(void * const arg) s = read(signalfd, &fdsi, sizeof(struct signalfd_siginfo)); if (s != sizeof(struct signalfd_siginfo)) { - THREAD_ERROR(arg); + THREAD_ERROR(trv); } if (fdsi.ssi_signo == SIGINT || fdsi.ssi_signo == SIGTERM || fdsi.ssi_signo == SIGQUIT) { fprintf(stderr, "Got signal %d, abort.\n", fdsi.ssi_signo); - THREAD_ERROR(arg); + THREAD_ERROR(trv); } } else { - THREAD_ERROR(arg); + THREAD_ERROR(trv); } } } @@ -330,7 +358,8 @@ static int thread_wait_for_termination(pthread_t thread, time_t wait_time_secs, } #define THREADS_RETURNED_ERROR() \ - (nDPId_return.thread_return_value.val != 0 || nDPIsrvd_return.val != 0 || distributor_return.val != 0) + (nDPId_return.thread_return_value.val != 0 || nDPIsrvd_return.val != 0 || \ + distributor_return.thread_return_value.val != 0) int main(int argc, char ** argv) { if (argc != 2) @@ -395,7 +424,7 @@ int main(int argc, char ** argv) } pthread_t distributor_thread; - struct thread_return_value distributor_return = {}; + struct distributor_return_value distributor_return = {}; if (pthread_create(&distributor_thread, NULL, distributor_client_mainloop_thread, &distributor_return) != 0) { return 1; @@ -403,7 +432,7 @@ int main(int argc, char ** argv) /* Try to gracefully shutdown all threads. */ - while (thread_wait_for_termination(distributor_thread, 1, &distributor_return) == 0) + while (thread_wait_for_termination(distributor_thread, 1, &distributor_return.thread_return_value) == 0) { if (THREADS_RETURNED_ERROR() != 0) { @@ -446,14 +475,22 @@ int main(int argc, char ** argv) nDPId_return.total_idle_flows); printf( - "~~ total memory allocated....: %lu bytes\n" - "~~ total memory freed........: %lu bytes\n" - "~~ total allocations/frees...: %lu/%lu\n" + "~~ total memory allocated....: %llu bytes\n" + "~~ total memory freed........: %llu bytes\n" + "~~ total allocations/frees...: %llu/%llu\n" "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n", - ndpi_memory_alloc_bytes, - ndpi_memory_free_bytes, - ndpi_memory_alloc_count, - ndpi_memory_free_count); + (unsigned long long int)ndpi_memory_alloc_bytes, + (unsigned long long int)ndpi_memory_free_bytes, + (unsigned long long int)ndpi_memory_alloc_count, + (unsigned long long int)ndpi_memory_free_count); + + printf( + "~~ json string min len.......: %llu chars\n" + "~~ json string max len.......: %llu chars\n" + "~~ json string avg len.......: %llu chars\n", + distributor_return.json_string_len_min, + distributor_return.json_string_len_max, + (unsigned long long int)distributor_return.json_string_len_avg); } if (ndpi_memory_alloc_bytes != ndpi_memory_free_bytes || ndpi_memory_alloc_count != ndpi_memory_free_count || diff --git a/nDPIsrvd.c b/nDPIsrvd.c index 6231b2124..68f3ffe1f 100644 --- a/nDPIsrvd.c +++ b/nDPIsrvd.c @@ -30,7 +30,8 @@ struct remote_desc int fd; struct nDPIsrvd_buffer buf; UT_array * buf_cache; - union { + union + { struct { int json_sockfd; @@ -192,6 +193,7 @@ static int drain_main_buffer(struct remote_desc * const remote) } if ((size_t)bytes_written < remote->buf.used) { +#if 0 syslog(LOG_DAEMON, "Distributor wrote less than expected to %.*s:%u: %zd < %zu", (int)sizeof(remote->event_serv.peer_addr), @@ -199,9 +201,10 @@ static int drain_main_buffer(struct remote_desc * const remote) ntohs(remote->event_serv.peer.sin_port), bytes_written, remote->buf.used); +#endif memmove(remote->buf.ptr.raw, remote->buf.ptr.raw + bytes_written, remote->buf.used - bytes_written); remote->buf.used -= bytes_written; - return -1; + return 0; } remote->buf.used = 0; @@ -578,7 +581,8 @@ static struct remote_desc * accept_remote(int server_fd, static int new_connection(int epollfd, int eventfd) { - union { + union + { struct sockaddr_un event_json; struct sockaddr_un event_serv; } sockaddr; diff --git a/test/results/1kxun.pcap.out b/test/results/1kxun.pcap.out index 9b39bd925..6f339c837 100644 --- a/test/results/1kxun.pcap.out +++ b/test/results/1kxun.pcap.out @@ -1174,3 +1174,6 @@ ~~ total memory freed........: 2497118 bytes ~~ total allocations/frees...: 37272/37272 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2402 chars +~~ json string avg len.......: 1336 chars diff --git a/test/results/443-chrome.pcap.out b/test/results/443-chrome.pcap.out index 631573b9a..bb6d8b476 100644 --- a/test/results/443-chrome.pcap.out +++ b/test/results/443-chrome.pcap.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1929465 bytes ~~ total allocations/frees...: 35327/35327 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2387 chars +~~ json string avg len.......: 1280 chars diff --git a/test/results/443-curl.pcap.out b/test/results/443-curl.pcap.out index 7b9afd386..aef2d8c9c 100644 --- a/test/results/443-curl.pcap.out +++ b/test/results/443-curl.pcap.out @@ -31,3 +31,6 @@ ~~ total memory freed........: 1935465 bytes ~~ total allocations/frees...: 35440/35440 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2374 chars +~~ json string avg len.......: 1327 chars diff --git a/test/results/443-firefox.pcap.out b/test/results/443-firefox.pcap.out index 95fca9cb0..20857bc2d 100644 --- a/test/results/443-firefox.pcap.out +++ b/test/results/443-firefox.pcap.out @@ -31,3 +31,6 @@ ~~ total memory freed........: 1951701 bytes ~~ total allocations/frees...: 35999/35999 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 137 chars +~~ json string max len.......: 2377 chars +~~ json string avg len.......: 1329 chars diff --git a/test/results/443-git.pcap.out b/test/results/443-git.pcap.out index 6383ff5d9..5791234b6 100644 --- a/test/results/443-git.pcap.out +++ b/test/results/443-git.pcap.out @@ -31,3 +31,6 @@ ~~ total memory freed........: 1937844 bytes ~~ total allocations/frees...: 35403/35403 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2343 chars +~~ json string avg len.......: 1310 chars diff --git a/test/results/443-opvn.pcap.out b/test/results/443-opvn.pcap.out index 2466cc553..9c407d618 100644 --- a/test/results/443-opvn.pcap.out +++ b/test/results/443-opvn.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1930770 bytes ~~ total allocations/frees...: 35372/35372 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2375 chars +~~ json string avg len.......: 1306 chars diff --git a/test/results/443-safari.pcap.out b/test/results/443-safari.pcap.out index ea753e3ec..870b2178d 100644 --- a/test/results/443-safari.pcap.out +++ b/test/results/443-safari.pcap.out @@ -31,3 +31,6 @@ ~~ total memory freed........: 1933523 bytes ~~ total allocations/frees...: 35372/35372 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 2375 chars +~~ json string avg len.......: 1328 chars diff --git a/test/results/4in4tunnel.pcap.out b/test/results/4in4tunnel.pcap.out index 45da5fa46..c5f9eb0e0 100644 --- a/test/results/4in4tunnel.pcap.out +++ b/test/results/4in4tunnel.pcap.out @@ -21,3 +21,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 536 chars +~~ json string avg len.......: 340 chars diff --git a/test/results/4in6tunnel.pcap.out b/test/results/4in6tunnel.pcap.out index 3355b5a8f..cdd4e15ff 100644 --- a/test/results/4in6tunnel.pcap.out +++ b/test/results/4in6tunnel.pcap.out @@ -18,3 +18,6 @@ ~~ total memory freed........: 1927504 bytes ~~ total allocations/frees...: 35329/35329 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2376 chars +~~ json string avg len.......: 1235 chars diff --git a/test/results/6in4tunnel.pcap.out b/test/results/6in4tunnel.pcap.out index 4f2393b53..b4f4cd099 100644 --- a/test/results/6in4tunnel.pcap.out +++ b/test/results/6in4tunnel.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1931071 bytes ~~ total allocations/frees...: 35452/35452 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 136 chars +~~ json string max len.......: 616 chars +~~ json string avg len.......: 454 chars diff --git a/test/results/6in6tunnel.pcap.out b/test/results/6in6tunnel.pcap.out index 6d27be37f..d40b14573 100644 --- a/test/results/6in6tunnel.pcap.out +++ b/test/results/6in6tunnel.pcap.out @@ -19,3 +19,6 @@ ~~ total memory freed........: 1930550 bytes ~~ total allocations/frees...: 35330/35330 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 505 chars +~~ json string avg len.......: 397 chars diff --git a/test/results/BGP_Cisco_hdlc_slarp.pcap.out b/test/results/BGP_Cisco_hdlc_slarp.pcap.out index b4763578b..94e94d514 100644 --- a/test/results/BGP_Cisco_hdlc_slarp.pcap.out +++ b/test/results/BGP_Cisco_hdlc_slarp.pcap.out @@ -28,3 +28,6 @@ ~~ total memory freed........: 1927794 bytes ~~ total allocations/frees...: 35339/35339 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 145 chars +~~ json string max len.......: 702 chars +~~ json string avg len.......: 488 chars diff --git a/test/results/BGP_redist.pcap.out b/test/results/BGP_redist.pcap.out index 4c22c33ba..1abe87d45 100644 --- a/test/results/BGP_redist.pcap.out +++ b/test/results/BGP_redist.pcap.out @@ -17,3 +17,6 @@ ~~ total memory freed........: 1927417 bytes ~~ total allocations/frees...: 35326/35326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 581 chars +~~ json string avg len.......: 362 chars diff --git a/test/results/EAQ.pcap.out b/test/results/EAQ.pcap.out index 6a6e56223..f47a311c9 100644 --- a/test/results/EAQ.pcap.out +++ b/test/results/EAQ.pcap.out @@ -520,3 +520,6 @@ ~~ total memory freed........: 2252914 bytes ~~ total allocations/frees...: 35837/35837 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 4108 chars +~~ json string avg len.......: 2187 chars diff --git a/test/results/IEC104.pcap.out b/test/results/IEC104.pcap.out index 28a711209..7042729fa 100644 --- a/test/results/IEC104.pcap.out +++ b/test/results/IEC104.pcap.out @@ -32,3 +32,6 @@ ~~ total memory freed........: 1930927 bytes ~~ total allocations/frees...: 35343/35343 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 750 chars +~~ json string avg len.......: 509 chars diff --git a/test/results/KakaoTalk_chat.pcap.out b/test/results/KakaoTalk_chat.pcap.out index 283821aeb..1aa6e086b 100644 --- a/test/results/KakaoTalk_chat.pcap.out +++ b/test/results/KakaoTalk_chat.pcap.out @@ -387,3 +387,6 @@ ~~ total memory freed........: 2169226 bytes ~~ total allocations/frees...: 35996/35996 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 140 chars +~~ json string max len.......: 2311 chars +~~ json string avg len.......: 1295 chars diff --git a/test/results/KakaoTalk_talk.pcap.out b/test/results/KakaoTalk_talk.pcap.out index 87eb91be2..cf7acdea4 100644 --- a/test/results/KakaoTalk_talk.pcap.out +++ b/test/results/KakaoTalk_talk.pcap.out @@ -235,3 +235,6 @@ ~~ total memory freed........: 2106178 bytes ~~ total allocations/frees...: 38603/38603 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 141 chars +~~ json string max len.......: 1592 chars +~~ json string avg len.......: 936 chars diff --git a/test/results/NTPv2.pcap.out b/test/results/NTPv2.pcap.out index ff8049cf1..86ceeeb0d 100644 --- a/test/results/NTPv2.pcap.out +++ b/test/results/NTPv2.pcap.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1927417 bytes ~~ total allocations/frees...: 35326/35326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 888 chars +~~ json string avg len.......: 575 chars diff --git a/test/results/NTPv3.pcap.out b/test/results/NTPv3.pcap.out index 10dff5031..1a7007fac 100644 --- a/test/results/NTPv3.pcap.out +++ b/test/results/NTPv3.pcap.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1927417 bytes ~~ total allocations/frees...: 35326/35326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 513 chars +~~ json string avg len.......: 394 chars diff --git a/test/results/NTPv4.pcap.out b/test/results/NTPv4.pcap.out index ae71b995d..dfbeac5c0 100644 --- a/test/results/NTPv4.pcap.out +++ b/test/results/NTPv4.pcap.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1927417 bytes ~~ total allocations/frees...: 35326/35326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 513 chars +~~ json string avg len.......: 394 chars diff --git a/test/results/Oscar.pcap.out b/test/results/Oscar.pcap.out index 9b9cb5bcd..720ce23ba 100644 --- a/test/results/Oscar.pcap.out +++ b/test/results/Oscar.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1962329 bytes ~~ total allocations/frees...: 35407/35407 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 2235 chars +~~ json string avg len.......: 1244 chars diff --git a/test/results/WebattackRCE.pcap.out b/test/results/WebattackRCE.pcap.out index 6da231fe9..b9e022415 100644 --- a/test/results/WebattackRCE.pcap.out +++ b/test/results/WebattackRCE.pcap.out @@ -3199,3 +3199,6 @@ ~~ total memory freed........: 4502557 bytes ~~ total allocations/frees...: 40095/40095 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 138 chars +~~ json string max len.......: 1221 chars +~~ json string avg len.......: 766 chars diff --git a/test/results/WebattackSQLinj.pcap.out b/test/results/WebattackSQLinj.pcap.out index 8c6160009..1e4e682cd 100644 --- a/test/results/WebattackSQLinj.pcap.out +++ b/test/results/WebattackSQLinj.pcap.out @@ -132,3 +132,6 @@ ~~ total memory freed........: 1956557 bytes ~~ total allocations/frees...: 35470/35470 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 140 chars +~~ json string max len.......: 6053 chars +~~ json string avg len.......: 3169 chars diff --git a/test/results/WebattackXSS.pcap.out b/test/results/WebattackXSS.pcap.out index bc692d624..b59cba226 100644 --- a/test/results/WebattackXSS.pcap.out +++ b/test/results/WebattackXSS.pcap.out @@ -6157,3 +6157,6 @@ ~~ total memory freed........: 4251824 bytes ~~ total allocations/frees...: 46745/46745 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 11151 chars +~~ json string avg len.......: 5718 chars diff --git a/test/results/aimini-http.pcap.out b/test/results/aimini-http.pcap.out index a65d2ccba..9d36a1cd8 100644 --- a/test/results/aimini-http.pcap.out +++ b/test/results/aimini-http.pcap.out @@ -81,3 +81,6 @@ ~~ total memory freed........: 1941249 bytes ~~ total allocations/frees...: 35475/35475 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 137 chars +~~ json string max len.......: 2413 chars +~~ json string avg len.......: 1346 chars diff --git a/test/results/ajp.pcap.out b/test/results/ajp.pcap.out index 91c6d0df1..f388c5416 100644 --- a/test/results/ajp.pcap.out +++ b/test/results/ajp.pcap.out @@ -87,3 +87,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 128 chars +~~ json string max len.......: 1522 chars +~~ json string avg len.......: 830 chars diff --git a/test/results/alexa-app.pcapng.out b/test/results/alexa-app.pcapng.out index dd3a105e8..cec6dbe9e 100644 --- a/test/results/alexa-app.pcapng.out +++ b/test/results/alexa-app.pcapng.out @@ -2382,3 +2382,6 @@ ~~ total memory freed........: 3026439 bytes ~~ total allocations/frees...: 39872/39872 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 138 chars +~~ json string max len.......: 2502 chars +~~ json string avg len.......: 1323 chars diff --git a/test/results/among_us.pcap.out b/test/results/among_us.pcap.out index dc3bb409c..59ef4c74f 100644 --- a/test/results/among_us.pcap.out +++ b/test/results/among_us.pcap.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1927417 bytes ~~ total allocations/frees...: 35326/35326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 514 chars +~~ json string avg len.......: 385 chars diff --git a/test/results/amqp.pcap.out b/test/results/amqp.pcap.out index c2ef2b536..ee7a84df2 100644 --- a/test/results/amqp.pcap.out +++ b/test/results/amqp.pcap.out @@ -65,3 +65,6 @@ ~~ total memory freed........: 1944380 bytes ~~ total allocations/frees...: 35494/35494 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 1030 chars +~~ json string avg len.......: 653 chars diff --git a/test/results/android.pcap.out b/test/results/android.pcap.out index 5e0c756ee..81803fb3b 100644 --- a/test/results/android.pcap.out +++ b/test/results/android.pcap.out @@ -651,3 +651,6 @@ ~~ total memory freed........: 2355984 bytes ~~ total allocations/frees...: 36261/36261 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2370 chars +~~ json string avg len.......: 1256 chars diff --git a/test/results/anyconnect-vpn.pcap.out b/test/results/anyconnect-vpn.pcap.out index d28605163..3b6a5416e 100644 --- a/test/results/anyconnect-vpn.pcap.out +++ b/test/results/anyconnect-vpn.pcap.out @@ -627,3 +627,6 @@ ~~ total memory freed........: 2299602 bytes ~~ total allocations/frees...: 38583/38583 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 141 chars +~~ json string max len.......: 2401 chars +~~ json string avg len.......: 1338 chars diff --git a/test/results/anydesk-2.pcap.out b/test/results/anydesk-2.pcap.out index 9cf161c71..6005fba06 100644 --- a/test/results/anydesk-2.pcap.out +++ b/test/results/anydesk-2.pcap.out @@ -938,3 +938,6 @@ ~~ total memory freed........: 2009485 bytes ~~ total allocations/frees...: 37423/37423 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 136 chars +~~ json string max len.......: 7866 chars +~~ json string avg len.......: 4012 chars diff --git a/test/results/anydesk.pcap.out b/test/results/anydesk.pcap.out index c5dfd658f..825cdbd86 100644 --- a/test/results/anydesk.pcap.out +++ b/test/results/anydesk.pcap.out @@ -50,3 +50,6 @@ ~~ total memory freed........: 2146168 bytes ~~ total allocations/frees...: 42298/42298 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2178 chars +~~ json string avg len.......: 1224 chars diff --git a/test/results/avast_securedns.pcapng.out b/test/results/avast_securedns.pcapng.out index d09b46400..4d04718a7 100644 --- a/test/results/avast_securedns.pcapng.out +++ b/test/results/avast_securedns.pcapng.out @@ -205,3 +205,6 @@ ~~ total memory freed........: 2047573 bytes ~~ total allocations/frees...: 35516/35516 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 142 chars +~~ json string max len.......: 652 chars +~~ json string avg len.......: 475 chars diff --git a/test/results/bad-dns-traffic.pcap.out b/test/results/bad-dns-traffic.pcap.out index 485221334..267397a6f 100644 --- a/test/results/bad-dns-traffic.pcap.out +++ b/test/results/bad-dns-traffic.pcap.out @@ -80,3 +80,6 @@ ~~ total memory freed........: 1944674 bytes ~~ total allocations/frees...: 35713/35713 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 141 chars +~~ json string max len.......: 791 chars +~~ json string avg len.......: 549 chars diff --git a/test/results/badpackets.pcap.out b/test/results/badpackets.pcap.out index 08cb321b7..3918aee67 100644 --- a/test/results/badpackets.pcap.out +++ b/test/results/badpackets.pcap.out @@ -211,3 +211,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 2343 chars +~~ json string avg len.......: 1249 chars diff --git a/test/results/bitcoin.pcap.out b/test/results/bitcoin.pcap.out index 8089969bf..0d57625ec 100644 --- a/test/results/bitcoin.pcap.out +++ b/test/results/bitcoin.pcap.out @@ -119,3 +119,6 @@ ~~ total memory freed........: 3075191 bytes ~~ total allocations/frees...: 36055/36055 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2469 chars +~~ json string avg len.......: 1381 chars diff --git a/test/results/bittorrent.pcap.out b/test/results/bittorrent.pcap.out index 1abecb902..998c81ee2 100644 --- a/test/results/bittorrent.pcap.out +++ b/test/results/bittorrent.pcap.out @@ -190,3 +190,6 @@ ~~ total memory freed........: 2057659 bytes ~~ total allocations/frees...: 35719/35719 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 136 chars +~~ json string max len.......: 2389 chars +~~ json string avg len.......: 1339 chars diff --git a/test/results/bittorrent_ip.pcap.out b/test/results/bittorrent_ip.pcap.out index 528c47a6d..dd10319dc 100644 --- a/test/results/bittorrent_ip.pcap.out +++ b/test/results/bittorrent_ip.pcap.out @@ -48,3 +48,6 @@ ~~ total memory freed........: 2222860 bytes ~~ total allocations/frees...: 35834/35834 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 2416 chars +~~ json string avg len.......: 1350 chars diff --git a/test/results/bittorrent_utp.pcap.out b/test/results/bittorrent_utp.pcap.out index c32f2ec76..77cb472b8 100644 --- a/test/results/bittorrent_utp.pcap.out +++ b/test/results/bittorrent_utp.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1929882 bytes ~~ total allocations/frees...: 35411/35411 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 2402 chars +~~ json string avg len.......: 1300 chars diff --git a/test/results/bt_search.pcap.out b/test/results/bt_search.pcap.out index d1854e61a..e22b81b6b 100644 --- a/test/results/bt_search.pcap.out +++ b/test/results/bt_search.pcap.out @@ -19,3 +19,6 @@ ~~ total memory freed........: 1930550 bytes ~~ total allocations/frees...: 35330/35330 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 563 chars +~~ json string avg len.......: 434 chars diff --git a/test/results/capwap.pcap.out b/test/results/capwap.pcap.out index 6ee355158..93e3cafac 100644 --- a/test/results/capwap.pcap.out +++ b/test/results/capwap.pcap.out @@ -81,3 +81,6 @@ ~~ total memory freed........: 1951317 bytes ~~ total allocations/frees...: 35734/35734 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2379 chars +~~ json string avg len.......: 1259 chars diff --git a/test/results/cassandra.pcap.out b/test/results/cassandra.pcap.out index b52232621..3c24f4d49 100644 --- a/test/results/cassandra.pcap.out +++ b/test/results/cassandra.pcap.out @@ -47,3 +47,6 @@ ~~ total memory freed........: 1938786 bytes ~~ total allocations/frees...: 35614/35614 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 615 chars +~~ json string avg len.......: 426 chars diff --git a/test/results/check_mk_new.pcap.out b/test/results/check_mk_new.pcap.out index a08810748..335f8a5bf 100644 --- a/test/results/check_mk_new.pcap.out +++ b/test/results/check_mk_new.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1930230 bytes ~~ total allocations/frees...: 35423/35423 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 137 chars +~~ json string max len.......: 1109 chars +~~ json string avg len.......: 686 chars diff --git a/test/results/chrome.pcap.out b/test/results/chrome.pcap.out index 7fd4b421d..a73ab6231 100644 --- a/test/results/chrome.pcap.out +++ b/test/results/chrome.pcap.out @@ -130,3 +130,6 @@ ~~ total memory freed........: 2540138 bytes ~~ total allocations/frees...: 41044/41044 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2397 chars +~~ json string avg len.......: 1338 chars diff --git a/test/results/coap_mqtt.pcap.out b/test/results/coap_mqtt.pcap.out index d4c65b96a..348dae486 100644 --- a/test/results/coap_mqtt.pcap.out +++ b/test/results/coap_mqtt.pcap.out @@ -198,3 +198,6 @@ ~~ total memory freed........: 2229046 bytes ~~ total allocations/frees...: 43888/43888 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 136 chars +~~ json string max len.......: 602 chars +~~ json string avg len.......: 438 chars diff --git a/test/results/cpha.pcap.out b/test/results/cpha.pcap.out index be57991e0..194dbf7cb 100644 --- a/test/results/cpha.pcap.out +++ b/test/results/cpha.pcap.out @@ -13,3 +13,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 128 chars +~~ json string max len.......: 477 chars +~~ json string avg len.......: 315 chars diff --git a/test/results/dcerpc.pcap.out b/test/results/dcerpc.pcap.out index 678dc0689..ea418048d 100644 --- a/test/results/dcerpc.pcap.out +++ b/test/results/dcerpc.pcap.out @@ -39,3 +39,6 @@ ~~ total memory freed........: 1937164 bytes ~~ total allocations/frees...: 35350/35350 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 1690 chars +~~ json string avg len.......: 996 chars diff --git a/test/results/diameter.pcap.out b/test/results/diameter.pcap.out index bbb3bd555..f3132f217 100644 --- a/test/results/diameter.pcap.out +++ b/test/results/diameter.pcap.out @@ -20,3 +20,6 @@ ~~ total memory freed........: 1929610 bytes ~~ total allocations/frees...: 35332/35332 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 896 chars +~~ json string avg len.......: 600 chars diff --git a/test/results/dlt_ppp.pcap.out b/test/results/dlt_ppp.pcap.out index 689154288..d375a3a2a 100644 --- a/test/results/dlt_ppp.pcap.out +++ b/test/results/dlt_ppp.pcap.out @@ -13,3 +13,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 1962 chars +~~ json string avg len.......: 970 chars diff --git a/test/results/dnp3.pcap.out b/test/results/dnp3.pcap.out index e0c63cd96..5a72f5e01 100644 --- a/test/results/dnp3.pcap.out +++ b/test/results/dnp3.pcap.out @@ -155,3 +155,6 @@ ~~ total memory freed........: 1966911 bytes ~~ total allocations/frees...: 35890/35890 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 525 chars +~~ json string avg len.......: 399 chars diff --git a/test/results/dns-tunnel-iodine.pcap.out b/test/results/dns-tunnel-iodine.pcap.out index 292ce297d..57e6729de 100644 --- a/test/results/dns-tunnel-iodine.pcap.out +++ b/test/results/dns-tunnel-iodine.pcap.out @@ -35,3 +35,6 @@ ~~ total memory freed........: 1939974 bytes ~~ total allocations/frees...: 35759/35759 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 143 chars +~~ json string max len.......: 784 chars +~~ json string avg len.......: 542 chars diff --git a/test/results/dns_ambiguous_names.pcap.out b/test/results/dns_ambiguous_names.pcap.out index 13add4a51..d60ddd700 100644 --- a/test/results/dns_ambiguous_names.pcap.out +++ b/test/results/dns_ambiguous_names.pcap.out @@ -71,3 +71,6 @@ ~~ total memory freed........: 1955904 bytes ~~ total allocations/frees...: 35372/35372 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 144 chars +~~ json string max len.......: 860 chars +~~ json string avg len.......: 582 chars diff --git a/test/results/dns_doh.pcap.out b/test/results/dns_doh.pcap.out index 5b91d10ad..e02cf4d8d 100644 --- a/test/results/dns_doh.pcap.out +++ b/test/results/dns_doh.pcap.out @@ -30,3 +30,6 @@ ~~ total memory freed........: 1938981 bytes ~~ total allocations/frees...: 35472/35472 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2189 chars +~~ json string avg len.......: 1230 chars diff --git a/test/results/dns_dot.pcap.out b/test/results/dns_dot.pcap.out index b05e9d55b..4793bcd7d 100644 --- a/test/results/dns_dot.pcap.out +++ b/test/results/dns_dot.pcap.out @@ -30,3 +30,6 @@ ~~ total memory freed........: 1933519 bytes ~~ total allocations/frees...: 35358/35358 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 4565 chars +~~ json string avg len.......: 2421 chars diff --git a/test/results/dns_exfiltration.pcap.out b/test/results/dns_exfiltration.pcap.out index fdff77a1c..8bea2a8ac 100644 --- a/test/results/dns_exfiltration.pcap.out +++ b/test/results/dns_exfiltration.pcap.out @@ -35,3 +35,6 @@ ~~ total memory freed........: 1936088 bytes ~~ total allocations/frees...: 35625/35625 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 142 chars +~~ json string max len.......: 878 chars +~~ json string avg len.......: 596 chars diff --git a/test/results/dns_long_domainname.pcap.out b/test/results/dns_long_domainname.pcap.out index 6cd71f3ce..db3bb0763 100644 --- a/test/results/dns_long_domainname.pcap.out +++ b/test/results/dns_long_domainname.pcap.out @@ -17,3 +17,6 @@ ~~ total memory freed........: 1927446 bytes ~~ total allocations/frees...: 35327/35327 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 143 chars +~~ json string max len.......: 712 chars +~~ json string avg len.......: 508 chars diff --git a/test/results/dnscrypt-v1-and-resolver-pings.pcap.out b/test/results/dnscrypt-v1-and-resolver-pings.pcap.out index 54327a8dd..3e73682fb 100644 --- a/test/results/dnscrypt-v1-and-resolver-pings.pcap.out +++ b/test/results/dnscrypt-v1-and-resolver-pings.pcap.out @@ -1492,3 +1492,6 @@ ~~ total memory freed........: 2717540 bytes ~~ total allocations/frees...: 36563/36563 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 156 chars +~~ json string max len.......: 2393 chars +~~ json string avg len.......: 1285 chars diff --git a/test/results/dnscrypt-v2-doh.pcap.out b/test/results/dnscrypt-v2-doh.pcap.out index c32d8b4cb..f76d89fc5 100644 --- a/test/results/dnscrypt-v2-doh.pcap.out +++ b/test/results/dnscrypt-v2-doh.pcap.out @@ -631,3 +631,6 @@ ~~ total memory freed........: 2259163 bytes ~~ total allocations/frees...: 36158/36158 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 141 chars +~~ json string max len.......: 4672 chars +~~ json string avg len.......: 2478 chars diff --git a/test/results/dnscrypt_skype_false_positive.pcapng.out b/test/results/dnscrypt_skype_false_positive.pcapng.out index b461a6ca4..d0afed97c 100644 --- a/test/results/dnscrypt_skype_false_positive.pcapng.out +++ b/test/results/dnscrypt_skype_false_positive.pcapng.out @@ -26,3 +26,6 @@ ~~ total memory freed........: 1933770 bytes ~~ total allocations/frees...: 35337/35337 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 155 chars +~~ json string max len.......: 1118 chars +~~ json string avg len.......: 723 chars diff --git a/test/results/doq.pcapng.out b/test/results/doq.pcapng.out index e6a59ed05..7577650a3 100644 --- a/test/results/doq.pcapng.out +++ b/test/results/doq.pcapng.out @@ -37,3 +37,6 @@ ~~ total memory freed........: 1936524 bytes ~~ total allocations/frees...: 35360/35360 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 2103 chars +~~ json string avg len.......: 1192 chars diff --git a/test/results/doq_adguard.pcapng.out b/test/results/doq_adguard.pcapng.out index 43e4fa3e8..83e9319a4 100644 --- a/test/results/doq_adguard.pcapng.out +++ b/test/results/doq_adguard.pcapng.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1941376 bytes ~~ total allocations/frees...: 35633/35633 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 2108 chars +~~ json string avg len.......: 1207 chars diff --git a/test/results/dos_win98_smb_netbeui.pcap.out b/test/results/dos_win98_smb_netbeui.pcap.out index f9e6514dd..e59638423 100644 --- a/test/results/dos_win98_smb_netbeui.pcap.out +++ b/test/results/dos_win98_smb_netbeui.pcap.out @@ -393,3 +393,6 @@ ~~ total memory freed........: 1947810 bytes ~~ total allocations/frees...: 35405/35405 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 147 chars +~~ json string max len.......: 1931 chars +~~ json string avg len.......: 1043 chars diff --git a/test/results/drda_db2.pcap.out b/test/results/drda_db2.pcap.out index 1b3b82b64..e257320ff 100644 --- a/test/results/drda_db2.pcap.out +++ b/test/results/drda_db2.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1930538 bytes ~~ total allocations/frees...: 35364/35364 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 1312 chars +~~ json string avg len.......: 789 chars diff --git a/test/results/dropbox.pcap.out b/test/results/dropbox.pcap.out index fcde4c68f..e3d1fc1f9 100644 --- a/test/results/dropbox.pcap.out +++ b/test/results/dropbox.pcap.out @@ -182,3 +182,6 @@ ~~ total memory freed........: 2007852 bytes ~~ total allocations/frees...: 36227/36227 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 804 chars +~~ json string avg len.......: 540 chars diff --git a/test/results/dtls.pcap.out b/test/results/dtls.pcap.out index 1c52fe7d5..405826d47 100644 --- a/test/results/dtls.pcap.out +++ b/test/results/dtls.pcap.out @@ -16,3 +16,6 @@ ~~ total memory freed........: 1927446 bytes ~~ total allocations/frees...: 35327/35327 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 128 chars +~~ json string max len.......: 777 chars +~~ json string avg len.......: 528 chars diff --git a/test/results/dtls2.pcap.out b/test/results/dtls2.pcap.out index f3bfa9a26..95d27e2f5 100644 --- a/test/results/dtls2.pcap.out +++ b/test/results/dtls2.pcap.out @@ -30,3 +30,6 @@ ~~ total memory freed........: 1928302 bytes ~~ total allocations/frees...: 35357/35357 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 1516 chars +~~ json string avg len.......: 909 chars diff --git a/test/results/dtls_certificate_fragments.pcap.out b/test/results/dtls_certificate_fragments.pcap.out index 3211f6429..9c57adaa2 100644 --- a/test/results/dtls_certificate_fragments.pcap.out +++ b/test/results/dtls_certificate_fragments.pcap.out @@ -30,3 +30,6 @@ ~~ total memory freed........: 1927968 bytes ~~ total allocations/frees...: 35345/35345 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 151 chars +~~ json string max len.......: 2315 chars +~~ json string avg len.......: 1315 chars diff --git a/test/results/dtls_session_id_and_coockie_both.pcap.out b/test/results/dtls_session_id_and_coockie_both.pcap.out index 8f2e1b58c..5107a3686 100644 --- a/test/results/dtls_session_id_and_coockie_both.pcap.out +++ b/test/results/dtls_session_id_and_coockie_both.pcap.out @@ -19,3 +19,6 @@ ~~ total memory freed........: 1927504 bytes ~~ total allocations/frees...: 35329/35329 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 156 chars +~~ json string max len.......: 875 chars +~~ json string avg len.......: 592 chars diff --git a/test/results/encrypted_sni.pcap.out b/test/results/encrypted_sni.pcap.out index 1e1a18dba..6af5e3096 100644 --- a/test/results/encrypted_sni.pcap.out +++ b/test/results/encrypted_sni.pcap.out @@ -23,3 +23,6 @@ ~~ total memory freed........: 1941708 bytes ~~ total allocations/frees...: 35346/35346 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 137 chars +~~ json string max len.......: 1389 chars +~~ json string avg len.......: 849 chars diff --git a/test/results/ethereum.pcap.out b/test/results/ethereum.pcap.out index db0da3e5c..bd518387c 100644 --- a/test/results/ethereum.pcap.out +++ b/test/results/ethereum.pcap.out @@ -1038,3 +1038,6 @@ ~~ total memory freed........: 2328732 bytes ~~ total allocations/frees...: 37599/37599 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 1944 chars +~~ json string avg len.......: 1109 chars diff --git a/test/results/exe_download.pcap.out b/test/results/exe_download.pcap.out index 50cf3a667..37f76de5f 100644 --- a/test/results/exe_download.pcap.out +++ b/test/results/exe_download.pcap.out @@ -30,3 +30,6 @@ ~~ total memory freed........: 1947855 bytes ~~ total allocations/frees...: 36031/36031 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 138 chars +~~ json string max len.......: 2537 chars +~~ json string avg len.......: 1404 chars diff --git a/test/results/exe_download_as_png.pcap.out b/test/results/exe_download_as_png.pcap.out index bb7d9a39f..e325b1e0f 100644 --- a/test/results/exe_download_as_png.pcap.out +++ b/test/results/exe_download_as_png.pcap.out @@ -30,3 +30,6 @@ ~~ total memory freed........: 1942929 bytes ~~ total allocations/frees...: 35862/35862 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 145 chars +~~ json string max len.......: 2380 chars +~~ json string avg len.......: 1331 chars diff --git a/test/results/facebook.pcap.out b/test/results/facebook.pcap.out index 4ba7ec5ad..faee6819d 100644 --- a/test/results/facebook.pcap.out +++ b/test/results/facebook.pcap.out @@ -50,3 +50,6 @@ ~~ total memory freed........: 1943553 bytes ~~ total allocations/frees...: 35409/35409 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2319 chars +~~ json string avg len.......: 1298 chars diff --git a/test/results/firefox.pcap.out b/test/results/firefox.pcap.out index 030702e0e..27db9b562 100644 --- a/test/results/firefox.pcap.out +++ b/test/results/firefox.pcap.out @@ -129,3 +129,6 @@ ~~ total memory freed........: 2434467 bytes ~~ total allocations/frees...: 40840/40840 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2403 chars +~~ json string avg len.......: 1341 chars diff --git a/test/results/fix.pcap.out b/test/results/fix.pcap.out index 56240da37..8a19ee0e9 100644 --- a/test/results/fix.pcap.out +++ b/test/results/fix.pcap.out @@ -195,3 +195,6 @@ ~~ total memory freed........: 2022677 bytes ~~ total allocations/frees...: 36631/36631 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 1028 chars +~~ json string avg len.......: 648 chars diff --git a/test/results/forticlient.pcap.out b/test/results/forticlient.pcap.out index d21efcbb8..e6e0c9b12 100644 --- a/test/results/forticlient.pcap.out +++ b/test/results/forticlient.pcap.out @@ -111,3 +111,6 @@ ~~ total memory freed........: 2042391 bytes ~~ total allocations/frees...: 37364/37364 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 138 chars +~~ json string max len.......: 2370 chars +~~ json string avg len.......: 1327 chars diff --git a/test/results/ftp.pcap.out b/test/results/ftp.pcap.out index 573dfffb4..b91713d79 100644 --- a/test/results/ftp.pcap.out +++ b/test/results/ftp.pcap.out @@ -59,3 +59,6 @@ ~~ total memory freed........: 1974308 bytes ~~ total allocations/frees...: 36526/36526 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 2352 chars +~~ json string avg len.......: 1314 chars diff --git a/test/results/ftp_failed.pcap.out b/test/results/ftp_failed.pcap.out index 79da3e8f6..0076f3a3e 100644 --- a/test/results/ftp_failed.pcap.out +++ b/test/results/ftp_failed.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1929958 bytes ~~ total allocations/frees...: 35344/35344 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 655 chars +~~ json string avg len.......: 467 chars diff --git a/test/results/genshin-impact.pcap.out b/test/results/genshin-impact.pcap.out index 70bdff630..999c383b0 100644 --- a/test/results/genshin-impact.pcap.out +++ b/test/results/genshin-impact.pcap.out @@ -65,3 +65,6 @@ ~~ total memory freed........: 1934901 bytes ~~ total allocations/frees...: 35376/35376 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 1999 chars +~~ json string avg len.......: 1141 chars diff --git a/test/results/git.pcap.out b/test/results/git.pcap.out index 5d09fcd24..0ed8b8962 100644 --- a/test/results/git.pcap.out +++ b/test/results/git.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1929998 bytes ~~ total allocations/frees...: 35415/35415 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 128 chars +~~ json string max len.......: 2352 chars +~~ json string avg len.......: 1267 chars diff --git a/test/results/google_ssl.pcap.out b/test/results/google_ssl.pcap.out index c52a40ef7..46d2084d5 100644 --- a/test/results/google_ssl.pcap.out +++ b/test/results/google_ssl.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1930248 bytes ~~ total allocations/frees...: 35354/35354 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 2348 chars +~~ json string avg len.......: 1310 chars diff --git a/test/results/googledns_android10.pcap.out b/test/results/googledns_android10.pcap.out index 206110ae3..a63f2a877 100644 --- a/test/results/googledns_android10.pcap.out +++ b/test/results/googledns_android10.pcap.out @@ -131,3 +131,6 @@ ~~ total memory freed........: 1987128 bytes ~~ total allocations/frees...: 35915/35915 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 145 chars +~~ json string max len.......: 2361 chars +~~ json string avg len.......: 1323 chars diff --git a/test/results/gquic.pcap.out b/test/results/gquic.pcap.out index 4c5f560f2..4966105ef 100644 --- a/test/results/gquic.pcap.out +++ b/test/results/gquic.pcap.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1932977 bytes ~~ total allocations/frees...: 35337/35337 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 2231 chars +~~ json string avg len.......: 1205 chars diff --git a/test/results/h323-overflow.pcap.out b/test/results/h323-overflow.pcap.out index 78202a799..9a8f5f507 100644 --- a/test/results/h323-overflow.pcap.out +++ b/test/results/h323-overflow.pcap.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1929465 bytes ~~ total allocations/frees...: 35327/35327 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 137 chars +~~ json string max len.......: 524 chars +~~ json string avg len.......: 393 chars diff --git a/test/results/hangout.pcap.out b/test/results/hangout.pcap.out index b28a18115..1fba717b9 100644 --- a/test/results/hangout.pcap.out +++ b/test/results/hangout.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1936147 bytes ~~ total allocations/frees...: 35346/35346 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 598 chars +~~ json string avg len.......: 451 chars diff --git a/test/results/hpvirtgrp.pcap.out b/test/results/hpvirtgrp.pcap.out index aa308b556..56784af2c 100644 --- a/test/results/hpvirtgrp.pcap.out +++ b/test/results/hpvirtgrp.pcap.out @@ -173,3 +173,6 @@ ~~ total memory freed........: 1974567 bytes ~~ total allocations/frees...: 35493/35493 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 647 chars +~~ json string avg len.......: 460 chars diff --git a/test/results/http-crash-content-disposition.pcap.out b/test/results/http-crash-content-disposition.pcap.out index 117b9fbec..85b1f4b93 100644 --- a/test/results/http-crash-content-disposition.pcap.out +++ b/test/results/http-crash-content-disposition.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 154 chars +~~ json string max len.......: 2316 chars +~~ json string avg len.......: 1218 chars diff --git a/test/results/http-lines-split.pcap.out b/test/results/http-lines-split.pcap.out index bced9e591..0ec7ff1e1 100644 --- a/test/results/http-lines-split.pcap.out +++ b/test/results/http-lines-split.pcap.out @@ -28,3 +28,6 @@ ~~ total memory freed........: 1927824 bytes ~~ total allocations/frees...: 35341/35341 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 141 chars +~~ json string max len.......: 2375 chars +~~ json string avg len.......: 1324 chars diff --git a/test/results/http-manipulated.pcap.out b/test/results/http-manipulated.pcap.out index d3b3120dc..a934cc2f6 100644 --- a/test/results/http-manipulated.pcap.out +++ b/test/results/http-manipulated.pcap.out @@ -42,3 +42,6 @@ ~~ total memory freed........: 1940172 bytes ~~ total allocations/frees...: 35662/35662 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 142 chars +~~ json string max len.......: 6340 chars +~~ json string avg len.......: 3288 chars diff --git a/test/results/http_auth.pcap.out b/test/results/http_auth.pcap.out index 0ea92817c..778c7e7bb 100644 --- a/test/results/http_auth.pcap.out +++ b/test/results/http_auth.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1928505 bytes ~~ total allocations/frees...: 35361/35361 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2378 chars +~~ json string avg len.......: 1329 chars diff --git a/test/results/http_ipv6.pcap.out b/test/results/http_ipv6.pcap.out index cf12a4c5e..134b90e53 100644 --- a/test/results/http_ipv6.pcap.out +++ b/test/results/http_ipv6.pcap.out @@ -193,3 +193,6 @@ ~~ total memory freed........: 2046670 bytes ~~ total allocations/frees...: 35626/35626 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 5226 chars +~~ json string avg len.......: 2761 chars diff --git a/test/results/iec60780-5-104.pcap.out b/test/results/iec60780-5-104.pcap.out index ca749b87b..2e055abae 100644 --- a/test/results/iec60780-5-104.pcap.out +++ b/test/results/iec60780-5-104.pcap.out @@ -117,3 +117,6 @@ ~~ total memory freed........: 1947171 bytes ~~ total allocations/frees...: 35487/35487 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 140 chars +~~ json string max len.......: 546 chars +~~ json string avg len.......: 413 chars diff --git a/test/results/imaps.pcap.out b/test/results/imaps.pcap.out index 3fd9fe85d..a94ecfa6a 100644 --- a/test/results/imaps.pcap.out +++ b/test/results/imaps.pcap.out @@ -31,3 +31,6 @@ ~~ total memory freed........: 1932879 bytes ~~ total allocations/frees...: 35350/35350 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 2374 chars +~~ json string avg len.......: 1325 chars diff --git a/test/results/instagram.pcap.out b/test/results/instagram.pcap.out index 52de12196..a1924f7e3 100644 --- a/test/results/instagram.pcap.out +++ b/test/results/instagram.pcap.out @@ -511,3 +511,6 @@ ~~ total memory freed........: 2764060 bytes ~~ total allocations/frees...: 39029/39029 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 136 chars +~~ json string max len.......: 2405 chars +~~ json string avg len.......: 1343 chars diff --git a/test/results/ip_fragmented_garbage.pcap.out b/test/results/ip_fragmented_garbage.pcap.out index 9ba6e2537..9588b9aed 100644 --- a/test/results/ip_fragmented_garbage.pcap.out +++ b/test/results/ip_fragmented_garbage.pcap.out @@ -18223,3 +18223,6 @@ ~~ total memory freed........: 2015141 bytes ~~ total allocations/frees...: 35438/35438 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 148 chars +~~ json string max len.......: 513 chars +~~ json string avg len.......: 340 chars diff --git a/test/results/iphone.pcap.out b/test/results/iphone.pcap.out index 04e2ca0ad..29a9171e7 100644 --- a/test/results/iphone.pcap.out +++ b/test/results/iphone.pcap.out @@ -513,3 +513,6 @@ ~~ total memory freed........: 2469986 bytes ~~ total allocations/frees...: 36238/36238 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 3518 chars +~~ json string avg len.......: 1830 chars diff --git a/test/results/ipv6_in_gtp.pcap.out b/test/results/ipv6_in_gtp.pcap.out index aae2c681e..62fbf0dd5 100644 --- a/test/results/ipv6_in_gtp.pcap.out +++ b/test/results/ipv6_in_gtp.pcap.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 536 chars +~~ json string avg len.......: 341 chars diff --git a/test/results/irc.pcap.out b/test/results/irc.pcap.out index bc6d88f6c..176e81e61 100644 --- a/test/results/irc.pcap.out +++ b/test/results/irc.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1930277 bytes ~~ total allocations/frees...: 35355/35355 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 128 chars +~~ json string max len.......: 2363 chars +~~ json string avg len.......: 1210 chars diff --git a/test/results/ja3_lots_of_cipher_suites.pcap.out b/test/results/ja3_lots_of_cipher_suites.pcap.out index 5d4d0aa6e..d9c0b51e1 100644 --- a/test/results/ja3_lots_of_cipher_suites.pcap.out +++ b/test/results/ja3_lots_of_cipher_suites.pcap.out @@ -33,3 +33,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 150 chars +~~ json string max len.......: 2368 chars +~~ json string avg len.......: 1263 chars diff --git a/test/results/ja3_lots_of_cipher_suites_2_anon.pcap.out b/test/results/ja3_lots_of_cipher_suites_2_anon.pcap.out index a1830fdb1..8eeb0853a 100644 --- a/test/results/ja3_lots_of_cipher_suites_2_anon.pcap.out +++ b/test/results/ja3_lots_of_cipher_suites_2_anon.pcap.out @@ -55,3 +55,6 @@ ~~ total memory freed........: 1928171 bytes ~~ total allocations/frees...: 35352/35352 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 157 chars +~~ json string max len.......: 2382 chars +~~ json string avg len.......: 1284 chars diff --git a/test/results/kerberos.pcap.out b/test/results/kerberos.pcap.out index 1410c2720..466e9c67e 100644 --- a/test/results/kerberos.pcap.out +++ b/test/results/kerberos.pcap.out @@ -196,3 +196,6 @@ ~~ total memory freed........: 2111989 bytes ~~ total allocations/frees...: 35543/35543 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2381 chars +~~ json string avg len.......: 1339 chars diff --git a/test/results/long_tls_certificate.pcap.out b/test/results/long_tls_certificate.pcap.out index 90b06b772..ed40ad956 100644 --- a/test/results/long_tls_certificate.pcap.out +++ b/test/results/long_tls_certificate.pcap.out @@ -31,3 +31,6 @@ ~~ total memory freed........: 2326019 bytes ~~ total allocations/frees...: 35565/35565 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 145 chars +~~ json string max len.......: 4945 chars +~~ json string avg len.......: 2594 chars diff --git a/test/results/malformed_dns.pcap.out b/test/results/malformed_dns.pcap.out index 842187d0d..b8f223b36 100644 --- a/test/results/malformed_dns.pcap.out +++ b/test/results/malformed_dns.pcap.out @@ -23,3 +23,6 @@ ~~ total memory freed........: 1927562 bytes ~~ total allocations/frees...: 35331/35331 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 137 chars +~~ json string max len.......: 2614 chars +~~ json string avg len.......: 1450 chars diff --git a/test/results/malformed_icmp.pcap.out b/test/results/malformed_icmp.pcap.out index 1a61c0936..6e37c1a5a 100644 --- a/test/results/malformed_icmp.pcap.out +++ b/test/results/malformed_icmp.pcap.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1927417 bytes ~~ total allocations/frees...: 35326/35326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 138 chars +~~ json string max len.......: 536 chars +~~ json string avg len.......: 394 chars diff --git a/test/results/malware.pcap.out b/test/results/malware.pcap.out index 77ebba3db..3626fb7dd 100644 --- a/test/results/malware.pcap.out +++ b/test/results/malware.pcap.out @@ -50,3 +50,6 @@ ~~ total memory freed........: 1979763 bytes ~~ total allocations/frees...: 35424/35424 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2386 chars +~~ json string avg len.......: 1328 chars diff --git a/test/results/memcached.cap.out b/test/results/memcached.cap.out index 363e1fc93..3a0af5518 100644 --- a/test/results/memcached.cap.out +++ b/test/results/memcached.cap.out @@ -24,3 +24,6 @@ ~~ total memory freed........: 1929726 bytes ~~ total allocations/frees...: 35336/35336 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 1807 chars +~~ json string avg len.......: 1041 chars diff --git a/test/results/modbus.pcap.out b/test/results/modbus.pcap.out index 18bda77db..808e8c159 100644 --- a/test/results/modbus.pcap.out +++ b/test/results/modbus.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1930346 bytes ~~ total allocations/frees...: 35427/35427 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 528 chars +~~ json string avg len.......: 403 chars diff --git a/test/results/monero.pcap.out b/test/results/monero.pcap.out index bc8c78f41..21ea7241c 100644 --- a/test/results/monero.pcap.out +++ b/test/results/monero.pcap.out @@ -47,3 +47,6 @@ ~~ total memory freed........: 1952047 bytes ~~ total allocations/frees...: 35651/35651 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 849 chars +~~ json string avg len.......: 560 chars diff --git a/test/results/mongodb.pcap.out b/test/results/mongodb.pcap.out index 57e519a4a..79a68d508 100644 --- a/test/results/mongodb.pcap.out +++ b/test/results/mongodb.pcap.out @@ -65,3 +65,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 758 chars +~~ json string avg len.......: 449 chars diff --git a/test/results/mpeg.pcap.out b/test/results/mpeg.pcap.out index 788bb5a66..43f6235a4 100644 --- a/test/results/mpeg.pcap.out +++ b/test/results/mpeg.pcap.out @@ -30,3 +30,6 @@ ~~ total memory freed........: 1927997 bytes ~~ total allocations/frees...: 35347/35347 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 2453 chars +~~ json string avg len.......: 1364 chars diff --git a/test/results/mpegts.pcap.out b/test/results/mpegts.pcap.out index e864f1a1e..527327cf9 100644 --- a/test/results/mpegts.pcap.out +++ b/test/results/mpegts.pcap.out @@ -13,3 +13,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 2642 chars +~~ json string avg len.......: 1267 chars diff --git a/test/results/mssql_tds.pcap.out b/test/results/mssql_tds.pcap.out index 57e53bfd4..820b84602 100644 --- a/test/results/mssql_tds.pcap.out +++ b/test/results/mssql_tds.pcap.out @@ -83,3 +83,6 @@ ~~ total memory freed........: 2001467 bytes ~~ total allocations/frees...: 35403/35403 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2375 chars +~~ json string avg len.......: 1326 chars diff --git a/test/results/mysql-8.pcap.out b/test/results/mysql-8.pcap.out index 221e5e880..62b91cc20 100644 --- a/test/results/mysql-8.pcap.out +++ b/test/results/mysql-8.pcap.out @@ -18,3 +18,6 @@ ~~ total memory freed........: 1927504 bytes ~~ total allocations/frees...: 35329/35329 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 546 chars +~~ json string avg len.......: 409 chars diff --git a/test/results/nats.pcap.out b/test/results/nats.pcap.out index fcebe83e6..b98df04a7 100644 --- a/test/results/nats.pcap.out +++ b/test/results/nats.pcap.out @@ -65,3 +65,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 787 chars +~~ json string avg len.......: 469 chars diff --git a/test/results/ndpi_match_string_subprotocol__error.pcapng.out b/test/results/ndpi_match_string_subprotocol__error.pcapng.out index c2a97d746..eb03c5ed7 100644 --- a/test/results/ndpi_match_string_subprotocol__error.pcapng.out +++ b/test/results/ndpi_match_string_subprotocol__error.pcapng.out @@ -32,3 +32,6 @@ ~~ total memory freed........: 1933017 bytes ~~ total allocations/frees...: 35346/35346 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 163 chars +~~ json string max len.......: 1952 chars +~~ json string avg len.......: 1068 chars diff --git a/test/results/nest_log_sink.pcap.out b/test/results/nest_log_sink.pcap.out index 707001570..df2386195 100644 --- a/test/results/nest_log_sink.pcap.out +++ b/test/results/nest_log_sink.pcap.out @@ -282,3 +282,6 @@ ~~ total memory freed........: 2024074 bytes ~~ total allocations/frees...: 36159/36159 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 140 chars +~~ json string max len.......: 1342 chars +~~ json string avg len.......: 810 chars diff --git a/test/results/netbios.pcap.out b/test/results/netbios.pcap.out index 4d4544d29..7313933f1 100644 --- a/test/results/netbios.pcap.out +++ b/test/results/netbios.pcap.out @@ -109,3 +109,6 @@ ~~ total memory freed........: 1983536 bytes ~~ total allocations/frees...: 35631/35631 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 679 chars +~~ json string avg len.......: 477 chars diff --git a/test/results/netbios_wildcard_dns_query.pcap.out b/test/results/netbios_wildcard_dns_query.pcap.out index b3e507886..8c3ade069 100644 --- a/test/results/netbios_wildcard_dns_query.pcap.out +++ b/test/results/netbios_wildcard_dns_query.pcap.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1927417 bytes ~~ total allocations/frees...: 35326/35326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 150 chars +~~ json string max len.......: 683 chars +~~ json string avg len.......: 480 chars diff --git a/test/results/netflix.pcap.out b/test/results/netflix.pcap.out index 078183f49..e67fab220 100644 --- a/test/results/netflix.pcap.out +++ b/test/results/netflix.pcap.out @@ -986,3 +986,6 @@ ~~ total memory freed........: 2733371 bytes ~~ total allocations/frees...: 42758/42758 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2419 chars +~~ json string avg len.......: 1348 chars diff --git a/test/results/netflow-fritz.pcap.out b/test/results/netflow-fritz.pcap.out index cb273cfdd..0eb72ab79 100644 --- a/test/results/netflow-fritz.pcap.out +++ b/test/results/netflow-fritz.pcap.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1927417 bytes ~~ total allocations/frees...: 35326/35326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 137 chars +~~ json string max len.......: 652 chars +~~ json string avg len.......: 468 chars diff --git a/test/results/netflowv9.pcap.out b/test/results/netflowv9.pcap.out index 107ff41bd..12c67c097 100644 --- a/test/results/netflowv9.pcap.out +++ b/test/results/netflowv9.pcap.out @@ -24,3 +24,6 @@ ~~ total memory freed........: 1927678 bytes ~~ total allocations/frees...: 35335/35335 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2262 chars +~~ json string avg len.......: 1284 chars diff --git a/test/results/nintendo.pcap.out b/test/results/nintendo.pcap.out index 53b50ff12..7487a91d9 100644 --- a/test/results/nintendo.pcap.out +++ b/test/results/nintendo.pcap.out @@ -281,3 +281,6 @@ ~~ total memory freed........: 2030192 bytes ~~ total allocations/frees...: 36394/36394 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 2265 chars +~~ json string avg len.......: 1269 chars diff --git a/test/results/no_sni.pcap.out b/test/results/no_sni.pcap.out index 52324b318..0eabd4aa8 100644 --- a/test/results/no_sni.pcap.out +++ b/test/results/no_sni.pcap.out @@ -154,3 +154,6 @@ ~~ total memory freed........: 2015449 bytes ~~ total allocations/frees...: 36562/36562 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2400 chars +~~ json string avg len.......: 1335 chars diff --git a/test/results/ocs.pcap.out b/test/results/ocs.pcap.out index 4404e0545..6fd9a0a81 100644 --- a/test/results/ocs.pcap.out +++ b/test/results/ocs.pcap.out @@ -1903,3 +1903,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 2248 chars +~~ json string avg len.......: 1192 chars diff --git a/test/results/ookla.pcap.out b/test/results/ookla.pcap.out index 3864c27ca..5412b92f8 100644 --- a/test/results/ookla.pcap.out +++ b/test/results/ookla.pcap.out @@ -47,3 +47,6 @@ ~~ total memory freed........: 2088258 bytes ~~ total allocations/frees...: 40418/40418 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 1041 chars +~~ json string avg len.......: 659 chars diff --git a/test/results/openvpn.pcap.out b/test/results/openvpn.pcap.out index 4014dc175..932a10096 100644 --- a/test/results/openvpn.pcap.out +++ b/test/results/openvpn.pcap.out @@ -65,3 +65,6 @@ ~~ total memory freed........: 1944286 bytes ~~ total allocations/frees...: 35630/35630 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 844 chars +~~ json string avg len.......: 561 chars diff --git a/test/results/os_detected.pcapng.out b/test/results/os_detected.pcapng.out index 15c38d7c4..9cf991a3c 100644 --- a/test/results/os_detected.pcapng.out +++ b/test/results/os_detected.pcapng.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1932946 bytes ~~ total allocations/frees...: 35339/35339 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 137 chars +~~ json string max len.......: 2114 chars +~~ json string avg len.......: 1154 chars diff --git a/test/results/pinterest.pcap.out b/test/results/pinterest.pcap.out index 5be533a16..79aa75598 100644 --- a/test/results/pinterest.pcap.out +++ b/test/results/pinterest.pcap.out @@ -502,3 +502,6 @@ ~~ total memory freed........: 3581013 bytes ~~ total allocations/frees...: 54301/54301 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 137 chars +~~ json string max len.......: 3118 chars +~~ json string avg len.......: 1704 chars diff --git a/test/results/pps.pcap.out b/test/results/pps.pcap.out index 92d3e60b9..0a060ae60 100644 --- a/test/results/pps.pcap.out +++ b/test/results/pps.pcap.out @@ -754,3 +754,6 @@ ~~ total memory freed........: 2377879 bytes ~~ total allocations/frees...: 38337/38337 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 2206 chars +~~ json string avg len.......: 1237 chars diff --git a/test/results/ps_vue.pcap.out b/test/results/ps_vue.pcap.out index ef4acec4a..3484c234f 100644 --- a/test/results/ps_vue.pcap.out +++ b/test/results/ps_vue.pcap.out @@ -67,3 +67,6 @@ ~~ total memory freed........: 2649135 bytes ~~ total allocations/frees...: 37125/37125 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2216 chars +~~ json string avg len.......: 1244 chars diff --git a/test/results/quic-23.pcap.out b/test/results/quic-23.pcap.out index 20da1a77b..4c0cb4d0e 100644 --- a/test/results/quic-23.pcap.out +++ b/test/results/quic-23.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1933418 bytes ~~ total allocations/frees...: 35357/35357 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2165 chars +~~ json string avg len.......: 1233 chars diff --git a/test/results/quic-24.pcap.out b/test/results/quic-24.pcap.out index afd69e2c4..deefd2bab 100644 --- a/test/results/quic-24.pcap.out +++ b/test/results/quic-24.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1933245 bytes ~~ total allocations/frees...: 35352/35352 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2099 chars +~~ json string avg len.......: 1194 chars diff --git a/test/results/quic-27.pcap.out b/test/results/quic-27.pcap.out index 484b3d789..4af59a5b0 100644 --- a/test/results/quic-27.pcap.out +++ b/test/results/quic-27.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1933521 bytes ~~ total allocations/frees...: 35358/35358 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2238 chars +~~ json string avg len.......: 1267 chars diff --git a/test/results/quic-28.pcap.out b/test/results/quic-28.pcap.out index 315fd1117..283d05dc3 100644 --- a/test/results/quic-28.pcap.out +++ b/test/results/quic-28.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1940101 bytes ~~ total allocations/frees...: 35590/35590 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2027 chars +~~ json string avg len.......: 1161 chars diff --git a/test/results/quic-29.pcap.out b/test/results/quic-29.pcap.out index 727564bef..76fc0143b 100644 --- a/test/results/quic-29.pcap.out +++ b/test/results/quic-29.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1933245 bytes ~~ total allocations/frees...: 35352/35352 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2103 chars +~~ json string avg len.......: 1196 chars diff --git a/test/results/quic-33.pcapng.out b/test/results/quic-33.pcapng.out index 182b58196..03fdadbe3 100644 --- a/test/results/quic-33.pcapng.out +++ b/test/results/quic-33.pcapng.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1961648 bytes ~~ total allocations/frees...: 36329/36329 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 2396 chars +~~ json string avg len.......: 1351 chars diff --git a/test/results/quic-mvfst-22.pcap.out b/test/results/quic-mvfst-22.pcap.out index 5d1b44082..8fd5aa363 100644 --- a/test/results/quic-mvfst-22.pcap.out +++ b/test/results/quic-mvfst-22.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1947026 bytes ~~ total allocations/frees...: 35827/35827 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 2101 chars +~~ json string avg len.......: 1192 chars diff --git a/test/results/quic-mvfst-22_decryption_error.pcap.out b/test/results/quic-mvfst-22_decryption_error.pcap.out index ebe44de7f..6231e76b0 100644 --- a/test/results/quic-mvfst-22_decryption_error.pcap.out +++ b/test/results/quic-mvfst-22_decryption_error.pcap.out @@ -717,3 +717,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 156 chars +~~ json string max len.......: 2077 chars +~~ json string avg len.......: 1120 chars diff --git a/test/results/quic-mvfst-27.pcapng.out b/test/results/quic-mvfst-27.pcapng.out index 6528ddfe1..90ce1c645 100644 --- a/test/results/quic-mvfst-27.pcapng.out +++ b/test/results/quic-mvfst-27.pcapng.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1933389 bytes ~~ total allocations/frees...: 35357/35357 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 140 chars +~~ json string max len.......: 2174 chars +~~ json string avg len.......: 1243 chars diff --git a/test/results/quic-mvfst-exp.pcap.out b/test/results/quic-mvfst-exp.pcap.out index 56770a099..65a3f4ac6 100644 --- a/test/results/quic-mvfst-exp.pcap.out +++ b/test/results/quic-mvfst-exp.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1933679 bytes ~~ total allocations/frees...: 35367/35367 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 2112 chars +~~ json string avg len.......: 1210 chars diff --git a/test/results/quic.pcap.out b/test/results/quic.pcap.out index db0a9eb01..cbe9a0b1d 100644 --- a/test/results/quic.pcap.out +++ b/test/results/quic.pcap.out @@ -107,3 +107,6 @@ ~~ total memory freed........: 1970603 bytes ~~ total allocations/frees...: 35878/35878 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 2233 chars +~~ json string avg len.......: 1257 chars diff --git a/test/results/quic046.pcap.out b/test/results/quic046.pcap.out index 87d48409e..43006aebd 100644 --- a/test/results/quic046.pcap.out +++ b/test/results/quic046.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1930336 bytes ~~ total allocations/frees...: 35426/35426 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2232 chars +~~ json string avg len.......: 1268 chars diff --git a/test/results/quic_0RTT.pcap.out b/test/results/quic_0RTT.pcap.out index 533ffd822..9d7fa09cf 100644 --- a/test/results/quic_0RTT.pcap.out +++ b/test/results/quic_0RTT.pcap.out @@ -16,3 +16,6 @@ ~~ total memory freed........: 1932192 bytes ~~ total allocations/frees...: 35339/35339 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2098 chars +~~ json string avg len.......: 1173 chars diff --git a/test/results/quic_frags_ch_in_multiple_packets.pcapng.out b/test/results/quic_frags_ch_in_multiple_packets.pcapng.out index 766e453d2..bb2816645 100644 --- a/test/results/quic_frags_ch_in_multiple_packets.pcapng.out +++ b/test/results/quic_frags_ch_in_multiple_packets.pcapng.out @@ -19,3 +19,6 @@ ~~ total memory freed........: 1942542 bytes ~~ total allocations/frees...: 35352/35352 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 159 chars +~~ json string max len.......: 2145 chars +~~ json string avg len.......: 1235 chars diff --git a/test/results/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out b/test/results/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out index 50308a500..8a8b563b5 100644 --- a/test/results/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out +++ b/test/results/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out @@ -534,3 +534,6 @@ ~~ total memory freed........: 3728973 bytes ~~ total allocations/frees...: 37758/37758 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 176 chars +~~ json string max len.......: 2287 chars +~~ json string avg len.......: 1318 chars diff --git a/test/results/quic_interop_V.pcapng.out b/test/results/quic_interop_V.pcapng.out index 7c07a0919..f682d9962 100644 --- a/test/results/quic_interop_V.pcapng.out +++ b/test/results/quic_interop_V.pcapng.out @@ -488,3 +488,6 @@ ~~ total memory freed........: 2514058 bytes ~~ total allocations/frees...: 36555/36555 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 142 chars +~~ json string max len.......: 2124 chars +~~ json string avg len.......: 1206 chars diff --git a/test/results/quic_q39.pcap.out b/test/results/quic_q39.pcap.out index 09b2d1a1e..e8118b189 100644 --- a/test/results/quic_q39.pcap.out +++ b/test/results/quic_q39.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1929174 bytes ~~ total allocations/frees...: 35386/35386 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2238 chars +~~ json string avg len.......: 1257 chars diff --git a/test/results/quic_q43.pcap.out b/test/results/quic_q43.pcap.out index 6a9225e6b..aa6f0a0ac 100644 --- a/test/results/quic_q43.pcap.out +++ b/test/results/quic_q43.pcap.out @@ -16,3 +16,6 @@ ~~ total memory freed........: 1927446 bytes ~~ total allocations/frees...: 35327/35327 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2206 chars +~~ json string avg len.......: 1217 chars diff --git a/test/results/quic_q46.pcap.out b/test/results/quic_q46.pcap.out index 8e98e5302..9e5cdd9b4 100644 --- a/test/results/quic_q46.pcap.out +++ b/test/results/quic_q46.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1928012 bytes ~~ total allocations/frees...: 35346/35346 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2237 chars +~~ json string avg len.......: 1262 chars diff --git a/test/results/quic_q46_b.pcap.out b/test/results/quic_q46_b.pcap.out index 2a1a2d59b..bd2673028 100644 --- a/test/results/quic_q46_b.pcap.out +++ b/test/results/quic_q46_b.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1928014 bytes ~~ total allocations/frees...: 35346/35346 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 2302 chars +~~ json string avg len.......: 1304 chars diff --git a/test/results/quic_q50.pcap.out b/test/results/quic_q50.pcap.out index ddd4cefba..e5db218c1 100644 --- a/test/results/quic_q50.pcap.out +++ b/test/results/quic_q50.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1933518 bytes ~~ total allocations/frees...: 35356/35356 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2239 chars +~~ json string avg len.......: 1260 chars diff --git a/test/results/quic_t50.pcap.out b/test/results/quic_t50.pcap.out index f9f192127..05f290982 100644 --- a/test/results/quic_t50.pcap.out +++ b/test/results/quic_t50.pcap.out @@ -26,3 +26,6 @@ ~~ total memory freed........: 1933305 bytes ~~ total allocations/frees...: 35350/35350 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2238 chars +~~ json string avg len.......: 1261 chars diff --git a/test/results/quic_t51.pcap.out b/test/results/quic_t51.pcap.out index 9e08292ce..c8de42764 100644 --- a/test/results/quic_t51.pcap.out +++ b/test/results/quic_t51.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1951578 bytes ~~ total allocations/frees...: 35980/35980 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2237 chars +~~ json string avg len.......: 1260 chars diff --git a/test/results/quickplay.pcap.out b/test/results/quickplay.pcap.out index 37b67829a..a957beeaf 100644 --- a/test/results/quickplay.pcap.out +++ b/test/results/quickplay.pcap.out @@ -169,3 +169,6 @@ ~~ total memory freed........: 1998981 bytes ~~ total allocations/frees...: 35582/35582 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 2332 chars +~~ json string avg len.......: 1311 chars diff --git a/test/results/rdp.pcap.out b/test/results/rdp.pcap.out index 2fdc30dd7..c39edf68a 100644 --- a/test/results/rdp.pcap.out +++ b/test/results/rdp.pcap.out @@ -4031,3 +4031,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 2096 chars +~~ json string avg len.......: 1124 chars diff --git a/test/results/reasm_crash_anon.pcapng.out b/test/results/reasm_crash_anon.pcapng.out index c4102a6da..813907f6b 100644 --- a/test/results/reasm_crash_anon.pcapng.out +++ b/test/results/reasm_crash_anon.pcapng.out @@ -47,3 +47,6 @@ ~~ total memory freed........: 1942247 bytes ~~ total allocations/frees...: 35529/35529 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 144 chars +~~ json string max len.......: 1414 chars +~~ json string avg len.......: 790 chars diff --git a/test/results/reasm_segv_anon.pcapng.out b/test/results/reasm_segv_anon.pcapng.out index c2920b9b1..b4c477a0e 100644 --- a/test/results/reasm_segv_anon.pcapng.out +++ b/test/results/reasm_segv_anon.pcapng.out @@ -85,3 +85,6 @@ ~~ total memory freed........: 1929766 bytes ~~ total allocations/frees...: 35407/35407 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 142 chars +~~ json string max len.......: 2402 chars +~~ json string avg len.......: 1287 chars diff --git a/test/results/reddit.pcap.out b/test/results/reddit.pcap.out index 6cf3c7b4e..85b03ff50 100644 --- a/test/results/reddit.pcap.out +++ b/test/results/reddit.pcap.out @@ -1166,3 +1166,6 @@ ~~ total memory freed........: 3045779 bytes ~~ total allocations/frees...: 47598/47598 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2362 chars +~~ json string avg len.......: 1324 chars diff --git a/test/results/rtsp.pcap.out b/test/results/rtsp.pcap.out index 19942e9b6..4c170e6b7 100644 --- a/test/results/rtsp.pcap.out +++ b/test/results/rtsp.pcap.out @@ -134,3 +134,6 @@ ~~ total memory freed........: 1976872 bytes ~~ total allocations/frees...: 35919/35919 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 616 chars +~~ json string avg len.......: 443 chars diff --git a/test/results/rtsp_setup_http.pcapng.out b/test/results/rtsp_setup_http.pcapng.out index cabfc288d..081f48872 100644 --- a/test/results/rtsp_setup_http.pcapng.out +++ b/test/results/rtsp_setup_http.pcapng.out @@ -15,3 +15,6 @@ ~~ total memory freed........: 1929517 bytes ~~ total allocations/frees...: 35328/35328 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 141 chars +~~ json string max len.......: 666 chars +~~ json string avg len.......: 477 chars diff --git a/test/results/rx.pcap.out b/test/results/rx.pcap.out index 473ac5538..e2e586ef0 100644 --- a/test/results/rx.pcap.out +++ b/test/results/rx.pcap.out @@ -77,3 +77,6 @@ ~~ total memory freed........: 1943632 bytes ~~ total allocations/frees...: 35469/35469 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 128 chars +~~ json string max len.......: 1860 chars +~~ json string avg len.......: 1069 chars diff --git a/test/results/s7comm.pcap.out b/test/results/s7comm.pcap.out index e52f64513..2134844ec 100644 --- a/test/results/s7comm.pcap.out +++ b/test/results/s7comm.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1928983 bytes ~~ total allocations/frees...: 35380/35380 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 713 chars +~~ json string avg len.......: 491 chars diff --git a/test/results/safari.pcap.out b/test/results/safari.pcap.out index d6c4ed06f..a74ef5b7d 100644 --- a/test/results/safari.pcap.out +++ b/test/results/safari.pcap.out @@ -147,3 +147,6 @@ ~~ total memory freed........: 2171495 bytes ~~ total allocations/frees...: 41385/41385 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2390 chars +~~ json string avg len.......: 1333 chars diff --git a/test/results/selfsigned.pcap.out b/test/results/selfsigned.pcap.out index 41c6e75e6..f822d60ac 100644 --- a/test/results/selfsigned.pcap.out +++ b/test/results/selfsigned.pcap.out @@ -51,3 +51,6 @@ ~~ total memory freed........: 1924284 bytes ~~ total allocations/frees...: 35322/35322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 2217 chars +~~ json string avg len.......: 1187 chars diff --git a/test/results/signal.pcap.out b/test/results/signal.pcap.out index 15580e3e8..0a6e3643b 100644 --- a/test/results/signal.pcap.out +++ b/test/results/signal.pcap.out @@ -310,3 +310,6 @@ ~~ total memory freed........: 2215559 bytes ~~ total allocations/frees...: 36126/36126 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2391 chars +~~ json string avg len.......: 1331 chars diff --git a/test/results/simple-dnscrypt.pcap.out b/test/results/simple-dnscrypt.pcap.out index 728010fec..5850a59b5 100644 --- a/test/results/simple-dnscrypt.pcap.out +++ b/test/results/simple-dnscrypt.pcap.out @@ -91,3 +91,6 @@ ~~ total memory freed........: 2029367 bytes ~~ total allocations/frees...: 35487/35487 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 141 chars +~~ json string max len.......: 2194 chars +~~ json string avg len.......: 1236 chars diff --git a/test/results/sip.pcap.out b/test/results/sip.pcap.out index 42d9a2ca2..9d648bbc8 100644 --- a/test/results/sip.pcap.out +++ b/test/results/sip.pcap.out @@ -81,3 +81,6 @@ ~~ total memory freed........: 1943052 bytes ~~ total allocations/frees...: 35449/35449 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 1835 chars +~~ json string avg len.......: 1049 chars diff --git a/test/results/skype-conference-call.pcap.out b/test/results/skype-conference-call.pcap.out index 0ddcf3d59..ea3a4ac95 100644 --- a/test/results/skype-conference-call.pcap.out +++ b/test/results/skype-conference-call.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1941396 bytes ~~ total allocations/frees...: 35527/35527 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 147 chars +~~ json string max len.......: 643 chars +~~ json string avg len.......: 473 chars diff --git a/test/results/skype.pcap.out b/test/results/skype.pcap.out index dc658821d..774c3a1fe 100644 --- a/test/results/skype.pcap.out +++ b/test/results/skype.pcap.out @@ -2779,3 +2779,6 @@ ~~ total memory freed........: 3333703 bytes ~~ total allocations/frees...: 39492/39492 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2391 chars +~~ json string avg len.......: 1329 chars diff --git a/test/results/skype_no_unknown.pcap.out b/test/results/skype_no_unknown.pcap.out index b6158b14b..40b5d00a7 100644 --- a/test/results/skype_no_unknown.pcap.out +++ b/test/results/skype_no_unknown.pcap.out @@ -2189,3 +2189,6 @@ ~~ total memory freed........: 3058105 bytes ~~ total allocations/frees...: 38323/38323 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 143 chars +~~ json string max len.......: 2407 chars +~~ json string avg len.......: 1279 chars diff --git a/test/results/skype_udp.pcap.out b/test/results/skype_udp.pcap.out index 0d429f645..3dd568f8d 100644 --- a/test/results/skype_udp.pcap.out +++ b/test/results/skype_udp.pcap.out @@ -20,3 +20,6 @@ ~~ total memory freed........: 1927533 bytes ~~ total allocations/frees...: 35330/35330 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 549 chars +~~ json string avg len.......: 412 chars diff --git a/test/results/smb_deletefile.pcap.out b/test/results/smb_deletefile.pcap.out index e8ea0180a..5927b6834 100644 --- a/test/results/smb_deletefile.pcap.out +++ b/test/results/smb_deletefile.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1930317 bytes ~~ total allocations/frees...: 35426/35426 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 140 chars +~~ json string max len.......: 1105 chars +~~ json string avg len.......: 691 chars diff --git a/test/results/smbv1.pcap.out b/test/results/smbv1.pcap.out index b2dad3e23..9a040c59a 100644 --- a/test/results/smbv1.pcap.out +++ b/test/results/smbv1.pcap.out @@ -21,3 +21,6 @@ ~~ total memory freed........: 1929639 bytes ~~ total allocations/frees...: 35333/35333 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 668 chars +~~ json string avg len.......: 484 chars diff --git a/test/results/smpp_in_general.pcap.out b/test/results/smpp_in_general.pcap.out index 35a5eab8c..90a56e753 100644 --- a/test/results/smpp_in_general.pcap.out +++ b/test/results/smpp_in_general.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1929929 bytes ~~ total allocations/frees...: 35343/35343 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 140 chars +~~ json string max len.......: 543 chars +~~ json string avg len.......: 410 chars diff --git a/test/results/smtp-starttls.pcap.out b/test/results/smtp-starttls.pcap.out index 817d8adce..b09ccb257 100644 --- a/test/results/smtp-starttls.pcap.out +++ b/test/results/smtp-starttls.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1928432 bytes ~~ total allocations/frees...: 35361/35361 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 138 chars +~~ json string max len.......: 2359 chars +~~ json string avg len.......: 1308 chars diff --git a/test/results/snapchat.pcap.out b/test/results/snapchat.pcap.out index d4e027077..4e4ff1029 100644 --- a/test/results/snapchat.pcap.out +++ b/test/results/snapchat.pcap.out @@ -68,3 +68,6 @@ ~~ total memory freed........: 1941382 bytes ~~ total allocations/frees...: 35392/35392 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 1150 chars +~~ json string avg len.......: 711 chars diff --git a/test/results/snapchat_call.pcapng.out b/test/results/snapchat_call.pcapng.out index a23a3e044..9d0d742f2 100644 --- a/test/results/snapchat_call.pcapng.out +++ b/test/results/snapchat_call.pcapng.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1928838 bytes ~~ total allocations/frees...: 35375/35375 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 140 chars +~~ json string max len.......: 2244 chars +~~ json string avg len.......: 1264 chars diff --git a/test/results/ssdp-m-search.pcap.out b/test/results/ssdp-m-search.pcap.out index 5cb880353..5599c0d35 100644 --- a/test/results/ssdp-m-search.pcap.out +++ b/test/results/ssdp-m-search.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1927939 bytes ~~ total allocations/frees...: 35344/35344 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 138 chars +~~ json string max len.......: 531 chars +~~ json string avg len.......: 408 chars diff --git a/test/results/ssh.pcap.out b/test/results/ssh.pcap.out index 5a6abf4d5..493333190 100644 --- a/test/results/ssh.pcap.out +++ b/test/results/ssh.pcap.out @@ -32,3 +32,6 @@ ~~ total memory freed........: 1936874 bytes ~~ total allocations/frees...: 35587/35587 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 1638 chars +~~ json string avg len.......: 956 chars diff --git a/test/results/ssl-cert-name-mismatch.pcap.out b/test/results/ssl-cert-name-mismatch.pcap.out index 0ee7ea459..840f8755c 100644 --- a/test/results/ssl-cert-name-mismatch.pcap.out +++ b/test/results/ssl-cert-name-mismatch.pcap.out @@ -31,3 +31,6 @@ ~~ total memory freed........: 1936205 bytes ~~ total allocations/frees...: 35354/35354 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 147 chars +~~ json string max len.......: 2343 chars +~~ json string avg len.......: 1318 chars diff --git a/test/results/starcraft_battle.pcap.out b/test/results/starcraft_battle.pcap.out index 5343b044f..4b9789917 100644 --- a/test/results/starcraft_battle.pcap.out +++ b/test/results/starcraft_battle.pcap.out @@ -533,3 +533,6 @@ ~~ total memory freed........: 2135334 bytes ~~ total allocations/frees...: 36344/36344 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 142 chars +~~ json string max len.......: 2502 chars +~~ json string avg len.......: 1327 chars diff --git a/test/results/steam.pcap.out b/test/results/steam.pcap.out index 0eebfb569..4348f93d3 100644 --- a/test/results/steam.pcap.out +++ b/test/results/steam.pcap.out @@ -280,3 +280,6 @@ ~~ total memory freed........: 2098020 bytes ~~ total allocations/frees...: 35591/35591 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 836 chars +~~ json string avg len.......: 560 chars diff --git a/test/results/steam_datagram_relay_ping.pcapng.out b/test/results/steam_datagram_relay_ping.pcapng.out index 57d330631..f9e921e70 100644 --- a/test/results/steam_datagram_relay_ping.pcapng.out +++ b/test/results/steam_datagram_relay_ping.pcapng.out @@ -16,3 +16,6 @@ ~~ total memory freed........: 1927446 bytes ~~ total allocations/frees...: 35327/35327 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 151 chars +~~ json string max len.......: 2158 chars +~~ json string avg len.......: 1211 chars diff --git a/test/results/synscan.pcap.out b/test/results/synscan.pcap.out index eae418032..8cbbda1a3 100644 --- a/test/results/synscan.pcap.out +++ b/test/results/synscan.pcap.out @@ -8004,3 +8004,6 @@ ~~ total memory freed........: 8171979 bytes ~~ total allocations/frees...: 43315/43315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 631 chars +~~ json string avg len.......: 453 chars diff --git a/test/results/teams.pcap.out b/test/results/teams.pcap.out index b21ab86f0..f07641b1e 100644 --- a/test/results/teams.pcap.out +++ b/test/results/teams.pcap.out @@ -1129,3 +1129,6 @@ ~~ total memory freed........: 3900405 bytes ~~ total allocations/frees...: 38836/38836 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2386 chars +~~ json string avg len.......: 1263 chars diff --git a/test/results/teamspeak3.pcap.out b/test/results/teamspeak3.pcap.out index b6c3a9696..06d095cfb 100644 --- a/test/results/teamspeak3.pcap.out +++ b/test/results/teamspeak3.pcap.out @@ -27,3 +27,6 @@ ~~ total memory freed........: 1927765 bytes ~~ total allocations/frees...: 35338/35338 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 660 chars +~~ json string avg len.......: 474 chars diff --git a/test/results/telegram.pcap.out b/test/results/telegram.pcap.out index d505bace2..a512493c9 100644 --- a/test/results/telegram.pcap.out +++ b/test/results/telegram.pcap.out @@ -525,3 +525,6 @@ ~~ total memory freed........: 2137410 bytes ~~ total allocations/frees...: 37052/37052 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 2237 chars +~~ json string avg len.......: 1261 chars diff --git a/test/results/teredo.pcap.out b/test/results/teredo.pcap.out index 4f8b973dd..a72450bce 100644 --- a/test/results/teredo.pcap.out +++ b/test/results/teredo.pcap.out @@ -50,3 +50,6 @@ ~~ total memory freed........: 1940500 bytes ~~ total allocations/frees...: 35361/35361 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 566 chars +~~ json string avg len.......: 428 chars diff --git a/test/results/tftp.pcap.out b/test/results/tftp.pcap.out index 6e1ad971c..9a8cc8514 100644 --- a/test/results/tftp.pcap.out +++ b/test/results/tftp.pcap.out @@ -44,3 +44,6 @@ ~~ total memory freed........: 1939716 bytes ~~ total allocations/frees...: 35438/35438 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 1172 chars +~~ json string avg len.......: 718 chars diff --git a/test/results/tinc.pcap.out b/test/results/tinc.pcap.out index 0319ef246..51761d918 100644 --- a/test/results/tinc.pcap.out +++ b/test/results/tinc.pcap.out @@ -83,3 +83,6 @@ ~~ total memory freed........: 1954406 bytes ~~ total allocations/frees...: 35663/35663 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 2363 chars +~~ json string avg len.......: 1315 chars diff --git a/test/results/tk.pcap.out b/test/results/tk.pcap.out index 8b3b0fe28..4017ead1a 100644 --- a/test/results/tk.pcap.out +++ b/test/results/tk.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1933770 bytes ~~ total allocations/frees...: 35337/35337 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 126 chars +~~ json string max len.......: 668 chars +~~ json string avg len.......: 472 chars diff --git a/test/results/tls-esni-fuzzed.pcap.out b/test/results/tls-esni-fuzzed.pcap.out index 42c21fa9b..9108860a4 100644 --- a/test/results/tls-esni-fuzzed.pcap.out +++ b/test/results/tls-esni-fuzzed.pcap.out @@ -23,3 +23,6 @@ ~~ total memory freed........: 1941123 bytes ~~ total allocations/frees...: 35345/35345 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 1391 chars +~~ json string avg len.......: 851 chars diff --git a/test/results/tls-rdn-extract.pcap.out b/test/results/tls-rdn-extract.pcap.out index a4c6585be..c04a11be1 100644 --- a/test/results/tls-rdn-extract.pcap.out +++ b/test/results/tls-rdn-extract.pcap.out @@ -22,3 +22,6 @@ ~~ total memory freed........: 1969229 bytes ~~ total allocations/frees...: 35380/35380 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 2982 chars +~~ json string avg len.......: 1608 chars diff --git a/test/results/tls_alert.pcap.out b/test/results/tls_alert.pcap.out index 2eaded003..fe9412748 100644 --- a/test/results/tls_alert.pcap.out +++ b/test/results/tls_alert.pcap.out @@ -25,3 +25,6 @@ ~~ total memory freed........: 1929801 bytes ~~ total allocations/frees...: 35338/35338 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 837 chars +~~ json string avg len.......: 558 chars diff --git a/test/results/tls_certificate_too_long.pcap.out b/test/results/tls_certificate_too_long.pcap.out index eaa239d78..651dbf99d 100644 --- a/test/results/tls_certificate_too_long.pcap.out +++ b/test/results/tls_certificate_too_long.pcap.out @@ -362,3 +362,6 @@ ~~ total memory freed........: 2153943 bytes ~~ total allocations/frees...: 35857/35857 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 150 chars +~~ json string max len.......: 2416 chars +~~ json string avg len.......: 1350 chars diff --git a/test/results/tls_esni_sni_both.pcap.out b/test/results/tls_esni_sni_both.pcap.out index 5324a5ba3..aeeac6a0c 100644 --- a/test/results/tls_esni_sni_both.pcap.out +++ b/test/results/tls_esni_sni_both.pcap.out @@ -49,3 +49,6 @@ ~~ total memory freed........: 1950094 bytes ~~ total allocations/frees...: 35376/35376 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 142 chars +~~ json string max len.......: 2408 chars +~~ json string avg len.......: 1344 chars diff --git a/test/results/tls_invalid_reads.pcap.out b/test/results/tls_invalid_reads.pcap.out index cde98a3c8..e2cb50310 100644 --- a/test/results/tls_invalid_reads.pcap.out +++ b/test/results/tls_invalid_reads.pcap.out @@ -34,3 +34,6 @@ ~~ total memory freed........: 1934820 bytes ~~ total allocations/frees...: 35338/35338 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 142 chars +~~ json string max len.......: 1565 chars +~~ json string avg len.......: 858 chars diff --git a/test/results/tls_long_cert.pcap.out b/test/results/tls_long_cert.pcap.out index d94c8b787..0bdc2ae60 100644 --- a/test/results/tls_long_cert.pcap.out +++ b/test/results/tls_long_cert.pcap.out @@ -31,3 +31,6 @@ ~~ total memory freed........: 1973504 bytes ~~ total allocations/frees...: 35569/35569 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 2383 chars +~~ json string avg len.......: 1334 chars diff --git a/test/results/tls_verylong_certificate.pcap.out b/test/results/tls_verylong_certificate.pcap.out index eb7e23ca3..0c4548e74 100644 --- a/test/results/tls_verylong_certificate.pcap.out +++ b/test/results/tls_verylong_certificate.pcap.out @@ -31,3 +31,6 @@ ~~ total memory freed........: 2101059 bytes ~~ total allocations/frees...: 35510/35510 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 149 chars +~~ json string max len.......: 3493 chars +~~ json string avg len.......: 1889 chars diff --git a/test/results/tor.pcap.out b/test/results/tor.pcap.out index 50ce8de9a..a23760053 100644 --- a/test/results/tor.pcap.out +++ b/test/results/tor.pcap.out @@ -483,3 +483,6 @@ ~~ total memory freed........: 2108201 bytes ~~ total allocations/frees...: 39097/39097 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 2400 chars +~~ json string avg len.......: 1269 chars diff --git a/test/results/trickbot.pcap.out b/test/results/trickbot.pcap.out index 681be7177..5f4abb275 100644 --- a/test/results/trickbot.pcap.out +++ b/test/results/trickbot.pcap.out @@ -30,3 +30,6 @@ ~~ total memory freed........: 1929710 bytes ~~ total allocations/frees...: 35403/35403 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 2408 chars +~~ json string avg len.......: 1337 chars diff --git a/test/results/tumblr.pcap.out b/test/results/tumblr.pcap.out index a7a9853da..a0b60c784 100644 --- a/test/results/tumblr.pcap.out +++ b/test/results/tumblr.pcap.out @@ -489,3 +489,6 @@ ~~ total memory freed........: 3279433 bytes ~~ total allocations/frees...: 60317/60317 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2377 chars +~~ json string avg len.......: 1332 chars diff --git a/test/results/ubntac2.pcap.out b/test/results/ubntac2.pcap.out index d7466afa1..11adb7f14 100644 --- a/test/results/ubntac2.pcap.out +++ b/test/results/ubntac2.pcap.out @@ -43,3 +43,6 @@ ~~ total memory freed........: 1949348 bytes ~~ total allocations/frees...: 35354/35354 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 648 chars +~~ json string avg len.......: 476 chars diff --git a/test/results/upnp.pcap.out b/test/results/upnp.pcap.out index 0d8f22780..3b5d0b861 100644 --- a/test/results/upnp.pcap.out +++ b/test/results/upnp.pcap.out @@ -31,3 +31,6 @@ ~~ total memory freed........: 1930898 bytes ~~ total allocations/frees...: 35342/35342 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 129 chars +~~ json string max len.......: 1303 chars +~~ json string avg len.......: 802 chars diff --git a/test/results/viber.pcap.out b/test/results/viber.pcap.out index f278e7452..cd442b3ba 100644 --- a/test/results/viber.pcap.out +++ b/test/results/viber.pcap.out @@ -299,3 +299,6 @@ ~~ total memory freed........: 2205229 bytes ~~ total allocations/frees...: 35881/35881 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 2397 chars +~~ json string avg len.......: 1334 chars diff --git a/test/results/vnc.pcap.out b/test/results/vnc.pcap.out index 35d5afff6..b1914f6c1 100644 --- a/test/results/vnc.pcap.out +++ b/test/results/vnc.pcap.out @@ -47,3 +47,6 @@ ~~ total memory freed........: 2066567 bytes ~~ total allocations/frees...: 39881/39881 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 630 chars +~~ json string avg len.......: 448 chars diff --git a/test/results/wa_video.pcap.out b/test/results/wa_video.pcap.out index 042979455..54090d7f1 100644 --- a/test/results/wa_video.pcap.out +++ b/test/results/wa_video.pcap.out @@ -146,3 +146,6 @@ ~~ total memory freed........: 2084260 bytes ~~ total allocations/frees...: 36952/36952 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 135 chars +~~ json string max len.......: 2325 chars +~~ json string avg len.......: 1297 chars diff --git a/test/results/wa_voice.pcap.out b/test/results/wa_voice.pcap.out index 25312382d..d2896b2dc 100644 --- a/test/results/wa_voice.pcap.out +++ b/test/results/wa_voice.pcap.out @@ -298,3 +298,6 @@ ~~ total memory freed........: 2128610 bytes ~~ total allocations/frees...: 36169/36169 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 134 chars +~~ json string max len.......: 2383 chars +~~ json string avg len.......: 1325 chars diff --git a/test/results/waze.pcap.out b/test/results/waze.pcap.out index 335c6c4e0..988fb3c85 100644 --- a/test/results/waze.pcap.out +++ b/test/results/waze.pcap.out @@ -503,3 +503,6 @@ ~~ total memory freed........: 2309423 bytes ~~ total allocations/frees...: 36114/36114 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 12273 chars +~~ json string avg len.......: 6271 chars diff --git a/test/results/webex.pcap.out b/test/results/webex.pcap.out index 144572003..85defaa73 100644 --- a/test/results/webex.pcap.out +++ b/test/results/webex.pcap.out @@ -928,3 +928,6 @@ ~~ total memory freed........: 2449632 bytes ~~ total allocations/frees...: 37293/37293 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 12196 chars +~~ json string avg len.......: 6233 chars diff --git a/test/results/websocket.pcap.out b/test/results/websocket.pcap.out index 1f689e514..1bad5c5b2 100644 --- a/test/results/websocket.pcap.out +++ b/test/results/websocket.pcap.out @@ -22,3 +22,6 @@ ~~ total memory freed........: 1934733 bytes ~~ total allocations/frees...: 35335/35335 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 527 chars +~~ json string avg len.......: 405 chars diff --git a/test/results/wechat.pcap.out b/test/results/wechat.pcap.out index 0999c5f09..715bc3ace 100644 --- a/test/results/wechat.pcap.out +++ b/test/results/wechat.pcap.out @@ -1319,3 +1319,6 @@ ~~ total memory freed........: 2768084 bytes ~~ total allocations/frees...: 37989/37989 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 133 chars +~~ json string max len.......: 5035 chars +~~ json string avg len.......: 2653 chars diff --git a/test/results/weibo.pcap.out b/test/results/weibo.pcap.out index f64e74d32..36351decf 100644 --- a/test/results/weibo.pcap.out +++ b/test/results/weibo.pcap.out @@ -354,3 +354,6 @@ ~~ total memory freed........: 2079138 bytes ~~ total allocations/frees...: 35981/35981 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 6261 chars +~~ json string avg len.......: 3265 chars diff --git a/test/results/whatsapp_login_call.pcap.out b/test/results/whatsapp_login_call.pcap.out index 5fe030f70..f00dc0a5b 100644 --- a/test/results/whatsapp_login_call.pcap.out +++ b/test/results/whatsapp_login_call.pcap.out @@ -562,3 +562,6 @@ ~~ total memory freed........: 2185110 bytes ~~ total allocations/frees...: 36776/36776 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 146 chars +~~ json string max len.......: 2395 chars +~~ json string avg len.......: 1339 chars diff --git a/test/results/whatsapp_login_chat.pcap.out b/test/results/whatsapp_login_chat.pcap.out index 44be66cd4..50e952b42 100644 --- a/test/results/whatsapp_login_chat.pcap.out +++ b/test/results/whatsapp_login_chat.pcap.out @@ -91,3 +91,6 @@ ~~ total memory freed........: 1964165 bytes ~~ total allocations/frees...: 35448/35448 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 144 chars +~~ json string max len.......: 2384 chars +~~ json string avg len.......: 1334 chars diff --git a/test/results/whatsapp_voice_and_message.pcap.out b/test/results/whatsapp_voice_and_message.pcap.out index e8f95428a..c6ede8c47 100644 --- a/test/results/whatsapp_voice_and_message.pcap.out +++ b/test/results/whatsapp_voice_and_message.pcap.out @@ -169,3 +169,6 @@ ~~ total memory freed........: 1990653 bytes ~~ total allocations/frees...: 35629/35629 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 152 chars +~~ json string max len.......: 1753 chars +~~ json string avg len.......: 1021 chars diff --git a/test/results/whatsappfiles.pcap.out b/test/results/whatsappfiles.pcap.out index 9a9b9ddbe..8ff10afa9 100644 --- a/test/results/whatsappfiles.pcap.out +++ b/test/results/whatsappfiles.pcap.out @@ -50,3 +50,6 @@ ~~ total memory freed........: 1959017 bytes ~~ total allocations/frees...: 35962/35962 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 2317 chars +~~ json string avg len.......: 1301 chars diff --git a/test/results/wireguard.pcap.out b/test/results/wireguard.pcap.out index fc817b01a..2042d30a2 100644 --- a/test/results/wireguard.pcap.out +++ b/test/results/wireguard.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1996959 bytes ~~ total allocations/frees...: 37724/37724 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 136 chars +~~ json string max len.......: 1492 chars +~~ json string avg len.......: 900 chars diff --git a/test/results/youtube_quic.pcap.out b/test/results/youtube_quic.pcap.out index 883e03b08..611ad8174 100644 --- a/test/results/youtube_quic.pcap.out +++ b/test/results/youtube_quic.pcap.out @@ -63,3 +63,6 @@ ~~ total memory freed........: 1942121 bytes ~~ total allocations/frees...: 35623/35623 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 138 chars +~~ json string max len.......: 2240 chars +~~ json string avg len.......: 1264 chars diff --git a/test/results/youtubeupload.pcap.out b/test/results/youtubeupload.pcap.out index ea5bc5175..4bcf3680d 100644 --- a/test/results/youtubeupload.pcap.out +++ b/test/results/youtubeupload.pcap.out @@ -65,3 +65,6 @@ ~~ total memory freed........: 1947977 bytes ~~ total allocations/frees...: 35489/35489 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 139 chars +~~ json string max len.......: 2353 chars +~~ json string avg len.......: 1315 chars diff --git a/test/results/z3950.pcapng.out b/test/results/z3950.pcapng.out index bd471a7c2..94d579dfe 100644 --- a/test/results/z3950.pcapng.out +++ b/test/results/z3950.pcapng.out @@ -47,3 +47,6 @@ ~~ total memory freed........: 1941848 bytes ~~ total allocations/frees...: 35363/35363 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 132 chars +~~ json string max len.......: 2355 chars +~~ json string avg len.......: 1312 chars diff --git a/test/results/zabbix.pcap.out b/test/results/zabbix.pcap.out index b4b970b0f..dc6e5f206 100644 --- a/test/results/zabbix.pcap.out +++ b/test/results/zabbix.pcap.out @@ -24,3 +24,6 @@ ~~ total memory freed........: 1927678 bytes ~~ total allocations/frees...: 35335/35335 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 535 chars +~~ json string avg len.......: 406 chars diff --git a/test/results/zcash.pcap.out b/test/results/zcash.pcap.out index b6c20140a..7c0957cc4 100644 --- a/test/results/zcash.pcap.out +++ b/test/results/zcash.pcap.out @@ -29,3 +29,6 @@ ~~ total memory freed........: 1941849 bytes ~~ total allocations/frees...: 35473/35473 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 131 chars +~~ json string max len.......: 833 chars +~~ json string avg len.......: 555 chars diff --git a/test/results/zoom.pcap.out b/test/results/zoom.pcap.out index 0610acc70..0e8f6cd8e 100644 --- a/test/results/zoom.pcap.out +++ b/test/results/zoom.pcap.out @@ -373,3 +373,6 @@ ~~ total memory freed........: 2269976 bytes ~~ total allocations/frees...: 36203/36203 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~ json string min len.......: 130 chars +~~ json string max len.......: 2377 chars +~~ json string avg len.......: 1258 chars |