Content-Security-Policy and Base 64 Images

Not too long ago I started to add some additional security headers to the sites I build. I started doing this on my own site to explore new techniques, but then started to like the idea and a little extra security doesn’t hurt.
A problem that I have r…


This content originally appeared on foobartel.com :: Stream and was authored by foobartel.com :: Stream

Not too long ago I started to add some additional security headers to the sites I build. I started doing this on my own site to explore new techniques, but then started to like the idea and a little extra security doesn't hurt.

A problem that I have ran into: When using base64 encoded images in your code and you want to add a Content-Security-Policy (CSP), the image-src directive in the header needs a little extra instruction. It's not enough to declare self or unsafe-inline. Instead, for base64-encoded images, its "scheme" must be allowed.

data:image/png;base64,iVBORw0KGgoAAAANSUhEU…

The data: part in the above is called the scheme, which is similar to a better known scheme like https:. By using this scheme, it needs to be declared in the CSP. It's important to notice that the colon needs to be included, otherwise it won't work.

img-src 'self' data:;

The reason for this little awkwardness is that it's otherwise difficult to distinguish between a 'data' scheme, and a host named 'data'. You can find some more details in the spec.


This content originally appeared on foobartel.com :: Stream and was authored by foobartel.com :: Stream


Print Share Comment Cite Upload Translate Updates
APA

foobartel.com :: Stream | Sciencx (2019-05-30T22:00:00+00:00) Content-Security-Policy and Base 64 Images. Retrieved from https://www.scien.cx/2019/05/30/content-security-policy-and-base-64-images/

MLA
" » Content-Security-Policy and Base 64 Images." foobartel.com :: Stream | Sciencx - Thursday May 30, 2019, https://www.scien.cx/2019/05/30/content-security-policy-and-base-64-images/
HARVARD
foobartel.com :: Stream | Sciencx Thursday May 30, 2019 » Content-Security-Policy and Base 64 Images., viewed ,<https://www.scien.cx/2019/05/30/content-security-policy-and-base-64-images/>
VANCOUVER
foobartel.com :: Stream | Sciencx - » Content-Security-Policy and Base 64 Images. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2019/05/30/content-security-policy-and-base-64-images/
CHICAGO
" » Content-Security-Policy and Base 64 Images." foobartel.com :: Stream | Sciencx - Accessed . https://www.scien.cx/2019/05/30/content-security-policy-and-base-64-images/
IEEE
" » Content-Security-Policy and Base 64 Images." foobartel.com :: Stream | Sciencx [Online]. Available: https://www.scien.cx/2019/05/30/content-security-policy-and-base-64-images/. [Accessed: ]
rf:citation
» Content-Security-Policy and Base 64 Images | foobartel.com :: Stream | Sciencx | https://www.scien.cx/2019/05/30/content-security-policy-and-base-64-images/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.