aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* | 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.
| * Fixed missing length check in fbzero.Toni Uhlig2020-06-23
| | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | Added hulustream SNI pattern. Fixes #904.Toni Uhlig2020-06-23
|/ | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Fixes #906Luca Deri2020-06-22
| | | | Packet bins are not printed wehn empty
* Warning fixLuca Deri2020-06-22
|
* Added ndpi_bin_XXX APILuca Deri2020-06-22
| | | | Added packet lenght distribution bins
* Fixed use after free caused by dangling pointerToni Uhlig2020-06-21
| | | | | | * This fix also improved RCE Injection detection Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Merge pull request #920 from lnslbrty/fix/tls-rdn-crashLuca Deri2020-06-19
|\ | | | | Fixed stack overflow caused by missing length check
| * Fixed stack overflow caused by missing length checkToni Uhlig2020-06-18
| | | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | Fixed API documentation: packet tiestamp is expressed in millisecondsLuca Deri2020-06-18
| |
* | DGA detection improvementsLuca Deri2020-06-18
| |
* | Added checks for DGA detectionLuca Deri2020-06-17
| |
* | Merge pull request #919 from lnslbrty/new/protocol/anydeskLuca Deri2020-06-17
|\ \ | | | | | | Implemented proprietary AnyDesk protocol
| * | Implemented proprietary AnyDesk protocolToni Uhlig2020-06-17
| |/ | | | | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* / Add API ndpi_serializer_get_formatAlfredo Cardigliano2020-06-16
|/
* Fixed invalid assignment (typo)Luca Deri2020-06-14
|
* Added improved boundary checkLuca Deri2020-06-14
|