aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* 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
| |
| * Add ssl_version_str to flow structure.aouinizied2020-07-13
| |
* | Fixed makefile error messageLuca Deri2020-07-13
|/ | | | Code hardedning fix
* wrapper cleanupLuca Deri2020-07-13
|
* 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
| |
* | Merge pull request #961 from lnslbrty/fix/ssl-version2str-race-conditionLuca Deri2020-07-13
|\ \ | | | | | | Fixed race condition in ndpi_ssl_version2str() caused by static quali…
| * | 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>
* | Merge pull request #960 from lnslbrty/fix/heap-overflow-in-llc-readear-utilLuca Deri2020-07-13
|\ \ | |/ |/| Fixed heap overflow caused by missing lengthcheck in 802.11 LLC heade…
| * Fixed heap overflow caused by missing lengthcheck in 802.11 LLC header parsing.Toni Uhlig2020-07-11
|/ | | | | | * triggered by fuzz traces from wireshark Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Updated test results due to bin changesLuca Deri2020-07-09
|
* Various fixes in bins implementationLuca Deri2020-07-09
| | | | Added -b flag in ndpiReader to test bins
* Merge pull request #957 from lnslbrty/fix/buildLuca Deri2020-07-09
|\ | | | | Fix/build
| * travis-ci cleanupsToni Uhlig2020-07-09
| | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
| * ndpiSimpleIntegration should not be included in a static libraryToni Uhlig2020-07-08
| | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
| * Removed csv_fp as external symbol. Instead passing csv_fp through as argument.Toni Uhlig2020-07-08
| | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | Guide updateAlfredo Cardigliano2020-07-09
| |
* | Update note.aouinizied2020-07-09
| |
* | Add NDPI_MALFORMED_PACKET risk.aouinizied2020-07-09
| |
* | Added -b to ndpiReader to evaluate binsLuca Deri2020-07-09
|/
* Merge pull request #956 from IvanNardi/leakLuca Deri2020-07-08
|\ | | | | Fix memory leak reported in #955
| * Fix memory leak reported in #955Nardi Ivan2020-07-08
| | | | | | | | | | | | | | This leak is clearly happening because of missing/disabled code in "bins" handling. This is a trivial workaround useful until such code is completed. In this way tavis-ci will stop complaining
* | 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
|/
* Added testing bin codeLuca Deri2020-07-07
|
* Memory allocation fixesLuca Deri2020-07-07
|
* Merge pull request #954 from lnslbrty/fix/memleak-cluster-binsLuca Deri2020-07-07
|\ | | | | fixed memory leak in ndpi_cluster_bins / binUnitTest
| * 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
| * Fix a memory leakNardi Ivan2020-07-07
| |
| * Improve help message of --dbg-proto optionNardi Ivan2020-07-02
| | | | | | | | | | Make it clear that such option is general, not about extcap functionality
| * 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 #953 from lnslbrty/fix/broken-autoconf-fsanitizerLuca Deri2020-07-07
|\ \ | | | | | | fix broken sanitizer CFLAGS, --enable-fuzztargets should also set -fs…
| * | fix broken sanitizer CFLAGS, --enable-fuzztargets should also set -fsanitizeToni Uhlig2020-07-06
| | | | | | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | | Merge pull request #952 from lnslbrty/fix/missing-lengthcheck-in-reader-uutilLuca Deri2020-07-07
|\ \ \ | |/ / |/| | Fixed heap overflow caused by missing lengthcheck in reader uutil.
| * | Fixed heap overflow caused by missing lengthcheck in reader uutil.Toni Uhlig2020-07-06
|/ / | | | | | | | | | | * triggered by fuzz traces from wireshark Signed-off-by: Toni Uhlig <matzeton@googlemail.com>