Socket
Book a DemoInstallSign in
Socket

markdown-it-xss

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-it-xss

A markdown-it plugin to make your render content more secure

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

markdown-it-xss

English Doc

基于@leizongmin/js-xss的markdown-it插件封装

install

npm install -S markdown-it-xss

use

BASE

const md = require('markdown-it')({ html: true })
            .use(require('markdown-it-xss'),{
                xss:{
                     escapeHtml(html) {
                           return html
                     },
                }
            });

md.render(`<img onerror="alert('xss')" src="1">`); // => '<img>'

Advanced

你也可以自己配置过滤规则,详见xss

const md = require('markdown-it')({ html: true })
            .use(require('markdown-it-xss'),{
                xss:function(xss){  // xss = require('xss')
                   return{
                       whiteList: Object.assign({}, xss.getDefaultWhiteList(), {
                               img: ['onerror','src'],
                           }),
                       css: {
                           whiteList: Object.assign({}, xss.getDefaultCSSWhiteList(), {}),
                       },
                       escapeHtml(html) {
                           return html
                       },
                   }
                }
                //or
                // xss:{...options}
            });

md.render(`<img onerror="alert('xss')" src="1">`); // => '<img onerror="alert('xss')" src="1">'

Keywords

markdown-it-plugin

FAQs

Package last updated on 20 Apr 2020

Did you know?

Socket

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.