Skip to content

Commit

Permalink
use absolute reference for links in README, updated plugin descriptio…
Browse files Browse the repository at this point in the history
…n, and fixed one incorrect enumeration
  • Loading branch information
NothinRandom committed Aug 24, 2020
1 parent 899b551 commit 7eef57e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion scripts/consts.zeek
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.cc
Expand Up @@ -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;
}

0 comments on commit 7eef57e

Please sign in to comment.