Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Minor HLL fixes | Luca Deri | 2020-07-22 |
| | |||
* | Introduced SSH rick checks | Luca Deri | 2020-07-22 |
| | |||
* | HLL memory usage notes | Luca Deri | 2020-07-22 |
| | |||
* | User agent detection improvements | Luca Deri | 2020-07-21 |
| | |||
* | Added skeleton for checking SSH signature | Luca Deri | 2020-07-20 |
| | |||
* | Fix for invalid boundary check | Luca Deri | 2020-07-17 |
| | |||
* | Added ndpi_reset_data_analysis() API call | Luca Deri | 2020-07-17 |
| | |||
* | Indendentation fix | Luca Deri | 2020-07-16 |
| | |||
* | Merge pull request #964 from yskcg/dev | Luca Deri | 2020-07-16 |
|\ | | | | | 1:add free pointer NULL check;2:fix xbox and teredo protocol detected… | ||
| * | remove the unused code | ysk | 2020-07-16 |
| | | |||
| * | 1:add free pointer NULL check;2:fix xbox and teredo protocol detected error ↵ | ysk | 2020-07-16 |
| | | | | | | | | when use the commm udp port 3544 | ||
* | | Added ndpi_data_last() API call | Luca Deri | 2020-07-16 |
|/ | |||
* | Added ndpi_data_window_variance() and ndpi_data_window_stddev() API calls | Luca Deri | 2020-07-15 |
| | |||
* | Add ndpi_hll_reset() API call | Luca Deri | 2020-07-15 |
| | | | | Fixes bug in ndpi_data_window_average() with zero points | ||
* | Check for avoiding buffer overflow in netbios dissector | Luca Deri | 2020-07-14 |
| | |||
* | Merge branch 'dev' of https://github.com/ntop/nDPI into dev | Luca Deri | 2020-07-13 |
|\ | |||
| * | Add note for sync with cffi bindings. | aouinizied | 2020-07-13 |
| | | |||
* | | Fixed makefile error message | Luca Deri | 2020-07-13 |
|/ | | | | Code hardedning fix | ||
* | Merge pull request #963 from yskcg/dev | Luca Deri | 2020-07-13 |
|\ | | | | | add improved boundary check and check malloc return is NULL | ||
| * | add improved boundary check and check malloc return is NULL | ysk | 2020-07-10 |
| | | |||
* | | Fixed race condition in ndpi_ssl_version2str() caused by static qualifier in ↵ | Toni Uhlig | 2020-07-11 |
|/ | | | | | | | | | the version string buffer. * added also GREASE supported tls versions as specified in https://tools.ietf.org/html/draft-davidben-tls-grease-01#page-4 Signed-off-by: Toni Uhlig <matzeton@googlemail.com> | ||
* | Various fixes in bins implementation | Luca Deri | 2020-07-09 |
| | | | | Added -b flag in ndpiReader to test bins | ||
* | Update note. | aouinizied | 2020-07-09 |
| | |||
* | Added -b to ndpiReader to evaluate bins | Luca Deri | 2020-07-09 |
| | |||
* | Merge pull request #955 from lnslbrty/fix/heap-overflow-thunder | Luca Deri | 2020-07-08 |
|\ | | | | | Fixed thunder protocol detection heap overflow caused by missing leng… | ||
| * | Fixed thunder protocol detection heap overflow caused by missing lengthcheck. | Toni Uhlig | 2020-07-08 |
| | | | | | | | | | | | | * triggered by fuzz traces from wireshark Signed-off-by: Toni Uhlig <matzeton@googlemail.com> | ||
* | | Fix warnings | Alfredo Cardigliano | 2020-07-08 |
|/ | |||
* | fixed memory leak in ndpi_cluster_bins / binUnitTest | Toni Uhlig | 2020-07-07 |
| | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com> | ||
* | Added ndpi_cluster_bins() for clustering bins and ancillary functions for ↵ | Luca Deri | 2020-07-07 |
| | | | | bins manipulation | ||
* | Merge pull request #932 from IvanNardi/log | Luca Deri | 2020-07-07 |
|\ | | | | | Log | ||
| * | Incorporated some feedback | Nardi Ivan | 2020-07-01 |
| | | |||
| * | mqtt: add boundary check in log message | Nardi Ivan | 2020-06-26 |
| | | |||
| * | Fix compilation with --enable-debug-messages flag | Nardi Ivan | 2020-06-26 |
| | | | | | | | | | | | | | | | | | | | | | | | | NDPI_LOG* macros dereference ndpi_detection_module_struct object which is private to ndpi library (via NDPI_LIB_COMPILATION define). So we can't use them outside the library itself, i.e. in ndpiReader code Therefore, in files in example/, convert all (rare) uses of NDPI_LOG* macros to a new very simple macro, private to ndpiReader program. If necessary, such macro may be improved. According to a comment in ndpi_define.h, each dissector must define its own NDPI_CURRENT_PROTO macro before including ndpi_api.h file | ||
* | | Merge pull request #950 from lnslbrty/improved/http-line-parsing | Luca Deri | 2020-07-06 |
|\ \ | | | | | | | Improved HTTP line parsing if request splitted into multiple packets. | ||
| * | | Improved HTTP line parsing if request splitted into multiple packets. | Toni Uhlig | 2020-07-05 |
| | | | | | | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com> | ||
* | | | Added comment on stddev | Luca Deri | 2020-07-03 |
|/ / | |||
* | | Improved TeamViewer IP range (fixes #944) | Toni Uhlig | 2020-07-02 |
| | | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com> | ||
* | | Merge pull request #943 from lnslbrty/fix/missing-lengthcheck-in-tls-esni | Luca Deri | 2020-07-01 |
|\ \ | | | | | | | Fixed heap overflow in tls esni extraction triggered by manipulated p… | ||
| * | | Fixed heap overflow in tls esni extraction triggered by manipulated packets. | Toni Uhlig | 2020-06-29 |
| | | | | | | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com> | ||
* | | | Make clean enhancement | Luca Deri | 2020-07-01 |
| | | | |||
* | | | Indent | Luca Deri | 2020-06-30 |
| | | | |||
* | | | Fix segfault on ndpi_guess_protocol_id with flow = null | Alfredo Cardigliano | 2020-06-30 |
| | | | |||
* | | | Added ndpi_print_bin() API call | Luca Deri | 2020-06-29 |
|/ / | |||
* | | Added ndpi_bin_similarity() for computing bin similarity | Luca Deri | 2020-06-29 |
| | | |||
* | | Fix undefined behaviour in internal tests | Nardi Ivan | 2020-06-28 |
| | | | | | | | | | | | | | | | | Error messages: ndpiReader.c:3211:2: runtime error: left shift of 1 by 31 places cannot be represented in type 'int' ndpiReader.c:3207:5: runtime error: left shift of 1 by 31 places cannot be represented in type 'int' The errors started popping up since 3d9285f1 | ||
* | | Fix use-after-free in http content parsing | Nardi Ivan | 2020-06-28 |
| | | |||
* | | DNP3: add missing initialization | Nardi Ivan | 2020-06-28 |
| | | |||
* | | TLS: extract JA3 signatures in some corner cases | Nardi Ivan | 2020-06-28 |
| | | | | | | | | | | In some (rare) cases, Client Hello message contains lots of cipher suits. | ||
* | | Fixed off-by-one error in h323. | Toni Uhlig | 2020-06-27 |
| | | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com> | ||
* | | Added notes whenever a new flow risk is added | Luca Deri | 2020-06-26 |
| | |