JWT Token authentication getting forbidden issue

Hi Simone,

Th thing is kibana is not allowed to connect the other origin and sites. So the request from other sites are restricted.

Now i have changed the following settings in ./plugins/readonlyrest_kbn/node_modules/hapi-auth-cookie/lib/index.js

Existing:-
isSameSite: Joi.valid(‘Strict’, ‘Lax’).allow(false).default(‘Strict’),
isSameSite: true,

Now:-
isSameSite: false,
isSecure: Joi.boolean().default(false)

Now it’s working.

1 Like