Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
head-picker
Advanced tools
Extract heading elements from HTML string.
With npm do:
npm install head-picker
Input file:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>title</title>
</head>
<body>
<h1>Heading1</h1>
<h2>Heading2</h2>
<h3>Heading3</h3>
<h4>Heading4</h4>
<h5>Heading5</h5>
<h6>Heading6</h6>
</body>
</html>
Script example:
var fs = require('fs');
var hp = require('head-picker');
fs.readFile('./sample.html', 'utf8', function(err, data){
if (err) throw err
var obj = hp(data);
console.log(obj);
});
This returns a object with two properties:
{ toc:
[ { title: 'Heading1', tag: 'h1', rank: 1, id: 'toc_index_0' },
{ title: 'Heading2', tag: 'h2', rank: 2, id: 'toc_index_1' },
{ title: 'Heading3', tag: 'h3', rank: 3, id: 'toc_index_2' },
{ title: 'Heading4', tag: 'h4', rank: 4, id: 'toc_index_3' },
{ title: 'Heading5', tag: 'h5', rank: 5, id: 'toc_index_4' },
{ title: 'Heading6', tag: 'h6', rank: 6, id: 'toc_index_5' } ],
contents: '<!DOCTYPE html>\n<html>\n<head>\n<meta charset="utf-8">\n<meta http-equiv="X-UA-Compatible" content="IE=edge">\n<title>title</title>\n<link rel="stylesheet" href="">\n</head>\n<body>\n<h1 id="toc_index_0">Heading1</h1>\n<h2 id="toc_index_1">Heading2</h2>\n<h3 id="toc_index_2">Heading3</h3>\n<h4 id="toc_index_3">Heading4</h4>\n<h5 id="toc_index_4">Heading5</h5>\n<h6 id="toc_index_5">Heading6</h6>\n</body>\n</html>' }
FAQs
Extract heading elements from HTML string.
We found that head-picker 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 researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.