This commit is contained in:
cilame 2021-09-28 23:49:40 +08:00
parent 62c2f8f44a
commit 97bd1c4101
2 changed files with 3 additions and 3 deletions

View File

@ -54,7 +54,7 @@
<br/> <br/>
<div>AST解密混淆</div> <div>AST解密混淆</div>
<button id='ob'>解密ob混淆</button> <button id='sojson'>解密sojson混淆</button>
<button id='obnormal'>普通解混淆</button> <button id='obnormal'>普通解混淆</button>
<button id='uglify'>仅变量压缩</button> <button id='uglify'>仅变量压缩</button>
<button id='uglify_mini'>完全压缩脚本</button> <button id='uglify_mini'>完全压缩脚本</button>

View File

@ -1,11 +1,11 @@
var obtn = document.getElementById('ob') var sojsontn = document.getElementById('sojson')
var obnormalbtn = document.getElementById('obnormal') var obnormalbtn = document.getElementById('obnormal')
var uglifybtn = document.getElementById('uglify') var uglifybtn = document.getElementById('uglify')
var uglify_minibtn = document.getElementById('uglify_mini') var uglify_minibtn = document.getElementById('uglify_mini')
var txt = document.getElementById('txt') var txt = document.getElementById('txt')
obtn.addEventListener('click', function(e){ sojsontn.addEventListener('click', function(e){
try{ try{
txt.value = muti_process_obdefusion(txt.value) txt.value = muti_process_obdefusion(txt.value)
}catch(e){ }catch(e){