forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes for new 7.10 rsa2elk datasets (elastic#21240)
* Fix bad unicode character used in juniper/netscreen Some parsers from netwitness wrongly use ’ XML entity as a quote character. This entity translates to UNICODE codepoint U+0092 (PRIVATE USE 2), which is not printable and can cause problems. My understanding is that this is the result of either: - Device logs are encoded in the windows-1252 codepage, or - Log parsers originally written in windows-1252 codepage. In this codepage, \x92 represents a quotation mark similar to the ASCII \x27 single quotation mark ('). I believe someone misunderstood XML's &#xNNN entity as escaping a byte value, instead of a UNICODE codepoint. As it is unclear if the original logs contain this special quote, or it's the result of writting the parsers in a Windows editor, it's better to replace it's usage with empty captures that skip over this quote. * Update pipelines for new 7.10 rsa2elk datasets The original pipelines had been generated with some debugging comments in them, which made them much larger than necessary.
- Loading branch information
Showing
12 changed files
with
8,297 additions
and
13,681 deletions.
There are no files selected for viewing
159 changes: 53 additions & 106 deletions
159
x-pack/filebeat/module/barracuda/spamfirewall/config/pipeline.js
Large diffs are not rendered by default.
Oops, something went wrong.
204 changes: 68 additions & 136 deletions
204
x-pack/filebeat/module/cisco/meraki/config/pipeline.js
Large diffs are not rendered by default.
Oops, something went wrong.
1,140 changes: 380 additions & 760 deletions
1,140
x-pack/filebeat/module/citrix/netscaler/config/pipeline.js
Large diffs are not rendered by default.
Oops, something went wrong.
864 changes: 288 additions & 576 deletions
864
x-pack/filebeat/module/cyberark/corepas/config/pipeline.js
Large diffs are not rendered by default.
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
630 changes: 210 additions & 420 deletions
630
x-pack/filebeat/module/fortinet/fortimail/config/pipeline.js
Large diffs are not rendered by default.
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
Oops, something went wrong.