Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | 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 |
| | |||
* | Added new parameter to -P | Luca Deri | 2019-09-02 |
| | |||
* | Average calculation fix | Luca | 2019-08-29 |
| | |||
* | Implemented IAT (Inter Arrival Time) stats | Luca | 2019-08-29 |
| | |||
* | Added entropy, average, stddev, variance, bytes ratio calculation | Luca | 2019-08-28 |
| | |||
* | Initial work towards traffic classification | Luca | 2019-08-27 |