Socket
Socket
Sign inDemoInstall

vue-html-secure

Package Overview
Dependencies
0
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vue-html-secure

Vue.js 2.x and 3.x plugin to add HTML secure directives v-html-remove, v-html-escape, v-html-safe


Version published
Weekly downloads
3.8K
decreased by-7.54%
Maintainers
1
Install size
10.9 kB
Created
Weekly downloads
 

Readme

Source

vue-html-secure

Vue.js plugin to add HTML secure directives v-html-remove, v-html-escape, v-html-safe which are secure alternatives to official v-html. Using official v-html can easily lead to XSS attacks and must be used on trusted content only and never on user-provided content. Most popular JavaScript libraries to sanitize HTML string are too huge (from several hundred KB to several MB) with lot of dependencies. This plugin is lightweight (only 2kB packed size) without dependency. The main feature is to secure HTML string to avoid XSS attacks such as <img src='' onerror=alert('XSS!')> or <a href="javascript:alert('XSS!')"></a>.

Install

To install with npm or yarn, use

npm install --save vue-html-secure

// or

yarn add vue-html-secure

Directives and functions

v-html-safe="..." or $safeHTML(...)

This leaves all HTML tags except for <script> and removes insecure elements's attributes starting "on*" and also values starting "javascript:*".

v-html-escape="..." or $escapeHTML(...)

This replaces chars <, >, $ to appropriate HTML entities &lt;, &gt;, &amp;. This does not escape single or double quotes for string usage in HTML attribute (it is not aim of this plugin to do that). Note that in case v-html-escape you can directly use official v-text, but using function can have sense e.g. message : 'My <b>secure part</b> and user-provided insecure part: ' + this.$escapeHTML(...).

v-html-remove="..." or $removeHTML(...)

This removes all HTML tags but preserves it's text content.

Usage

////////// JS for Vue 2.x \\\\\\\\\\

import Vue from 'vue';
import VueSecureHTML from 'vue-html-secure';

Vue.use(VueSecureHTML);

// Optional
// Vue.prototype.$safeHTML = VueSecureHTML.safeHTML;
// Vue.prototype.$escapeHTML = VueSecureHTML.escapeHTML;
// Vue.prototype.$removeHTML = VueSecureHTML.removeHTML;

const App = new Vue({
    el: '#app',
    data() {
        return {
            message : "Hello <img src='' onerror=alert('XSS!')> VUE",
        }
    },
});
////////// JS for Vue 3.x \\\\\\\\\\

import * as Vue from 'vue';
import VueSecureHTML from 'vue-html-secure';

const App = Vue.createApp({
    data() {
        return {
            message : "Hello <img src='' onerror=alert('XSS!')> VUE",
        }
    },
});

// Optional
App.config.globalProperties.$safeHTML = VueSecureHTML.safeHTML;
App.config.globalProperties.$escapeHTML = VueSecureHTML.escapeHTML;
App.config.globalProperties.$removeHTML = VueSecureHTML.removeHTML;

App.use(VueSecureHTML);
App.mount('#app');

Example 01

<div v-html-safe="message"></div>>
<div v-html-escape="message"></div>
<div v-html-remove="message"></div>

Example 02

<div>{{ $safeHTML(message) }}</div>
<div>{{ $escapeHTML(message) }}</div>
<div>{{ $removeHTML(message) }}</div>

Example 03

new Vue({ // or Vue.createApp({
    data() {
        return {
            message : 'My <b>secure part</b> and user-provided insecure part: ' +
                       this.$escapeHTML("<h1>Foo</h1>"),
        }
    },
});
<!-- note official v-html here -->
<div v-html="message"></div>

Note 1: This is for Vue.js 2.x and Vue.js 3.x.

Note 2: In future releases will be added whitelist and blacklist of HTML tags.

Keywords

FAQs

Last updated on 31 Aug 2022

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