We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The syslog reader/processor does not properly handle escaped brackets (]) in the structured data fields of an RFC 5424 message.
]
Example log which triggers the issue:
<165>1 2003-10-11T22:14:15.003Z mymachine.example.com evntslog - ID47 [exampleSDID@32473 iut="3" eventSource="Application" eventID="1011" somekey="[value\] more data"][examplePriority@32473 class="high"] Some message
Expected raw structured data value:
[exampleSDID@32473 iut="3" eventSource="Application" eventID="1011" somekey="[value\] more data"][examplePriority@32473 class="high"]
Actual raw structured data value:
more data"][examplePriority@32473 class="high"]
The extraction of the values into a map also has to be updated to handle escaped characters.
The text was updated successfully, but these errors were encountered:
Pinging @elastic/sec-deployment-and-devices (Team:Security-Deployment and Devices)
Sorry, something went wrong.
taylor-swanson
Successfully merging a pull request may close this issue.
The syslog reader/processor does not properly handle escaped brackets (
]
) in the structured data fields of an RFC 5424 message.Example log which triggers the issue:
Expected raw structured data value:
Actual raw structured data value:
The extraction of the values into a map also has to be updated to handle escaped characters.
The text was updated successfully, but these errors were encountered: