Created
April 21, 2016 22:45
-
-
Save jasonish/2e0a28da85ffa7cbfdc8c54fbfa1d44a to your computer and use it in GitHub Desktop.
Example evebox.yaml
This file contains hidden or 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
# Event services: links that will be provided on events to link to additonal | |
# services. | |
event-services: | |
# Custom service to link the rule in Scirius. | |
- type: custom | |
enabled: true | |
name: Scirius | |
# Only make available for alert types. | |
event-types: | |
- alert | |
# URL template. All eve values can be used. | |
url: https://10.16.1.179/rules/rule/{{alert.signature_id}} | |
# Custom service to link to Dumpy for full packet capture. | |
# | |
# This one has no event-types meaning its available for all event types. | |
- type: custom | |
enabled: true | |
name: Dumpy | |
# The URL template, {{raw}} expands to the raw eve event as a JSON | |
# string which is then url encoded. | |
url: http://10.16.1.1:7000/?event={{raw}} | |
# Open in new window. The default is the same window. | |
target: new |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment