-
-
Notifications
You must be signed in to change notification settings - Fork 28
Description
From the support forums:
https://wordpress.org/support/topic/honeypot-textarea-visible-with-strict-csp-header/
With a strict content security policy the inline CSS of the honeypot is ignored by the browser and the textarea becomes visible. This is the case for example with this HTTP header:
Content-Security-Policy: default-src 'self';
As a workaround I have moved the inline CSS to an external css file:
/* Antispam-Bee */
textarea#comment {
padding: 0 !important;
clip: rect(1px, 1px, 1px, 1px) !important;
position: absolute !important;
white-space: nowrap !important;
height: 1px !important;
width: 1px !important;
overflow: hidden !important;
}Maybe the Antispam Plugin could itself include such a CSS file (additionally to the inline CSS) so the honeypit textarea remains hidden with a strict CSP header?
More context:
https://content-security-policy.com/examples/allow-inline-style/
It looks like the only way is to allow "unsafe-inline" which would be decremental to security. Adding hashes or nonces would need a connection between our code and the CSP implementation which is not available.
Adding a CSS file would indeed fix this issue.
Thoughts?