zeek/testing/btest/Traces/communityid
Christian Kreibich 99de7b7526 Add community_id_v1() based on corelight/zeek-community-id
"Community ID" has become an established flow hash for connection correlation
across different monitoring and storage systems. Other NSMs have had native
and built-in support for Community ID since late 2018. And even though the
roots of "Community ID" are very close to Zeek, Zeek itself has never provided
out-of-the-box support and instead required users to install an external plugin.

While we try to make that installation as easy as possible, an external plugin
always sets the bar higher for an initial setup and can be intimidating.
It also requires a rebuild operation of the plugin during upgrades. Nothing
overly complicated, but somewhat unnecessary for such popular functionality.

This isn't a 1:1 import. The options are parameters and the "verbose"
functionality  has been removed. Further, instead of a `connection`
record, the new bif works with `conn_id`, allowing computation of the
hash with little effort on the command line:

    $ zeek -e 'print community_id_v1([$orig_h=1.2.3.4, $orig_p=1024/tcp, $resp_h=5.6.7.8, $resp_p=80/tcp])'
    1:RcCrCS5fwYUeIzgDDx64EN3+okU

Reference: https://github.com/corelight/zeek-community-id/
2023-04-21 20:44:09 +02:00
..
arp.pcap Add community_id_v1() based on corelight/zeek-community-id 2023-04-21 20:44:09 +02:00
icmp.pcap Add community_id_v1() based on corelight/zeek-community-id 2023-04-21 20:44:09 +02:00
icmp6.pcap Add community_id_v1() based on corelight/zeek-community-id 2023-04-21 20:44:09 +02:00
ipv6.pcap Add community_id_v1() based on corelight/zeek-community-id 2023-04-21 20:44:09 +02:00
README Add community_id_v1() based on corelight/zeek-community-id 2023-04-21 20:44:09 +02:00
sctp.pcap Add community_id_v1() based on corelight/zeek-community-id 2023-04-21 20:44:09 +02:00
tcp.pcap Add community_id_v1() based on corelight/zeek-community-id 2023-04-21 20:44:09 +02:00
udp.pcap Add community_id_v1() based on corelight/zeek-community-id 2023-04-21 20:44:09 +02:00

# Traces imported from the original zeek-community-id repository.