Skip to content

Commit

Permalink
fix reference to zeek::af_packet
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Feb 25, 2020
1 parent 0026302 commit 3cafb17
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Malcolm leverages the following excellent open source tools, among others.
* Amazon.com, Inc.'s [ICS protocol](https://github.com/amzn?q=zeek) analyzers
* Corelight's [bro-xor-exe](https://github.com/corelight/bro-xor-exe-plugin) plugin
* Corelight's [community ID](https://github.com/corelight/bro-community-id) flow hashing plugin
* J-Gras' [Bro::AF_Packet](https://github.com/J-Gras/bro-af_packet-plugin) plugin
* J-Gras' [Zeek::AF_Packet](https://github.com/J-Gras/zeek-af_packet-plugin) plugin
* Lexi Brent's [EternalSafety](https://github.com/lexibrent/zeek-EternalSafety) plugin
* MITRE Cyber Analytics Repository's [Bro/Zeek ATT&CK-Based Analytics (BZAR)](https://github.com/mitre-attack/car/tree/master/implementations) script
* Salesforce's [gQUIC](https://github.com/salesforce/GQUIC_Protocol_Analyzer) analyzer
Expand Down
10 changes: 5 additions & 5 deletions sensor-iso/docs/Notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Hedgehog Linux is a trimmed-down Debian Linux with several common tools preinsta
- [Compiling Zeek from source](#ZeekCompile)
- [Third party plugins](#ZeekThirdParty)
+ [bash script to install third party plugins for Zeek](#ZeekThirdPartyBash)
+ [Bro::AF_Packet configuration](#BroAfPacket)
+ [Zeek::AF_Packet configuration](#ZeekAfPacket)
- [`local.zeek`](#ZeekLocalPolicy)
- [File carving](#ZeekFileCarving)
* [Forwarding](#Forwarding)
Expand Down Expand Up @@ -369,7 +369,7 @@ Hedgehog Linux utilizest he following third party Zeek packages:
* Amazon.com, Inc.'s [ICS protocol](https://github.com/amzn?q=zeek) analyzers
* Corelight's [bro-xor-exe](https://github.com/corelight/bro-xor-exe-plugin) plugin
* Corelight's [community ID](https://github.com/corelight/bro-community-id) flow hashing plugin
* J-Gras' [Bro::AF_Packet](https://github.com/J-Gras/bro-af_packet-plugin) plugin
* J-Gras' [Zeek::AF_Packet](https://github.com/J-Gras/zeek-af_packet-plugin) plugin
* Lexi Brent's [EternalSafety](https://github.com/lexibrent/zeek-EternalSafety) plugin
* MITRE Cyber Analytics Repository's [Bro/Zeek ATT&CK-Based Analytics (BZAR)](https://github.com/mitre-attack/car/tree/master/implementations) script
* Salesforce's [gQUIC](https://github.com/salesforce/GQUIC_Protocol_Analyzer) analyzer
Expand Down Expand Up @@ -497,7 +497,7 @@ if [[ -d "$SRC_DIR" ]]; then
cd "$CWD"
fi

SRC_DIR="$(clone_github_repo "https://github.com/J-Gras/bro-af_packet-plugin")"
SRC_DIR="$(clone_github_repo "https://github.com/J-Gras/zeek-af_packet-plugin")"
if [[ -d "$SRC_DIR" ]]; then
CWD="$(pwd)"
cd "$SRC_DIR" && \
Expand All @@ -518,9 +518,9 @@ if [[ -d "$SRC_DIR" ]]; then
fi
```

### <a name="BroAfPacket"></a>Bro::AF_Packet configuration
### <a name="ZeekAfPacket"></a>Zeek::AF_Packet configuration

Of particular mention is J-Gras' [Bro::AF_Packet](https://github.com/J-Gras/bro-af_packet-plugin) plugin to allow Zeek to use the Linux kernel's AF_PACKET capabilities natively for packet capture. To determine if your Linux distribution's kernel supports AF_PACKET:
Of particular mention is J-Gras' [Zeek::AF_Packet](https://github.com/J-Gras/zeek-af_packet-plugin) plugin to allow Zeek to use the Linux kernel's AF_PACKET capabilities natively for packet capture. To determine if your Linux distribution's kernel supports AF_PACKET:

```bash
$ grep -x 'CONFIG_PACKET=[ym]' "/boot/config-$(uname -r)"
Expand Down
2 changes: 1 addition & 1 deletion shared/bin/zeek_install_plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ if [[ -d "$SRC_DIR" ]]; then
cd "$CWD"
fi

SRC_DIR="$(clone_github_repo "https://github.com/J-Gras/bro-af_packet-plugin")"
SRC_DIR="$(clone_github_repo "https://github.com/J-Gras/zeek-af_packet-plugin")"
if [[ -d "$SRC_DIR" ]]; then
CWD="$(pwd)"
cd "$SRC_DIR" && \
Expand Down

0 comments on commit 3cafb17

Please sign in to comment.