aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* Added skeleton for checking SSH signatureLuca Deri2020-07-20
|
* Fix for invalid boundary checkLuca Deri2020-07-17
|
* Added ndpi_reset_data_analysis() API callLuca Deri2020-07-17
|
* Indendentation fixLuca Deri2020-07-16
|
* Merge pull request #964 from yskcg/devLuca Deri2020-07-16
|\ | | | | 1:add free pointer NULL check;2:fix xbox and teredo protocol detected…
| * remove the unused codeysk2020-07-16
| |
| * 1:add free pointer NULL check;2:fix xbox and teredo protocol detected error ↵ysk2020-07-16
| | | | | | | | when use the commm udp port 3544
* | Added ndpi_data_last() API callLuca Deri2020-07-16
|/
* Added ndpi_data_window_variance() and ndpi_data_window_stddev() API callsLuca Deri2020-07-15
|
* Add ndpi_hll_reset() API callLuca Deri2020-07-15
| | | | Fixes bug in ndpi_data_window_average() with zero points
* Check for avoiding buffer overflow in netbios dissectorLuca Deri2020-07-14
|
* Merge branch 'dev' of https://github.com/ntop/nDPI into devLuca Deri2020-07-13
|\
| * Add note for sync with cffi bindings.aouinizied2020-07-13
| |
* | Fixed makefile error messageLuca Deri2020-07-13
|/ | | | Code hardedning fix
* Merge pull request #963 from yskcg/devLuca Deri2020-07-13
|\ | | | | add improved boundary check and check malloc return is NULL
| * add improved boundary check and check malloc return is NULLysk2020-07-10
| |
* | Fixed race condition in ndpi_ssl_version2str() caused by static qualifier in ↵Toni Uhlig2020-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 implementationLuca Deri2020-07-09
| | | | Added -b flag in ndpiReader to test bins
* Update note.aouinizied2020-07-09
|
* Added -b to ndpiReader to evaluate binsLuca Deri2020-07-09
|
* Merge pull request #955 from lnslbrty/fix/heap-overflow-thunderLuca Deri2020-07-08
|\ | | | | Fixed thunder protocol detection heap overflow caused by missing leng…
| * Fixed thunder protocol detection heap overflow caused by missing lengthcheck.Toni Uhlig2020-07-08
| | | | | | | | | | | | * triggered by fuzz traces from wireshark Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | Fix warningsAlfredo Cardigliano2020-07-08
|/
* fixed memory leak in ndpi_cluster_bins / binUnitTestToni Uhlig2020-07-07
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added ndpi_cluster_bins() for clustering bins and ancillary functions for ↵Luca Deri2020-07-07
| | | | bins manipulation
* Merge pull request #932 from IvanNardi/logLuca Deri2020-07-07
|\ | | | | Log
| * Incorporated some feedbackNardi Ivan2020-07-01
| |
| * mqtt: add boundary check in log messageNardi Ivan2020-06-26
| |
| * Fix compilation with --enable-debug-messages flagNardi Ivan2020-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-parsingLuca Deri2020-07-06
|\ \ | | | | | | Improved HTTP line parsing if request splitted into multiple packets.
| * | Improved HTTP line parsing if request splitted into multiple packets.Toni Uhlig2020-07-05
| | | | | | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | | Added comment on stddevLuca Deri2020-07-03
|/ /
* | Improved TeamViewer IP range (fixes #944)Toni Uhlig2020-07-02
| | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | Merge pull request #943 from lnslbrty/fix/missing-lengthcheck-in-tls-esniLuca Deri2020-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 Uhlig2020-06-29
| | | | | | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | | Make clean enhancementLuca Deri2020-07-01
| | |
* | | IndentLuca Deri2020-06-30
| | |
* | | Fix segfault on ndpi_guess_protocol_id with flow = nullAlfredo Cardigliano2020-06-30
| | |
* | | Added ndpi_print_bin() API callLuca Deri2020-06-29
|/ /
* | Added ndpi_bin_similarity() for computing bin similarityLuca Deri2020-06-29
| |
* | Fix undefined behaviour in internal testsNardi Ivan2020-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 parsingNardi Ivan2020-06-28
| |
* | DNP3: add missing initializationNardi Ivan2020-06-28
| |
* | TLS: extract JA3 signatures in some corner casesNardi Ivan2020-06-28
| | | | | | | | | | In some (rare) cases, Client Hello message contains lots of cipher suits.
* | Fixed off-by-one error in h323.Toni Uhlig2020-06-27
| | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | Added notes whenever a new flow risk is addedLuca Deri2020-06-26
| |
* | Added malformed packet risk supportLuca Deri2020-06-26
| |
* | Values stored in patricia tree are now 32 bit (they used to be 16 bit) longLuca Deri2020-06-26
|/
* CentOS6 fix (santize won't work as too old system)lucaderi2020-06-25
| | | | Fixes warning
* Merge pull request #927 from lnslbrty/fix/fbzero-missing-length-checkLuca Deri2020-06-24
|\ | | | | Fixed missing length check in fbzero.