app签名检测

This commit is contained in:
luzhisheng 2024-01-31 22:50:33 +08:00
parent 139c943788
commit afdae3d4ca
6 changed files with 3937 additions and 0 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,28 @@
f = Function;
Function = function (a) {
if (a !== 'debugger') {
return f(a)
}
};
Function.prototype.constructor_ = Function.prototype.constructor;
Function.prototype.constructor = function (x) {
if (x !== 'debugger') {
return Function.prototype.constructor_(x)
}
};
eval_ = eval;
eval = function (a) {
if (a == 'debugger') {
return ''
} else {
return eval_(a)
}
};
setInterval = function () {
};
console.log_ = console.log;

File diff suppressed because one or more lines are too long