javascript-obfuscator / javascript-obfuscator/gulp-javascript-obfuscator
Obfuscating going wrong - Not same result always
- 主要語言
- JavaScript
- 星號
- 103
- 分支
- 37
- PR 合併指標
- 30 天內沒有已合併 PR
描述
node --version
v10.16.3
"gulp-concat": "~2.3.3",
"gulp-preprocess": "^1.2.0",
"gulp-javascript-obfuscator": "^1.1.2",
The following gulp code is used:
```
var preprocess = require('gulp-preprocess'),
concat = require('gulp-concat'),
javascriptobfuscator = require('gulp-javascript-obfuscator');
gulp.task('app', function() {
return gulp.src('./js/app.js')
.pipe(preprocess({
context: {
HOST: host,
VER: ver
}
}))
.pipe(concat('app.js'))
.pipe(javascriptobfuscator({
reservedStrings:['loadScript','loadCss']
}))
.pipe( gulp.dest('dist/target/js'));
});
```
The following code:
`if(index < scriptFiles.length-1)`
is converted to:
` if (_0x219af0 < _0x441e3a[_0x56ae('0xf')] - 0x1)`
If I step through in Chrome Browser, __0x56ae('0xf')_ is incorrectly equated as '_style_' instead of '_length_'.
If I build it again, it goes fine.
So, it is intermittent. Can somebody point if I am doing anything wrong?
貢獻指南
這個儲存庫沒有索引到貢獻指南
研究方向
從所示的 gulp 任務開始,特別檢查輸入 ./js/app.js 和產生的 dist/target/js/app.js,接著反覆執行 build,並在 Chrome 中比較混淆後的輸出。完成的標準是,重複 build 時始終能正確映射 length 屬性,而不是間歇性地產生 style 映射。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- javascript
- 領域
- build-system
- Issue 類型
- 缺陷
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 需要釐清
- 新手友好度
- 35/100