Skip to content
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

Fix a concurrent map write panic in auditd module #8158

Merged
merged 1 commit into from
Aug 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ https://github.com/elastic/beats/compare/v6.4.0...master[Check the HEAD diff]
- Fixed a data race in the file_integrity module. {issue}8009[8009]
- Fixed a deadlock in the file_integrity module. {pull}8027[8027]
- Fixed the RPM by designating the config file as configuration data in the RPM spec. {issue}8075[8075]
- Fixed a concurrent map write panic in the auditd module. {pull}8158[8158]

*Filebeat*

Expand Down
3 changes: 2 additions & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
--------------------------------------------------------------------
Dependency: github.com/elastic/go-libaudit
Revision: ec7a7253716958d85ea854cbef4aaffcd6cbd50b
Version: v0.4.0
Revision: 39073a2988f718067d85d27a4d18b1b57de5d947
License type (autodetected): Apache-2.0
./vendor/github.com/elastic/go-libaudit/LICENSE.txt:
--------------------------------------------------------------------
Expand Down
10 changes: 9 additions & 1 deletion vendor/github.com/elastic/go-libaudit/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions vendor/github.com/elastic/go-libaudit/aucoalesce/id_lookup.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 22 additions & 12 deletions vendor/vendor.json
Original file line number Diff line number Diff line change
Expand Up @@ -379,34 +379,44 @@
"revisionTime": "2016-08-05T00:47:13Z"
},
{
"checksumSHA1": "D/7cJ8oboLL/gQxr57kfvDBtMZE=",
"checksumSHA1": "vNnw1bUS8Ct+8H64QuA2DWRJ9SQ=",
"path": "github.com/elastic/go-libaudit",
"revision": "ec7a7253716958d85ea854cbef4aaffcd6cbd50b",
"revisionTime": "2018-08-07T15:01:12Z"
"revision": "39073a2988f718067d85d27a4d18b1b57de5d947",
"revisionTime": "2018-08-29T20:25:13Z",
"version": "v0.4.0",
"versionExact": "v0.4.0"
},
{
"checksumSHA1": "QTR02jPgqq2P6mZKMWUdAUQPVbQ=",
"checksumSHA1": "NRGAFJY7u1wYeXtNzLlI5/MnBMQ=",
"path": "github.com/elastic/go-libaudit/aucoalesce",
"revision": "ec7a7253716958d85ea854cbef4aaffcd6cbd50b",
"revisionTime": "2018-08-07T15:01:12Z"
"revision": "39073a2988f718067d85d27a4d18b1b57de5d947",
"revisionTime": "2018-08-29T20:25:13Z",
"version": "v0.4.0",
"versionExact": "v0.4.0"
},
{
"checksumSHA1": "6OK3lLgocjmIUyLo8xNhYGpwE1E=",
"path": "github.com/elastic/go-libaudit/auparse",
"revision": "ec7a7253716958d85ea854cbef4aaffcd6cbd50b",
"revisionTime": "2018-08-07T15:01:12Z"
"revision": "39073a2988f718067d85d27a4d18b1b57de5d947",
"revisionTime": "2018-08-29T20:25:13Z",
"version": "v0.4.0",
"versionExact": "v0.4.0"
},
{
"checksumSHA1": "zGv2vPwSLoFCRt1kcD81pBzTo+0=",
"path": "github.com/elastic/go-libaudit/rule",
"revision": "ec7a7253716958d85ea854cbef4aaffcd6cbd50b",
"revisionTime": "2018-08-07T15:01:12Z"
"revision": "39073a2988f718067d85d27a4d18b1b57de5d947",
"revisionTime": "2018-08-29T20:25:13Z",
"version": "v0.4.0",
"versionExact": "v0.4.0"
},
{
"checksumSHA1": "5C083BvwcAVSKquRXbxXa950/wE=",
"path": "github.com/elastic/go-libaudit/rule/flags",
"revision": "ec7a7253716958d85ea854cbef4aaffcd6cbd50b",
"revisionTime": "2018-08-07T15:01:12Z"
"revision": "39073a2988f718067d85d27a4d18b1b57de5d947",
"revisionTime": "2018-08-29T20:25:13Z",
"version": "v0.4.0",
"versionExact": "v0.4.0"
},
{
"checksumSHA1": "3jizmlZPCyo6FAZY8Trk9jA8NH4=",
Expand Down