File tree 5 files changed +15
-12
lines changed
5 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to the Wazuh app project will be documented in this file.
4
4
5
+ ## Wazuh v4.3.10 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 4311
6
+
7
+ ### Fixed
8
+
9
+ - Fixed issue when logging out from Wazuh when SAML is enabled [ #4815 ] ( https://github.com/wazuh/wazuh-kibana-app/issues/4815 )
10
+
5
11
## Wazuh v4.3.9 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 4310
6
12
7
13
### Added
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ This plugin for Kibana allows you to visualize and analyze Wazuh alerts stored i
89
89
90
90
## Requisites
91
91
92
- - Wazuh HIDS 4.3.9
92
+ - Wazuh HIDS 4.3.10
93
93
- Kibana 7.10.2
94
94
- Elasticsearch 7.10.2
95
95
@@ -107,7 +107,7 @@ Install the Wazuh app plugin for Kibana
107
107
108
108
```
109
109
cd /usr/share/kibana
110
- sudo -u kibana bin/kibana-plugin install https://packages.wazuh.com/4.x/ui/kibana/wazuh_kibana-4.3.9_7 .10.2-1.zip
110
+ sudo -u kibana bin/kibana-plugin install https://packages.wazuh.com/4.x/ui/kibana/wazuh_kibana-4.3.10_7 .10.2-1.zip
111
111
```
112
112
113
113
Restart Kibana
@@ -194,7 +194,7 @@ Install the Wazuh app
194
194
195
195
```
196
196
cd /usr/share/kibana/
197
- sudo -u kibana bin/kibana-plugin install https://packages.wazuh.com/4.x/ui/kibana/wazuh_kibana-4.3.9_7 .10.2-1.zip
197
+ sudo -u kibana bin/kibana-plugin install https://packages.wazuh.com/4.x/ui/kibana/wazuh_kibana-4.3.10_7 .10.2-1.zip
198
198
```
199
199
200
200
Update configuration file permissions.
Original file line number Diff line number Diff line change 1
1
{
2
2
"id" : " wazuh" ,
3
- "version" : " 4.3.9-4310 " ,
3
+ "version" : " 4.3.10-4311 " ,
4
4
"kibanaVersion" : " kibana" ,
5
5
"configPath" : [
6
6
" wazuh"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " wazuh" ,
3
- "version" : " 4.3.9 " ,
4
- "revision" : " 4310 " ,
5
- "code" : " 4310 " ,
3
+ "version" : " 4.3.10 " ,
4
+ "revision" : " 4311 " ,
5
+ "code" : " 4311 " ,
6
6
"pluginPlatform" : {
7
7
"version" : " 7.10.2"
8
8
},
Original file line number Diff line number Diff line change @@ -111,9 +111,6 @@ app.run(function ($rootElement) {
111
111
// Add plugin help links as extension to plugin platform help menu
112
112
addHelpMenuToAppChrome ( ) ;
113
113
114
-
115
- const urlToLogout = getHttp ( ) . basePath . prepend ( '/logout' ) ;
116
-
117
114
// Bind deleteExistentToken on Log out component.
118
115
$ ( '.euiHeaderSectionItem__button, .euiHeaderSectionItemButton' ) . on ( 'mouseleave' , function ( ) {
119
116
// opendistro
@@ -123,14 +120,14 @@ app.run(function ($rootElement) {
123
120
// x-pack
124
121
$ ( 'a:contains(Log out)' ) . on ( 'click' , function ( event ) {
125
122
// Override href's behaviour and navigate programatically
126
- // to '/ logout' once the token has been deleted.
123
+ // to the logout path once the token has been deleted.
127
124
event . preventDefault ( ) ;
128
125
WzAuthentication . deleteExistentToken ( )
129
126
. catch ( ( err ) => {
130
127
console . error ( '[ERROR] - User token could not be deprecated - ' , err ) ;
131
128
} )
132
129
. finally ( ( ) => {
133
- window . location = urlToLogout ;
130
+ window . location = event . currentTarget . href ;
134
131
} ) ;
135
132
} ) ;
136
133
} ) ;
You can’t perform that action at this time.
0 commit comments