diff --git a/CMakeLists.txt b/CMakeLists.txt index 07b7098..fd9257d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project(Plugin) include(ZeekPlugin) -zeek_plugin_begin(Zeek Enip) +zeek_plugin_begin(Zeek ENIP) zeek_plugin_cc(src/ENIP.cc src/Plugin.cc) zeek_plugin_bif(src/events.bif) zeek_plugin_pac(src/enip.pac src/enip-analyzer.pac src/enip-protocol.pac) diff --git a/README.md b/README.md index 90e2d67..bab1bc6 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ When running as part of your Zeek installation this plugin will produce three lo ## Sharing and Contributing -This code is made available under the [BSD-3-Clause license](LICENSE). [Guidelines for contributing](CONTRIBUTING.md) are available as well as a [pull request template](.github/PULL_REQUEST_TEMPLATE.md). A [Dockerfile](Dockerfile) has been included in the repository to assist with setting up an environment for testing any changes to the plugin. +This code is made available under the [BSD-3-Clause license](https://github.com/amzn/zeek-plugin-enip/blob/master/LICENSE). [Guidelines for contributing](https://github.com/amzn/zeek-plugin-enip/blob/master/CONTRIBUTING.md) are available as well as a [pull request template](https://github.com/amzn/zeek-plugin-enip/blob/master/.github/PULL_REQUEST_TEMPLATE.md). A [Dockerfile](https://github.com/amzn/zeek-plugin-enip/blob/master/Dockerfile) has been included in the repository to assist with setting up an environment for testing any changes to the plugin. ## Acknowledgements diff --git a/scripts/consts.zeek b/scripts/consts.zeek index 03d88aa..846eb81 100644 --- a/scripts/consts.zeek +++ b/scripts/consts.zeek @@ -24,7 +24,7 @@ export { [0x01] = "Connection Failure", [0x02] = "Resource Unavailable", [0x03] = "Invalid Parameter Value", - [0x04] = "Path Size Invalid", + [0x04] = "Path Segment Error", [0x05] = "Path Destination Unknown", [0x06] = "Partial Transfer", [0x07] = "Connection Lost", diff --git a/src/Plugin.cc b/src/Plugin.cc index 6b9ebbb..2ca09ce 100644 --- a/src/Plugin.cc +++ b/src/Plugin.cc @@ -14,6 +14,6 @@ plugin::Configuration Plugin::Configure() { plugin::Configuration config; config.name = "Zeek::ENIP"; - config.description = "EtherNet/IP and CIP Protocol analyzer"; + config.description = "EtherNet/IP and CIP protocols analyzer"; return config; }