-
Notifications
You must be signed in to change notification settings - Fork 456
New issue
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
[suricata] Defensive copy of parameter lists #4731
Conversation
Copy list parameters before setting them into the context, rather than setting them directly -- this avoids leaking a 'static' mutable list (and the resulting concurrent modification exceptions).
Pinging @elastic/security-external-integrations (Team:Security-External Integrations) |
🚀 Benchmarks reportTo see the full report comment with |
🌐 Coverage report
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just need to update the link on the changelog and then we merge.
Package suricata - 2.5.1 containing this change is available at https://epr.elastic.co/search?package=suricata |
What does this PR do?
Fixes #4723. Adds a defensive copy of the lists that we use from the params map, very much in the style of what was done previously in #3492.
Checklist
changelog.yml
file.Related issues