mirror of
https://github.com/whitechi73/OpenShamrock.git
synced 2024-08-14 13:12:17 +08:00
Shamrock
: 优化检测逻辑
This commit is contained in:
parent
adb7b12c16
commit
37f74d5284
@ -96,7 +96,14 @@ FILE* fake_fopen(const char *filename, const char *mode) {
|
||||
LOGI("[Shamrock] bypass emu detection");
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
if (strstr(filename, "libndk.so")) {
|
||||
LOGI("[Shamrock] bypass emu detection");
|
||||
return nullptr;
|
||||
}
|
||||
if (strstr(filename, "libdobby.so")) {
|
||||
LOGI("[Shamrock] bypass dobby detection");
|
||||
return nullptr;
|
||||
}
|
||||
return backup_fopen(filename, mode);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user