Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
| * | | | | | Update libcache | Vitaly Lavrov | 2018-02-06 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using ndpi_calloc(), ndpi_free() in libcache. Fixing warnings about mixing declaration and code. | |||
* | | | | | | fix wrong increment for MPLS double header | Campus | 2018-02-15 | |
| | | | | | | ||||
* | | | | | | Improved numeric to protocol conversion | Luca Deri | 2018-02-12 | |
| | | | | | | ||||
* | | | | | | Fixed typo | Luca | 2018-02-12 | |
| | | | | | | ||||
* | | | | | | Updadate last protocol id | Luca Deri | 2018-02-11 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Updated tests with new protocols | |||
* | | | | | | Implemented supporto for GoogleDocs and AmazonVideo | Luca Deri | 2018-02-11 | |
| |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | Fixed various bugs in detecting Google Drive Improved Spotify support | |||
* | | | | | Added 179 to the default BGP port list | Luca Deri | 2018-02-09 | |
| |_|/ / |/| | | | ||||
* | | | | Merge pull request #519 from zyingp/dev | Luca Deri | 2018-02-04 | |
|\ \ \ \ | | |/ / | |/| | | Add an Xcode project for easier debugging on MacOS | |||
| * | | | Reset optind of getopt_long for synthesizing command line input stably in ↵ | ZengYingpei | 2018-02-04 | |
| | | | | | | | | | | | | | | | | the Xcode project | |||
| * | | | Unify Copyright declaration for all added files of the Xcode project | ZengYingpei | 2018-02-04 | |
| | | | | ||||
| * | | | Add an Xcode project for debugging under MacOS (add all missed files) | ZengYingpei | 2018-02-04 | |
| | | | | ||||
| * | | | Add an Xcode project for debugging under MacOS | ZengYingpei | 2018-02-04 | |
| | | | | ||||
* | | | | update results for test pcap | Campus | 2018-02-03 | |
| | | | | ||||
* | | | | fix wrong conversion dec to hex | Campus | 2018-02-03 | |
|/ / / | ||||
* | | | Fixes possible out-of-bounds due to malformed DHCP packets | Simone Mainardi | 2018-01-31 | |
| | | | ||||
* | | | Improved hyperscan support | Luca Deri | 2018-01-26 | |
| | | | ||||
* | | | Added minor hardening code in STUN | Luca | 2018-01-26 | |
| | | | ||||
* | | | Merge pull request #510 from vel21ripn/dev | Michele Campus | 2018-01-26 | |
|\ \ \ | | | | | | | | | Fix buffer overflow in function ndpi_debug_printf() | |||
| * | | | Fix buffer overflow in function ndpi_debug_printf() | Vitaly Lavrov | 2018-01-26 | |
|/ / / | ||||
* | | | Inital hyperscan work | Luca Deri | 2018-01-24 | |
| | | | ||||
* | | | Merge pull request #508 from emanuele-f/hyperscan | Luca Deri | 2018-01-24 | |
|\ \ \ | | | | | | | | | Initial support for Intel hyperscan pattern matching library | |||
| * | | | Initial support for Intel hyperscan pattern matching library. | emanuele-f | 2018-01-24 | |
| |/ / | ||||
* | | | Merge pull request #482 from hvanderheide/dev | Luca Deri | 2018-01-24 | |
|\ \ \ | |/ / |/| | | Revert the revert of 2155dd9 after fixing ntopng Travis | |||
| * | | Merge remote-tracking branch 'upstream/dev' into dev | Hidde van der Heide | 2018-01-10 | |
| |\ \ | ||||
| * \ \ | Merge remote-tracking branch 'upstream/dev' into dev | Hidde van der Heide | 2017-12-20 | |
| |\ \ \ | ||||
| * \ \ \ | Merge remote-tracking branch 'upstream/dev' into dev | Hidde van der Heide | 2017-11-09 | |
| |\ \ \ \ | ||||
| * | | | | | Revert the revert of 2155dd9 after fixing ntopng Travis | Hidde van der Heide | 2017-10-24 | |
| | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 4f72b954da705f8d54a9dd61eae46b2b36b24dc0. | |||
* | | | | | | Cleaned up Amazon IP range | Luca Deri | 2018-01-19 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Improved HostShield VPN | |||
* | | | | | | Warnign fix | Luca Deri | 2018-01-16 | |
| | | | | | | ||||
* | | | | | | Implemented Google services detection | Luca Deri | 2018-01-16 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Refreshed google-based services support | |||
* | | | | | | Added ApplePush support | Luca Deri | 2018-01-15 | |
| |_|_|/ / |/| | | | | ||||
* | | | | | Merge pull request #506 from cavedon/dev | Michele Campus | 2018-01-09 | |
|\ \ \ \ \ | | | | | | | | | | | | | Fix MPLS header parsing in ndpiReader. | |||
| * | | | | | Fix MPLS header parsing in ndpiReader. | Ludovico Cavedon | 2018-01-09 | |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reported at https://bugs.debian.org/886133. The current parsing for the MPLS header in examples/ndpi_util.c has multiple issues: - the bitfield order is incorrect for little endian architectures - ntohl() is applied to a 20 bit label, which has unclear purpose - if multiple labels are detected, the while loop parsing labels will never exit due to a missing re-read of the mpls label - the last label is identified by looking inside the label field, while it should be done by looking at the S bit This change fixes the above issues. Notice that bitfield ordering is implementation-dependent, so C bitfields should not be used in the first place to parse network packets. | |||
* | | | | | add missing check for free TCP/UDP root in tree | Campus | 2018-01-05 | |
| | | | | | ||||
* | | | | | added diameter protocol dissector | Campus | 2018-01-02 | |
| | | | | | ||||
* | | | | | Added third party libs | Luca Deri | 2017-12-25 | |
| | | | | | ||||
* | | | | | Added simplified makefile | Luca Deri | 2017-12-25 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | Fixed small warnings Compilation fixes | |||
* | | | | | Merged categories network and network_tool (way too similar) | Luca Deri | 2017-12-23 | |
| |_|/ / |/| | | | | | | | | | | | Replaced former network_tool category with streaming category | |||
* | | | | Merge branch 'qianguozheng-dev' into dev | Campus | 2017-12-19 | |
|\ \ \ \ | ||||
| * | | | | Fix ndpiReader long run crash due to dupilicate nodes exist, cause | qianguozheng | 2017-12-19 | |
|/ / / / | | | | | | | | | | | | | double free failed. | |||
* | | | | Merge branch 'madpilot78-fix_symbols' into dev | Campus | 2017-12-15 | |
|\ \ \ \ | ||||
| * | | | | Merge branch 'fix_symbols' of https://github.com/madpilot78/nDPI into ↵ | Campus | 2017-12-15 | |
|/| | | | | | | | | | | | | | | | | | | | madpilot78-fix_symbols | |||
| * | | | | Add ndpi_set_proto_category, which is actually uses by ntopng. | Guido Falsi | 2017-12-05 | |
| | | | | | ||||
* | | | | | Implemented GooglePlus support that replaced ancient Quake protocol now obsolete | Luca Deri | 2017-12-15 | |
| | | | | | ||||
* | | | | | Compilation fixes | Luca Deri | 2017-12-13 | |
| | | | | | ||||
* | | | | | Implements ndpi_get_category_id | Simone Mainardi | 2017-12-11 | |
| | | | | | ||||
* | | | | | Simplified IPv6 datatypes | Luca Deri | 2017-12-08 | |
| | | | | | ||||
* | | | | | Merge branch 'vel21ripn-dev' into dev | Campus | 2017-12-07 | |
|\ \ \ \ \ | ||||
| * \ \ \ \ | Merge branch 'dev' into dev | Michele Campus | 2017-12-07 | |
| |\ \ \ \ \ | |/ / / / / |/| | | | | | ||||
* | | | | | | Merge branch 'dev' of https://github.com/ntop/nDPI into dev | Luca | 2017-12-07 | |
|\ \ \ \ \ \ |