mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-01-19 03:22:39 +02:00
commit
931fd3db07
@ -17,6 +17,13 @@ public final class EntryPoint {
|
||||
|
||||
static {
|
||||
try {
|
||||
spoofProvider();
|
||||
} catch (Throwable t) {
|
||||
LOG("spoofProvider exception: " + t);
|
||||
}
|
||||
}
|
||||
|
||||
private static void spoofProvider() throws Exception {
|
||||
KeyStore keyStore = KeyStore.getInstance("AndroidKeyStore");
|
||||
keyStore.load(null);
|
||||
|
||||
@ -33,21 +40,15 @@ public final class EntryPoint {
|
||||
Security.insertProviderAt(customProvider, 1);
|
||||
|
||||
LOG("Spoof KeyStoreSpi and Provider done!");
|
||||
|
||||
} catch (Throwable t) {
|
||||
LOG("spoofProvider exception: " + t);
|
||||
}
|
||||
}
|
||||
|
||||
public static void init(String json) {
|
||||
|
||||
try {
|
||||
jsonObject = new JSONObject(json);
|
||||
spoofDevice();
|
||||
} catch (JSONException e) {
|
||||
LOG("Couldn't parse JSON from Zygisk");
|
||||
}
|
||||
|
||||
spoofDevice();
|
||||
}
|
||||
|
||||
static void LOG(String msg) {
|
||||
@ -69,6 +70,26 @@ public final class EntryPoint {
|
||||
|
||||
if (value instanceof String str) if (str.isEmpty() || str.isBlank()) return;
|
||||
|
||||
Field field = getField(name);
|
||||
|
||||
if (field == null) return;
|
||||
|
||||
field.setAccessible(true);
|
||||
try {
|
||||
Object oldValue = field.get(null);
|
||||
|
||||
if (!value.equals(oldValue)) {
|
||||
field.set(null, value);
|
||||
LOG("Set [" + name + "] field value to [" + value + "]");
|
||||
}
|
||||
|
||||
} catch (IllegalAccessException e) {
|
||||
LOG("Couldn't modify field: " + e);
|
||||
}
|
||||
field.setAccessible(false);
|
||||
}
|
||||
|
||||
private static Field getField(String name) {
|
||||
Field field = null;
|
||||
|
||||
try {
|
||||
@ -81,22 +102,6 @@ public final class EntryPoint {
|
||||
}
|
||||
}
|
||||
|
||||
if (field == null) return;
|
||||
|
||||
field.setAccessible(true);
|
||||
try {
|
||||
|
||||
Object oldValue = field.get(null);
|
||||
|
||||
if (!value.equals(oldValue)) {
|
||||
|
||||
field.set(null, value);
|
||||
LOG("Set [" + name + "] field value to [" + value + "]");
|
||||
}
|
||||
|
||||
} catch (IllegalAccessException e) {
|
||||
LOG("Couldn't modify field: " + e);
|
||||
}
|
||||
field.setAccessible(false);
|
||||
return field;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user