Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding blob: as source to CSP header #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,11 @@ <h2 id="source_list">Source List Reference</h2>
<td><code>img-src 'self' data:</code></td>
<td>Allows loading resources via the data scheme (eg Base64 encoded images).</td>
</tr>
<tr>
<td><code>'blob:'</code></td>
<td><code>object-src blob:</code></td>
<td>Allows loading and saving resources on the client's file system</td>
</tr>
<tr>
<td><code><em><span class="hidden-xs">domain.</span>example.com</em></code></td>
<td><code>img-src <span class="hidden-xs">domain.</span>example.com</code></td>
Expand Down Expand Up @@ -384,7 +389,6 @@ <h2 id="source_list">Source List Reference</h2>
<td><a href="/unsafe-hashes/" title="CSP unsafe-hashes"><code>'unsafe-hashes'</code></a></td>
<td><code>script-src 'unsafe-hashes' 'sha256-abc...'</code></td>
<td>Allows you to enable scripts in event handlers (eg <code>onclick</code>). Does not apply to <code>javascript:</code> or inline <code>&lt;script&gt;</code> <span class="label label-success">CSP Level 3</span> </td>

</tr>
</tbody>
</table>
Expand Down