mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
An extension to the ICMP analyzer to handle redirects.
The analyzer now raises icmp_redirect() events that come with the redirection address. By Julien Sentier.
This commit is contained in:
parent
437ac29ca9
commit
1199085b27
6 changed files with 49 additions and 1 deletions
|
@ -58,6 +58,9 @@ const Analyzer::Config Analyzer::analyzer_configs[] = {
|
|||
{ AnalyzerTag::ICMP_Echo, "ICMP_ECHO",
|
||||
ICMP_Echo_Analyzer::InstantiateAnalyzer,
|
||||
ICMP_Echo_Analyzer::Available, 0, false },
|
||||
{ AnalyzerTag::ICMP_Redir, "ICMP_REDIR",
|
||||
ICMP_Redir_Analyzer::InstantiateAnalyzer,
|
||||
ICMP_Redir_Analyzer::Available, 0, false },
|
||||
|
||||
{ AnalyzerTag::TCP, "TCP", TCP_Analyzer::InstantiateAnalyzer,
|
||||
TCP_Analyzer::Available, 0, false },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue