aboutsummaryrefslogtreecommitdiff
path: root/src/lib/third_party
Commit message (Collapse)AuthorAge
* Added HLL notesLuca Deri2020-08-11
|
* Minor HLL fixesLuca Deri2020-07-22
|
* HLL memory usage notesLuca Deri2020-07-22
|
* Add ndpi_hll_reset() API callLuca Deri2020-07-15
| | | | Fixes bug in ndpi_data_window_average() with zero points
* Values stored in patricia tree are now 32 bit (they used to be 16 bit) longLuca Deri2020-06-26
|
* Added HyperLogLog cardinality estimator API callsLuca Deri2020-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);
* Win fixesLuca Deri2020-06-08
|
* API cleanup for indetifying explicitly in automa's what we're searching ↵Luca Deri2020-05-06
| | | | | | (protocol or category) Removed hyperscan support that is apperently unused
* Updated automa API to use 32 bit values splits from protocol/categpryLuca Deri2020-05-06
|
* Introduced custom protocols with IP and (optional) port supportLuca Deri2020-05-06
| | | | | | | | | | | | | | | | Example - Single IP address ip:213.75.170.11@CustomProtocol - IP address with CIDR ip:213.75.170.11/32@CustomProtocol - IP address with CIDR and port ip:213.75.170.11/32:443@CustomProtocol Please note that there are some restrictions on the port usage. They have been listed in example/protos.txt
* Various fixes to patricia tree handlingLuca Deri2020-05-06
|
* False positive fixesLuca Deri2020-05-06
|
* Reworked protocol handling chnging it is u_int16_tLuca Deri2020-05-06
|
* Fix an harmless memory leakNardi Ivan2020-04-08
| | | | Leak introduced in 90e08b35, while fixing #845
* Fixes #837Luca Deri2020-02-19
|
* Fixes #845Luca Deri2020-02-19
|
* FIXED - nDPI now detect RCE injections via PCRE instead Intel HyperscanMrTiz92020-02-01
|
* nDPI now detect RCE injections via PCRE instead Intel Hyperscan - BUGGY, ↵MrTiz92020-01-30
| | | | DOES NOT COMPILE
* nDPI now detect RCE in HTTP GET requestsMrTiz92020-01-24
|
* Win fixesLuca Deri2019-12-14
|
* Code cleanupLuca Deri2019-12-09
|
* Integration of the libinjection library to detect SQL injections and XSS ↵MrTiz92019-12-05
| | | | type attacks in HTTP requests
* Added ndpi_finalize_initalization() initialization functionLuca2019-11-07
|
* Code cleanupLuca Deri2019-10-02
|
* Fix double free after b19bfa1e207a8d4972bfc701fde5d5c014f95383emanuele-f2019-10-02
|
* Fixes leaks in ndpi_add_host_url_subprotocolemanuele-f2019-10-02
| | | | | It is now possible to deallocate strings in ac_automata_release via an additional parameter
* TLS cerficate hash calculationLuca Deri2019-09-14
|
* Implemented HASSH (https://github.com/salesforce/hassh)Luca Deri2019-08-22
|
* Fix missing bracesStuart Reilly2019-06-28
|
* Fix two resource leaksStuart Reilly2019-06-28
|
* Fix potential NULL deref in libcacheStuart Reilly2019-06-28
|
* Removed this party LRU and replaced with home grownLuca Deri2019-01-17
|
* Added Ookla cacheLuca Deri2018-12-17
|
* Added ndpi_flowv4_flow_hash and ndpi_flowv6_flow_hash skeletons forLuca Deri2018-11-14
| | | | implementing https://github.com/corelight/community-id-spec
* Renamed files to avoid name clashes during compilation with other libsLuca Deri2018-09-29
|
* Renamed source files to avoid clashesLuca Deri2018-09-29
|
* ADD: add prototype of function ht_free in hash.h - DEL: delete include file ↵Campus2018-08-23
| | | | .c in ndpi_main.c
* Changed type to ease compilation accross platformsLuca Deri2018-08-20
|
* Generic protocol cleanup (work in progress)Luca Deri2018-08-16
|
* Added missing includeLuca Deri2018-06-05
|
* Fix for #560Luca Deri2018-05-29
|
* Fixed memory leakLuca Deri2018-05-18
| | | | Optimized memory usage
* Implemented hash-based categoriesLuca Deri2018-05-16
|
* Update libcacheVitaly Lavrov2018-02-06
| | | | | Using ndpi_calloc(), ndpi_free() in libcache. Fixing warnings about mixing declaration and code.
* Added simplified makefileLuca Deri2017-12-25
| | | | | Fixed small warnings Compilation fixes
* Fix undefined behavior (detected by gcc):Vitaly Lavrov2017-10-03
| | | | | | | | | | | | | | ndpi_define.h.in:218: Macros NDPI_SET(), NDPI_CLR(), NDPI_ISSET() runtime error: left shift of 1 by 31 places cannot be represented in type 'int' http.c:364: strncpy((char*)flow->protos.http.nat_ip,(char*)packet->forwarded_line.ptr,len); runtime error: null pointer passed as argument 2, which is declared to never be null ndpi_patricia.c:ndpi_comp_with_mask(): int m = ((-1) << (8 - (mask % 8))); runtime error: left shift of negative value -1 Original function ndpi_comp_with_mask() is unreadable and slow. We have only 2 type of address: 32 bit and 128 bit. The optimized version works 6 times faster (IPv4).
* Fixed TINC bug (cache usage)Luca Deri2017-07-27
| | | | | | Merged MS Lync with Skype (Microsoft renamed MS Lync in Skype for Business) Renumbered Nintendo protocols in former MS Lync that was no longer used Fix for #425
* Merge pull request #391 from deselmo/devMichele Campus2017-06-02
|\ | | | | Updated libcache's license
| * Update license libcacheWilliam Guglielmo2017-06-02
| |
* | compilation fixcardigliano2017-06-01
|/