-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
62 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Dovehawk Bro Module | ||
|
||
Threat Hunting with Bro and MISP | ||
|
||
|
||
## Requirements | ||
|
||
Bro IDS: tested with version version 2.5.4. | ||
|
||
Curl: command line tool for accessing web content, tested with curl 7.54.0. | ||
|
||
|
||
## Quick Start | ||
|
||
Rename misp_config.bro.default to misp_config.bro. Edit misp_config.bro and add your MISP API key and URLs for the Bro Export and Sightings. | ||
|
||
|
||
## Monitoring and context | ||
|
||
The bro module outputs hits to the console, logs to file, and could send metadata to another web hook. | ||
|
||
|
||
## Usage | ||
|
||
If running bro directly, reference the Dovehawk folder: | ||
|
||
sudo bro -i en1 [FULL PATH]/Dovehawk | ||
|
||
If running using the broctl interface, edit the local.bro configuration file in /usr/local/bro/share/bro/site and, at the bottom, add the line: | ||
|
||
@load [FULL PATH]/Dovehawk | ||
|
||
then run the broctl deploy sequence to have the scripts installed. | ||
|
||
|
||
## BRO Tips | ||
|
||
When running locally (ie running Bro on the same system you are generating traffic from), you may need to use the -C option to ignore checksum validation. | ||
|
||
|
||
## Optional Disable local logging | ||
|
||
Add "Log::default_writer=Log::WRITER_NONE" to the command. | ||
|
||
bro -i en0 Dovehawk Log::default_writer=Log::WRITER_NONE | ||
|
||
|
||
## Maintenance | ||
|
||
For long term monitoring, if not disabling logs as above, use broctl to launch, rotate logs, and restart after crashes. | ||
|
||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters