Primer paso de la investigacion. Se aportan el .apk, las carpetas con el apk extraido y el apk descompilado. El archivo API_DOCUMENTATION.md es un archivo donde se anotaran los descubrimientos del funcionamiento de la API, y los .py son scripts para probar la funcionalidad de la API con los métodos que vayamos encontrando. Finalmente, los archivos .js son scripts de Frida para extraer informacion de la APP durante la ejecucion.
This commit is contained in:
73
apk_decompiled/sources/S2/h.java
Normal file
73
apk_decompiled/sources/S2/h.java
Normal file
@@ -0,0 +1,73 @@
|
||||
package S2;
|
||||
|
||||
import C.w;
|
||||
import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class h implements Q2.m, Cloneable {
|
||||
|
||||
/* renamed from: c, reason: collision with root package name */
|
||||
public static final h f1597c;
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public List f1598a;
|
||||
|
||||
/* renamed from: b, reason: collision with root package name */
|
||||
public List f1599b;
|
||||
|
||||
/* JADX WARN: Type inference failed for: r0v0, types: [java.lang.Object, S2.h] */
|
||||
static {
|
||||
?? obj = new Object();
|
||||
List list = Collections.EMPTY_LIST;
|
||||
obj.f1598a = list;
|
||||
obj.f1599b = list;
|
||||
f1597c = obj;
|
||||
}
|
||||
|
||||
public static boolean c(Class cls) {
|
||||
if (Enum.class.isAssignableFrom(cls) || (cls.getModifiers() & 8) != 0) {
|
||||
return false;
|
||||
}
|
||||
return cls.isAnonymousClass() || cls.isLocalClass();
|
||||
}
|
||||
|
||||
@Override // Q2.m
|
||||
public final Q2.l a(Q2.d dVar, X2.a aVar) {
|
||||
boolean z3;
|
||||
boolean z4;
|
||||
boolean c4 = c(aVar.getRawType());
|
||||
if (c4) {
|
||||
z3 = true;
|
||||
} else {
|
||||
b(true);
|
||||
z3 = false;
|
||||
}
|
||||
if (c4) {
|
||||
z4 = true;
|
||||
} else {
|
||||
b(false);
|
||||
z4 = false;
|
||||
}
|
||||
if (z3 || z4) {
|
||||
return new g(this, z4, z3, dVar, aVar);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public final void b(boolean z3) {
|
||||
Iterator it = (z3 ? this.f1598a : this.f1599b).iterator();
|
||||
if (it.hasNext()) {
|
||||
throw w.g(it);
|
||||
}
|
||||
}
|
||||
|
||||
public final Object clone() {
|
||||
try {
|
||||
return (h) super.clone();
|
||||
} catch (CloneNotSupportedException e4) {
|
||||
throw new AssertionError(e4);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user