Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
svg-use-it
Advanced tools
In many web projects there are browser lists including IE10 and 11 which sadly don't support SVG fragment identifiers on external resources.
This polyfill solves this problem by simply inlining the referenced shapes from the given file without user agent sniffing.
SVG gives us the ability to use instances of shapes which is pretty amazing for
icon libraries.
Just add a svg
tag to your markup with a use
tag as child and add your
resource's file path with the id hash of your desired shape like this:
<svg viewBox="0 0 64 64">
<!-- referencing id "menu" from "/path/to/my/icons.svg" -->
<use xlink:href="/path/to/my/icons.svg#menu"></use>
</svg>
Just import svgUseIt
into your script (which gets included at the bottom of
your HTML) or execute it on DOMContentLoaded
:
import svgUseIt from 'svg-use-it';
document.addEventListener('DOMContentLoaded', () => {
svgUseIt();
});
svgUseIt
takes two paramters:
Provide a root selector to search in <string>
.
body
You can pass an array of direct children of rootSelector to be ignored for replacement.
[]
Of course this polyfill should only do its job on browsers that don't support
fragment identifiers from external resources.
So I researched for a feature that could identify each IE except for MSEdge.
Due to the fact, that documentMode
is just supported in
Internet Explorer <= 11, we can use it here to detect support for external
fragments.
// false on all browsers except for IE <= 11
Boolean(document.documentMode);
FAQs
SVG use polyfill for IE10
The npm package svg-use-it receives a total of 69 weekly downloads. As such, svg-use-it popularity was classified as not popular.
We found that svg-use-it demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.