Skip to content

Commit

Permalink
Still fixing up for Zeek 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
sethhall committed Jul 21, 2020
1 parent a67df50 commit 7b91c7a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 5 additions & 3 deletions src/Plugin.cc
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// Copyright 2017, Corelight, Inc. All rights reserved.

#include "Plugin.h"

#include "PE_XOR.h"

#include "plugin/Plugin.h"
#include "file_analysis/Component.h"

namespace plugin { namespace Corelight_PE_XOR { Plugin plugin; } }

using namespace plugin::Corelight_PE_XOR;
Expand All @@ -15,7 +17,7 @@ plugin::Configuration Plugin::Configure()
plugin::Configuration config;
config.name = "Corelight::PE_XOR";
config.description = "Plugin to detect and decrypt XOR-encrypted EXEs";
config.version.major = 0;
config.version.minor = 1;
config.version.major = 1;
config.version.minor = 2;
return config;
}
1 change: 0 additions & 1 deletion src/Plugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#pragma once

#include <plugin/Plugin.h>
#include "analyzer/Component.h"

namespace plugin {
namespace Corelight_PE_XOR {
Expand Down

0 comments on commit 7b91c7a

Please sign in to comment.