zeek/src/analyzer/protocols/login/Plugin.cc
Robin Sommer 3959e254e2 Moving protocol-specific BiFs out of bro.bif.
I hope I found them all ...
2013-04-19 15:25:18 -07:00

20 lines
590 B
C++

#include "plugin/Plugin.h"
#include "Login.h"
#include "Telnet.h"
#include "RSH.h"
#include "Rlogin.h"
BRO_PLUGIN_BEGIN(Login)
BRO_PLUGIN_DESCRIPTION("Telnet/Rsh/Rlogin Analyzer");
BRO_PLUGIN_ANALYZER("TELNET", login::Telnet_Analyzer);
BRO_PLUGIN_ANALYZER("RSH", login::Rsh_Analyzer);
BRO_PLUGIN_ANALYZER("RLOGIN", login::Rlogin_Analyzer);
BRO_PLUGIN_ANALYZER_BARE("NVT");
BRO_PLUGIN_ANALYZER_BARE("Login");
BRO_PLUGIN_SUPPORT_ANALYZER("Contents_Rsh");
BRO_PLUGIN_SUPPORT_ANALYZER("Contents_Rlogin");
BRO_PLUGIN_BIF_FILE(events);
BRO_PLUGIN_BIF_FILE(functions);
BRO_PLUGIN_END