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.
@journeyapps/domparser
Advanced tools
This is a pure JS implementation of DOM parsing, to be used instead of DOMParser in a browser. We use sax.js for the low-level parsing, and convert it to the browser's native Document object, or xmldom.
The built-in DOMParser in modern browsers should be sufficient for most use cases, and has very good performance. However, it does have some limitations:
This project aims to be a lightweight replacement for the built-in parser, with better error handling and position reporting.
const { DOMParser } = require('@journeyapps/domparser');
var doc = new DOMParser().parseFromString("<test>xml</test>");
Should work on any browser that supports ES6.
Tested on recent versions of Node, Chrome and Firefox.
When running in Node, a recent version of xmldom is required.
All files in this project are licensed under the MIT license.
FAQs
Basic XML DOM parsing
The npm package @journeyapps/domparser receives a total of 25,587 weekly downloads. As such, @journeyapps/domparser popularity was classified as popular.
We found that @journeyapps/domparser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.