Change default SameSite value to "None" (#2070)

merge-requests/133/head
Xavier Guimard 5 years ago
parent f3f97ccb80
commit 03a1c495e6
  1. 2
      lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm
  2. 2
      lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm
  3. 2
      lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm
  4. 2
      lemonldap-ng-manager/site/htdocs/static/struct.json

@ -259,7 +259,7 @@ sub defaultValues {
'rest2fActivation' => 0,
'restAuthnLevel' => 2,
'restClockTolerance' => 15,
'sameSite' => 'Lax',
'sameSite' => 'None',
'samlAttributeAuthorityDescriptorAttributeServiceSOAP' =>
'urn:oasis:names:tc:SAML:2.0:bindings:SOAP;#PORTAL#/saml/AA/SOAP;',
'samlAuthnContextMapKerberos' => 4,

@ -2802,7 +2802,7 @@ qr/(?:(?:https?):\/\/(?:(?:(?:(?:(?:(?:[a-zA-Z0-9][-a-zA-Z0-9]*)?[a-zA-Z0-9])[.]
'type' => 'url'
},
'sameSite' => {
'default' => 'Lax',
'default' => 'None',
'select' => [ {
'k' => 'Strict',
'v' => 'Strict'

@ -1083,7 +1083,7 @@ sub attributes {
{ k => 'Lax', v => 'Lax' },
{ k => 'None', v => 'None' },
],
default => 'Lax',
default => 'None',
documentation => 'Cookie SameSite value',
flags => 'hp',
},

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save