
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
libxml.wasm
Advanced tools
[Demo](https://libxmlwasm.github.io/)
npm install libxml.wasm
Alternatively, you can install from GitHub Package Registry
# Build also libraries
docker compose up ci
# Build only bindings
docker compose up wasm
import init from "libxml.wasm"
// or "libxml.wasm/esm", "libxml.wasm/cjs"
const libxml = await init()
const html = `
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<div class="container">
<h1 class="title">Hello world</h1>
<p>Text</p>
</div>
</body>
</html>
`.trim()
const doc = libxml.parseHTML(html) // Create a document
const nodes = doc.getNode("//div/h1") // Get a node by xpath
const h1 = nodes[0] // Get the first node
console.log(h1.name) // "h1"
console.log(h1.content) // "Hello world"
console.log(h1.attr.class) // "title"
FAQs
## Build
The npm package libxml.wasm receives a total of 69 weekly downloads. As such, libxml.wasm popularity was classified as not popular.
We found that libxml.wasm demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.