代码混淆
This commit is contained in:
17
obfuscator.config.js
Normal file
17
obfuscator.config.js
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
module.exports = {
|
||||||
|
compact: true,//压缩代码
|
||||||
|
controlFlowFlattening: false,//是否启用控制流扁平化(降低1.5倍的运行速度)
|
||||||
|
deadCodeInjection: false,///随机的死代码块(增加了混淆代码的大小)
|
||||||
|
debugProtection: false,//此选项几乎不可能使用开发者工具的控制台选项卡
|
||||||
|
debugProtectionInterval: false,//如果选中,则会在“控制台”选项卡上使用间隔强制调试模式,从而更难使用“开发人员工具”的其他功能。
|
||||||
|
disableConsoleOutput: true,//通过用空函数替换它们来禁用console.log,console.info,console.error和console.warn。这使得调试器的使用更加困难。
|
||||||
|
identifierNamesGenerator: 'hexadecimal',//标识符的混淆方式 hexadecimal(十六进制) mangled(短标识符)
|
||||||
|
log: false,
|
||||||
|
renameGlobals: false,//是否启用全局变量和函数名称的混淆
|
||||||
|
rotateStringArray: true,//通过固定和随机(在代码混淆时生成)的位置移动数组。这使得将删除的字符串的顺序与其原始位置相匹配变得更加困难。如果原始源代码不小,建议使用此选项,因为辅助函数可以引起注意。
|
||||||
|
selfDefending: true,//混淆后的代码,不能使用代码美化,同时需要配置 cpmpat:true;
|
||||||
|
stringArray: true,//删除字符串文字并将它们放在一个特殊的数组中
|
||||||
|
stringArrayEncoding: ['base64'], // 重要
|
||||||
|
stringArrayThreshold: 0.75,
|
||||||
|
unicodeEscapeSequence: false//允许启用/禁用字符串转换为unicode转义序列。Unicode转义序列大大增加了代码大小,并且可以轻松地将字符串恢复为原始视图。建议仅对小型源代码启用此选项。
|
||||||
|
}
|
||||||
@@ -28,10 +28,12 @@
|
|||||||
"@vue/cli-service": "~5.0.0",
|
"@vue/cli-service": "~5.0.0",
|
||||||
"eslint": "^7.32.0",
|
"eslint": "^7.32.0",
|
||||||
"eslint-plugin-vue": "^8.0.3",
|
"eslint-plugin-vue": "^8.0.3",
|
||||||
|
"javascript-obfuscator": "2.6.0",
|
||||||
"sass": "^1.62.1",
|
"sass": "^1.62.1",
|
||||||
"sass-loader": "7.2.0",
|
"sass-loader": "7.2.0",
|
||||||
"vue-cli-plugin-chrome-extension-cli": "~1.1.4",
|
"vue-cli-plugin-chrome-extension-cli": "~1.1.4",
|
||||||
"vue-template-compiler": "^2.6.14"
|
"vue-template-compiler": "^2.6.14",
|
||||||
|
"webpack-obfuscator": "2.6.0"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
const path = require('path')
|
const path = require('path')
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
|
const JavaScriptObfuscator = require('webpack-obfuscator')
|
||||||
|
const obfuscateConfig = require('./obfuscator.config')
|
||||||
|
|
||||||
// Generate pages object
|
// Generate pages object
|
||||||
const pages = {}
|
const pages = {}
|
||||||
@@ -69,7 +71,12 @@ module.exports = {
|
|||||||
filename: `[name].js`,
|
filename: `[name].js`,
|
||||||
chunkFilename: `[name].js`
|
chunkFilename: `[name].js`
|
||||||
},
|
},
|
||||||
devtool: isDevMode ? 'inline-source-map' : false
|
devtool: isDevMode ? 'inline-source-map' : false,
|
||||||
|
plugins: [
|
||||||
|
new JavaScriptObfuscator({
|
||||||
|
rotateStringArray: true,
|
||||||
|
}, [])
|
||||||
|
]
|
||||||
},
|
},
|
||||||
css: {
|
css: {
|
||||||
extract: false // Make sure the css is the same
|
extract: false // Make sure the css is the same
|
||||||
|
|||||||
Reference in New Issue
Block a user