mirror of
https://git.mirrors.martin98.com/https://github.com/cilame/v_jstools
synced 2025-08-14 05:26:04 +08:00
add
This commit is contained in:
parent
9d79cfcee7
commit
b62e8431b6
@ -33085,6 +33085,14 @@ function del_ob_extra(ast){
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -33125,8 +33133,6 @@ function v_Call1(path){
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -33213,10 +33219,10 @@ function muti_process_obdefusion(jscode){
|
||||
return code;
|
||||
}
|
||||
|
||||
function muti_process_jsfuckdefusion(jscode){
|
||||
function muti_process_force_eval(jscode){
|
||||
var ast = parser.parse(jscode);
|
||||
while (1){
|
||||
if (location.href.indexOf('http') != 0){ // 处理你的脚本运行在插件时的问题
|
||||
if (typeof location !== 'undefined' && location.href.indexOf('http') != 0){ // 处理你的脚本运行在插件时的问题
|
||||
var _Function = Function
|
||||
Object.defineProperty(Function.prototype, 'constructor', {
|
||||
value: function() {
|
||||
@ -33229,7 +33235,7 @@ function muti_process_jsfuckdefusion(jscode){
|
||||
traverse(ast, {BinaryExpression: v_Binary1,})
|
||||
traverse(ast, {MemberExpression: v_Member1,})
|
||||
traverse(ast, {CallExpression: v_Call1,})
|
||||
if (location.href.indexOf('http') != 0){
|
||||
if (typeof location !== 'undefined' && location.href.indexOf('http') != 0){
|
||||
Object.defineProperty(Function.prototype, 'constructor', { value: _Function })
|
||||
}
|
||||
if (jsfuck_toggle == 0){ break }else{ jsfuck_toggle = 0 }
|
||||
|
Loading…
x
Reference in New Issue
Block a user