mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
No description
![]() The hash function was internally casting the void* data argument into an unsigned char* and then using values from that to index another internal array that's dimensioned based on the assumption of 256 values possible for an unsigned char (8-bit chars/bytes). This is probably a correct assumption most of the time, but should be safer to use the limits as defined in standard headers to get it right for the particular system/compiler. There was an unused uint8* casted variable in HashKey::HashBytes that seemed like it might have been meant to be passed to H3's hash function as an unfinished attempt to solve the 8-bit byte assumption problem, but that doesn't seem as good as taking care of that internally in H3 so users of the API are only concerned with byte sizes as reported by `sizeof`. Removing the unused variable addresses #530. Also a minor tweak to an hmac_md5 call that was casting away const from one argument (which doesn't match the prototype). |
||
---|---|---|
aux | ||
cmake | ||
doc | ||
pkg | ||
policy.old | ||
scripts | ||
src | ||
testing | ||
.gitignore | ||
.gitmodules | ||
bro-path-dev.in | ||
CHANGES | ||
CMakeLists.txt | ||
config.h.in | ||
configure | ||
COPYING | ||
INSTALL | ||
Makefile | ||
README | ||
VERSION |
This is release 1.6 of Bro, a system for detecting network intruders in real-time using passive network monitoring. Please see the file INSTALL for installation instructions and pointers for getting started. For more documentation, see the documentation on Bro's home page: http://www.bro-ids.org/docs The main parts of Bro's documentation are also available in the doc/ directory of the distribution. (Please note that the documentation is still a work in progress; there will be more in future releases.) Numerous other Bro-related publications, including a paper describing the system, can be found at http://www.bro-ids.org/publications.html Send comments, etc., to the Bro mailing list, bro@bro-ids.org. However, please note that you must first subscribe to the list in order to be able to post to it. - Vern Paxson & Robin Sommer, on behalf of the Bro development team Lawrence Berkeley National Laboratory University of California, Berkeley USA ICSI Center for Internet Research (ICIR) International Computer Science Institute Berkeley, CA USA vern@icir.org / robin@icir.org