您当前的位置:首页 > 计算机 > 编程开发 > JavaScript

js反爬中如何如何处理无限debugger

时间:04-09来源:作者:点击数:

有时候在爬取网站时,遇到无限debugger的情况,一种是constructor中的debugger,还有一种是eval中的debugger。可以通过hook的方式绕过无限debugger


// 处理eval中无限debugger
var eval_ = window.eval;
window.eval = function (){
    let can = arguments[0]
    if(can.indexof("debugger")){
        return;
    }else{
        eval_.apply(window, arguments)  // window.eval  
    }
}

// 处理constructor
// 1. 记录一下之前的Function.prototype.constructor
var xxxx = Function.prototype.construct

// 2. 给Function.prototype.constructor 设置一个新的功能
Function.prototype.construct = function (){
    // 3. 判断参数是否包含debugger
    if(arguments[0] === 'debugger'){
        return // 4. 如果是debugger就不构建函数
    }else{
        // 5. 如果不是debugger,需要放行,继续执行原来的操作
        return xxxx.apply(this, arguments) // 只能用apply
    }
}
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门