Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

8 lines
297 B
Plaintext

module PacketAnalyzer::RAW_LAYER;
event zeek_init()
{
PacketAnalyzer::register_packet_analyzer(PacketAnalyzer::ANALYZER_ETHERNET, 0x88B5, PacketAnalyzer::ANALYZER_RAW_LAYER);
PacketAnalyzer::register_packet_analyzer(PacketAnalyzer::ANALYZER_RAW_LAYER, 0x4950, PacketAnalyzer::ANALYZER_IP);
}