1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
| (function() { 'use strict'; const DEBUG = { enable: 1, deb: 1 };
const log = function(...args) { if (DEBUG.enable == 0) { console.log(...args); } };
var originalSetInterval = window.setInterval;
window.setInterval = function(callback, delay) { var args = Array.prototype.slice.call(arguments, 2);
if (typeof callback === 'string') { callback = callback.replace(/debugger;/g, ''); } else if (typeof callback === 'function') { var originalCallback = callback; callback = function() { var callbackSource = originalCallback.toString();
if (callbackSource.indexOf('debugger') !== -1) { callbackSource = callbackSource.replace(/debugger;/g, ''); originalCallback = new Function('return ' + callbackSource)(); }
originalCallback.apply(this, arguments); }; }
return originalSetInterval.apply(window, [callback, delay].concat(args)); } var temp_eval = eval; var temp_toString = Function.prototype.toString; Function.prototype.toString = function() { if (this === eval) { return 'function eval() { [native code] }'; } else if (this === Function) { return 'function Function() { [native code] }'; } else if (this === Function.prototype.toString) { return 'function toString() { [native code] }'; } else if (this === window.setInterval) { return 'function setInterval() { [native code] }'; } return temp_toString.apply(this, arguments); }
window.eval = function() { const stackTrace = new Error().stack; const callLocation = stackTrace; log(callLocation); if (DEBUG.deb == 0) { debugger; } log("=============== eval end ===============");
if (typeof arguments[0] == "string") { var temp_length = arguments[0].match(/debugger/g); if (temp_length != null) { temp_length = temp_length.length; var reg = /debugger/; while (temp_length) { arguments[0] = arguments[0].replace(reg, ""); temp_length--; } } } return temp_eval(...arguments); }
var _debugger = Function; Function = function() { const stackTrace = new Error().stack; const callLocation = stackTrace; log(callLocation); if (DEBUG.deb == 0) { debugger; } log("=============== Function end ===============");
var reg = /debugger/; for (var i = 0; i < arguments.length; i++) { if (typeof arguments[i] == "string") { var temp_length = arguments[i].match(/debugger/g); if (temp_length != null) { temp_length = temp_length.length; while (temp_length) { arguments[i] = arguments[i].replace(reg, ""); temp_length--; } } } } return _debugger(...arguments); }
Function.prototype = _debugger.prototype;
Function.prototype.constructor = function() { const stackTrace = new Error().stack; const callLocation = stackTrace; log(callLocation); if (DEBUG.deb == 0) { debugger; } log("=============== Function constructor end ===============");
var reg = /debugger/; for (var i = 0; i < arguments.length; i++) { if (typeof arguments[i] == "string") { var temp_length = arguments[i].match(/debugger/g); if (temp_length != null) { temp_length = temp_length.length; while (temp_length) { arguments[i] = arguments[i].replace(reg, ""); temp_length--; } } } } return _debugger(...arguments); }
Function.prototype.constructor.prototype = Function.prototype; })();
|