fix(README): issue #137 xss.js URL

This commit is contained in:
Zongmin Lei
2018-05-24 15:20:02 +08:00
parent 123a5a7d30
commit 5647790cfb
2 changed files with 8 additions and 4 deletions

View File

@@ -97,7 +97,7 @@ console.log(html);
Shim mode (reference file `test/test.html`): Shim mode (reference file `test/test.html`):
```html ```html
<script src="https://raw.github.com/leizongmin/js-xss/master/dist/xss.js"></script> <script src="https://rawgit.com/leizongmin/js-xss/master/dist/xss.js"></script>
<script> <script>
// apply function filterXSS in the same way // apply function filterXSS in the same way
var html = filterXSS('<script>alert("xss");</scr' + 'ipt>'); var html = filterXSS('<script>alert("xss");</scr' + 'ipt>');
@@ -112,7 +112,7 @@ AMD mode - shim:
require.config({ require.config({
baseUrl: './', baseUrl: './',
paths: { paths: {
xss: 'https://raw.github.com/leizongmin/js-xss/master/dist/xss.js' xss: 'https://rawgit.com/leizongmin/js-xss/master/dist/xss.js'
}, },
shim: { shim: {
xss: {exports: 'filterXSS'} xss: {exports: 'filterXSS'}
@@ -125,6 +125,8 @@ require(['xss'], function (xss) {
</script> </script>
``` ```
**Notes: please don't use the URL https://rawgit.com/leizongmin/js-xss/master/dist/xss.js in production environment.**
## Command Line Tool ## Command Line Tool
### Process File ### Process File

View File

@@ -90,7 +90,7 @@ console.log(html);
Shim 模式(参考文件 `test/test.html`: Shim 模式(参考文件 `test/test.html`:
```html ```html
<script src="https://raw.github.com/leizongmin/js-xss/master/dist/xss.js"></script> <script src="https://rawgit.com/leizongmin/js-xss/master/dist/xss.js"></script>
<script> <script>
// 使用函数名 filterXSS用法一样 // 使用函数名 filterXSS用法一样
var html = filterXSS('<script>alert("xss");</scr' + 'ipt>'); var html = filterXSS('<script>alert("xss");</scr' + 'ipt>');
@@ -105,7 +105,7 @@ AMD 模式(参考文件 `test/test_amd.html`:
require.config({ require.config({
baseUrl: './', baseUrl: './',
paths: { paths: {
xss: 'https://raw.github.com/leizongmin/js-xss/master/dist/xss.js' xss: 'https://rawgit.com/leizongmin/js-xss/master/dist/xss.js'
}, },
shim: { shim: {
xss: {exports: 'filterXSS'} xss: {exports: 'filterXSS'}
@@ -118,6 +118,8 @@ require(['xss'], function (xss) {
</script> </script>
``` ```
**说明:请勿将 URL https://rawgit.com/leizongmin/js-xss/master/dist/xss.js 用于生产环境。**
### 使用命令行工具来对文件进行 XSS 处理 ### 使用命令行工具来对文件进行 XSS 处理
### 处理文件 ### 处理文件