security - How can one implement Google-signin and CSP rejection of inline stylesheets? -


i'm trying enable content-security-policy header on website. have following header set:

content-security-policy:default-src 'self'; script-src 'self' https://apis.google.com/; font-src 'self' https://fonts.gstatic.com/; style-src 'self' https://fonts.googleapis.com/ 'sha256-w/8nelkjrtpkuufkfdnutwiyhlsvdjaxc+do5tqp/90='; child-src 'self' https://accounts.google.com/ 

this works great in firefox. hash in style-src section matches inline styles google-signin uses. problem is, per chromium bug 546106, hash ignored because it's on style, rather script. worse still, comments chrome/chromium developers believe correct behavior, , intended (that said, haven't set "wontfix" yet).

i don't want enable 'unsafe-inline' if don't have to.

is there way google-signin tell not use inline styling? there way?


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -