Created
September 12, 2020 07:47
-
-
Save svch0stz/0c0cc16686ff474cb269b17894a0b327 to your computer and use it in GitHub Desktop.
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
#### Winlogbeat Evtx Shipper To HELK #### | |
# Usage: .\winlogbeat.exe -c .\winlogbeat-ship2helk.yml -e -E EVTX_FILE="C:\Dev\evtxfile2ship.evtx" | |
winlogbeat.event_logs: | |
- name: ${EVTX_FILE} | |
no_more_events: stop | |
winlogbeat.shutdown_timeout: 60s | |
winlogbeat.registry_file: evtx-registry.yml | |
# If sending directly to logstash, you will need to change the output module | |
output.kafka: | |
hosts: ["<HELK-IP>:9092"] | |
topic: "winlogbeat" | |
max_retries: 2 | |
max_message_bytes: 1000000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment