mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 11:38:20 +00:00
24 lines
479 B
C++
24 lines
479 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
#include "plugin/Plugin.h"
|
|
|
|
#include "PE.h"
|
|
|
|
namespace plugin {
|
|
namespace Zeek_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 = "Zeek::PE";
|
|
config.description = "Portable Executable analyzer";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|