forked from CGM_Public/pretix_original
Fixed problems with PayPal and CSP
This commit is contained in:
@@ -152,7 +152,11 @@ class SecurityMiddleware:
|
|||||||
'frame-src': '{static} https://js.stripe.com',
|
'frame-src': '{static} https://js.stripe.com',
|
||||||
'style-src': "{static}",
|
'style-src': "{static}",
|
||||||
'img-src': "{static} data: https://*.stripe.com",
|
'img-src': "{static} data: https://*.stripe.com",
|
||||||
'form-action': "{dynamic}",
|
# form-action is not only used to match on form actions, but also on URLs
|
||||||
|
# form-ations redirect to. In the context of e.g. payment providers or
|
||||||
|
# single-sign-on this can be nearly anything so we cannot really restrict
|
||||||
|
# this. However, we'll restrict it to HTTPS.
|
||||||
|
'form-action': "{dynamic} https:",
|
||||||
}
|
}
|
||||||
if 'Content-Security-Policy' in resp:
|
if 'Content-Security-Policy' in resp:
|
||||||
h.update(self._parse_csp(resp['Content-Security-Policy']))
|
h.update(self._parse_csp(resp['Content-Security-Policy']))
|
||||||
|
|||||||
Reference in New Issue
Block a user