Socket
Socket
Sign inDemoInstall

broccoli-sri-hash

Package Overview
Dependencies
31
Maintainers
3
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    broccoli-sri-hash

Generates SRI hashes for html files


Version published
Weekly downloads
99K
decreased by-1.23%
Maintainers
3
Install size
1.61 MB
Created
Weekly downloads
 

Readme

Source

SRI for broccoli

build status build status npm status dependency status

This plugin looks at an apps html files to rewrite their content with integrity attributes.

Options

  • origin - if crossorigin isn't specified but prepend is it will add an integrity if prepend starts with origin
  • crossorigin - adds a crossorigin attribute to script and link elements
    • This is required for CORS resources values are:
      • use-credentials
      • anonymous
  • prepend - resources with a full path will only get an applied integrity if the md5 checksum passes
  • paranoiaCheck - false by default, if enabled turns off the integrity attribute if any Unicode is found within the file
  • fingerprintCheck - true by default, if enabled validates the computed md5 checksum against the fingerprint

Example

var sriTree = sri('path/to/code', {
  prefix: 'https://example.com/',
  crossorigin: 'anonymous'
});

'paranoiaCheck'

There was an encoding issue based on certain characters which is landed in Chrome 46 when using Chrome. This check fails if there is any non ASCII characters. On failure the file won't have a integrity attribute added. Please note this will be removed as a default in the future; with the desire to remove all of the checking code too.

'fingerprintCheck'

If your assets change between the time they are fingerprinted and the time they are processed for SRI, you most likely want to disable this check. The canonical example is if an asset contains a link to a secondary asset and is rewritten to adjust the link after fingerprinting the second asset, rendering the fingerprint invalid (for anything more than a useful unique identifier).

FAQs

Last updated on 26 Mar 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc