mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 10:38:20 +00:00
24 lines
477 B
C++
24 lines
477 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
#include "plugin/Plugin.h"
|
|
|
|
#include "PE.h"
|
|
|
|
namespace plugin {
|
|
namespace Bro_PE {
|
|
|
|
class Plugin : public plugin::Plugin {
|
|
public:
|
|
plugin::Configuration Configure()
|
|
{
|
|
AddComponent(new ::file_analysis::Component("PE", ::file_analysis::PE::Instantiate));
|
|
|
|
plugin::Configuration config;
|
|
config.name = "Bro::PE";
|
|
config.description = "Portable Executable analyzer";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|