Socket
Socket
Sign inDemoInstall

rehype-sanitize

Package Overview
Dependencies
2
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rehype-sanitize

Sanitize HTML with rehype


Version published
Maintainers
1
Install size
35.0 kB
Created

Readme

Source

rehype-sanitize Build Status Coverage Status

Sanitise HTML with rehype.

Installation

npm:

npm install rehype-sanitize

Usage

Say we have the following file, index.html:

<div onmouseover="alert('alpha')">
  <a href="jAva script:alert('bravo')">delta</a>
  <img src="x" onerror="alert('charlie')">
  <iframe src="javascript:alert('delta')"></iframe>
  <math>
    <mi xlink:href="data:x,<script>alert('echo')</script>"></mi>
  </math>
</div>
<script>
require('child_process').spawn('rm', ['-r', '-f', process.env.HOME]);
</script>

And our script, example.js, looks as follows:

var fs = require('fs');
var rehype = require('rehype');
var merge = require('deepmerge');
var gh = require('hast-util-sanitize/lib/github');
var sanitize = require('rehype-sanitize');

var schema = merge(gh, {tagNames: ['math', 'mi']});

rehype()
  .data('settings', {fragment: true})
  .use(sanitize, schema)
  .process(fs.readFileSync('index.html'), function (err, file) {
    if (err) throw err;
    console.log(String(file));
  });

Now, running node example yields:

<div>
  <a>delta</a>
  <img src="x">

  <math>
    <mi></mi>
  </math>
</div>

API

rehype().use(sanitize[, schema])

Remove potentially dangerous things from HTML.

schema

The sanitation schema defines how and if nodes and properties should be cleaned. The schema is documented in hast-util-sanitize.

  • hast-util-sanitize — Core utility that does the sanitation

License

MIT © Titus Wormer

Keywords

FAQs

Last updated on 20 Jun 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc