zeek/auxil/zeekjs/examples/table-access.zeek
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

16 lines
259 B
Plaintext

@load ./table-access.js
module Test;
export {
type Entry: record {
name: string;
};
global ip_map: table[addr] of Entry;
}
event connection_state_remove(c: connection) {
print fmt("ZEEK: JS told us about about %s IPs %s", |ip_map|, ip_map);
}