Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Removed superfluous ifdef'd includes. (#1519) | Toni | 2022-04-19 |
| | | | Signed-off-by: lns <matzeton@googlemail.com> | ||
* | Fixed msys2 build warnings and re-activated CI Mingw64 build.fix/windows-msys2 | Toni Uhlig | 2022-04-14 |
| | | | | | | | * Removed Visual Studio leftovers. Maintaining an autotools project with VS integration requires some additional overhead. Signed-off-by: Toni Uhlig <matzeton@googlemail.com> Signed-off-by: lns <matzeton@googlemail.com> | ||
* | Added ndpi_find_outliers() API call using Z-Score | Luca Deri | 2022-04-04 |
| | |||
* | Update copyright | Alfredo Cardigliano | 2022-01-03 |
| | |||
* | Added example for finding similarities in RRDs using nDPI statistical APIs | Luca Deri | 2021-12-04 |
| | |||
* | Demo tool for finding anomalies in RRD files | Luca Deri | 2021-12-03 |
| | |||
* | Implemented ndpi_ses_fitting() and ndpi_des_fitting() | Luca Deri | 2021-10-12 |
| | | | | for comuting the best alpha/beta values for exponential smoothing | ||
* | Fixed DES initialisation | Luca Deri | 2021-10-12 |
| | |||
* | Fix some ndpi_malloc/ndpi_free pairs (#1298) | Ivan Nardi | 2021-09-13 |
| | |||
* | Fix possible segfault/leak | Alfredo Cardigliano | 2021-07-05 |
| | |||
* | Upgraded exponential smoothing to 64 bit values | Luca Deri | 2021-06-18 |
| | |||
* | Refactored nDPI subprotocol handling and aimini protocol detection. (#1156) | Toni | 2021-03-23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Refactored and merged callback buffer routines for non-udp-tcp / udp / tcp / tcp-wo-payload. Signed-off-by: Toni Uhlig <matzeton@googlemail.com> * Try to detect one subprotocol if a detected protocol can have one. * This adds a performance overhead due to much more protocol detection routine calls. See #1148 for more information. Signed-off-by: Toni Uhlig <matzeton@googlemail.com> * Refactor subprotocol handling (1/2). Signed-off-by: Toni Uhlig <matzeton@googlemail.com> * Refactor subprotocol handling (2/2). Signed-off-by: Toni Uhlig <matzeton@googlemail.com> * Prevent some code duplication by using macros for ndpi_int_one_line_struct string comparision. Signed-off-by: Toni Uhlig <matzeton@googlemail.com> * Refactored aimini HTTP detection parts (somehow related to #1148). Signed-off-by: Toni Uhlig <matzeton@googlemail.com> * Added aimini client/server test pcap. Signed-off-by: Toni Uhlig <matzeton@googlemail.com> * Removed master protocol as it was only used for STUN and via also removed API function ndpi_get_protocol_id_master_proto * Adjusted Python code to conform to the changes made during the refactoring process. Signed-off-by: Toni Uhlig <matzeton@googlemail.com> | ||
* | Implemented square erro rollup to avoid overflow | Luca Deri | 2021-03-14 |
| | |||
* | Added double exponential smoothing implementation | Luca | 2021-03-11 |
| | |||
* | Added single exponential smoothing API | Luca Deri | 2021-03-11 |
| | | | | | int ndpi_ses_init(struct ndpi_ses_struct *ses, double alpha, float significance); int ndpi_ses_add_value(struct ndpi_ses_struct *ses, const u_int32_t _value, double *forecast, double *confidence_band); | ||
* | Added HW checks | Luca Deri | 2021-03-01 |
| | |||
* | Added further HW checks | Luca Deri | 2021-03-01 |
| | |||
* | Holt-Winters calculation improvement | Luca Deri | 2021-02-27 |
| | |||
* | Fixes #1136 | Luca Deri | 2021-02-19 |
| | |||
* | Fix small memory leak (#1133) | Ivan Nardi | 2021-02-10 |
| | | | Now function definition matches the prototype in ndpi_api.h.in | ||
* | Extended the API to calculate jitter | Luca Deri | 2021-02-09 |
| | | | | | | - ndpi_jitter_init() - ndpi_jitter_free() - ndpi_jitter_add_value() | ||
* | Minor code improvements | Luca Deri | 2021-02-09 |
| | |||
* | Added timeseries forecasting support implementing Holt-Winters with ↵ | Luca Deri | 2021-02-08 |
| | | | | | | | | | confidence interval New API calls added - ndpi_hw_init() - ndpi_hw_add_value() - ndpi_hw_free() | ||
* | Implemented more efficient and memory savvy RSI | Luca Deri | 2021-02-05 |
| | |||
* | RSI enhancements | Luca Deri | 2021-02-05 |
| | |||
* | Implemented API for computing RSI (Relative Strenght Index) | Luca Deri | 2021-02-04 |
| | | | | | | void ndpi_init_rsi(struct ndpi_rsi_struct *s, u_int16_t num_learning_values); void ndpi_free_rsi(struct ndpi_rsi_struct *s); float ndpi_rsi_add_value(struct ndpi_rsi_struct *s, const u_int32_t value); | ||
* | Fixes #1029 | Luca Deri | 2020-11-27 |
| | |||
* | Fixes #1032 | Luca Deri | 2020-11-27 |
| | |||
* | Added -D flag for detecting DoH in the wild | Luca Deri | 2020-10-26 |
| | | | | Removed heuristic from CiscoVPN as it leads to false positives | ||
* | Stddev calculation changes | Luca Deri | 2020-08-30 |
| | |||
* | Fixed false positive in suspicous user agent | Luca Deri | 2020-08-30 |
| | | | | Optimized stddev calculation | ||
* | Fixed bin similarity | Luca Deri | 2020-07-24 |
| | |||
* | Improved bin clustering | Luca Deri | 2020-07-22 |
| | |||
* | Added ndpi_reset_data_analysis() API call | Luca Deri | 2020-07-17 |
| | |||
* | 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 | ||
* | Various fixes in bins implementation | Luca Deri | 2020-07-09 |
| | | | | Added -b flag in ndpiReader to test bins | ||
* | Added -b to ndpiReader to evaluate bins | Luca Deri | 2020-07-09 |
| | |||
* | 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 | ||
* | Added comment on stddev | Luca Deri | 2020-07-03 |
| | |||
* | Added ndpi_print_bin() API call | Luca Deri | 2020-06-29 |
| | |||
* | Added ndpi_bin_similarity() for computing bin similarity | Luca Deri | 2020-06-29 |
| | |||
* | Added ndpi_bin_XXX API | Luca Deri | 2020-06-22 |
| | | | | Added packet lenght distribution bins | ||
* | Added HyperLogLog cardinality estimator API calls | Luca Deri | 2020-06-10 |
| | | | | | | | | | | | | | /* Memory lifecycle */ int ndpi_hll_init(struct ndpi_hll *hll, u_int8_t bits); void ndpi_hll_destroy(struct ndpi_hll *hll); /* Add values */ void ndpi_hll_add(struct ndpi_hll *hll, const char *data, size_t data_len); void ndpi_hll_add_number(struct ndpi_hll *hll, u_int32_t value) ; /* Get cardinality estimation */ double ndpi_hll_count(struct ndpi_hll *hll); | ||
* | Added ndpi_serialize_raw_record() API call | Luca Deri | 2020-04-10 |
| | |||
* | Refreshed Tor node list | Luca Deri | 2019-09-08 |
| | |||
* | Added ndpi_alloc_data_analysis APi call | Luca Deri | 2019-09-02 |
| |