$ npm install @hint/hint-sri
sri
)sri
warns about requesting scripts or stylesheets without using
subresource integrity.
A common practice in modern web development is to use third party resources from CDNs or different services (analytics, ads, etc.). However, doing so can increase the attack surface of your web site/app.
While there are techniques to verify the agent is talking with the right server (TLS, HSTS, etc.), an attacker (or administrator) with access to the server can manipulate the content with impunity.
If you want to load a crypto miner on 1,000+ websites you don't attack 1,000+ websites, you attack the 1 website that they all load content from. (Scott Helme)
Subresource integrity is a standard that mitigates this by ensuring that an exact representation of a resource, and only that representation, loads and executes.
This hint checks that a website correctly uses SRI, more specifically:
<script>
or
<link rel="stylesheet">
have an integrity
attribute.integrity
attribute needs to be valid. I.e.:
it should contain something in the form of sha(256|384|512)-HASH
,
where HASH
is the hashed value of the downloaded body's response
using the previously specified algorithm (sha256
, sha384
, or
sha512
).sha384
.
If multiple ones are provided, the highest one will be used to
determine if the baseline is met.<script>
or <link>
tag needs to have a
valid crossorigin
attribute.integrity
attribute needs to be the same as
the one calculated using the response's body.Cross-origin resource with no crossorigin
attribute:
<script src="https://example.com/example-framework.js"
integrity="sha384-Li9vy3DqF8tnTXuiaAJuML3ky+er10rcgNR/VqsVpcw+ThHmYcwiB1pbOxEbzJr7">
</script>
Cross-origin resource with invalid crossorigin
attribute:
<script src="https://example.com/example-framework.js"
integrity="sha384-Li9vy3DqF8tnTXuiaAJuML3ky+er10rcgNR/VqsVpcw+ThHmYcwiB1pbOxEbzJr7"
crossorigin="invalid">
</script>
Cross-origin resource loaded over HTTP
:
<script src="http://example.com/example-framework.js"
integrity="sha384-Li9vy3DqF8tnTXuiaAJuML3ky+er10rcgNR/VqsVpcw+ThHmYcwiB1pbOxEbzJr7"
crossorigin="invalid">
</script>
Same-origin resource with no integrity
and originCriteria
set to all
:
<link rel="stylesheet" href="/style.css">
Cross-origin resource with multiple hashes and sha384
is one of them:
<script src="https://example.com/script.js"
integrity="sha256-validHashHere
sha384-validHashHere">
</script>
Cross-origin resource with valid crossorigin
attribute:
<script src="https://example.com/example-framework.js"
integrity="sha384-Li9vy3DqF8tnTXuiaAJuML3ky+er10rcgNR/VqsVpcw+ThHmYcwiB1pbOxEbzJr7"
crossorigin="anonymous">
</script>
Yes, you can define the baseline algorithm and the origin of the resources to analyze.
By default the baseline algorithm is sha384
but you can
change it to sha256
, or sha512
by specifying that in the
.hintrc
file:
{
"connector": {...},
"formatters": [...],
"hints": {
"sri": ["warning", {
"baseline": "sha512"
}],
...
},
...
}
The above will validate that the integrity
of all scripts and
styles use sha512
.
By default, this hint will analyze only resources with a different origin.
To change this behavior you will have to set the originCriteria
property
to one of the following:
all
: All resources will be analyzedcrossOrigin
: Only cross-origin resources will be analyzedThe following will analyze all the resources:
{
"connector": {...},
"formatters": [...],
"hints": {
"sri": ["warning", {
"originCriteria": "all"
}],
...
},
...
}
This package is installed automatically by webhint:
npm install hint --save-dev
To use it, activate it via the .hintrc
configuration file:
{
"connector": {...},
"formatters": [...],
"hints": {
"sri": "error",
...
},
"parsers": [...],
...
}
Note: The recommended way of running webhint is as a devDependency
of
your project.
© 2010 - cnpmjs.org x YWFE | Home | YWFE