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:
58
apk_decompiled/sources/Z2/C0100h.java
Normal file
58
apk_decompiled/sources/Z2/C0100h.java
Normal file
@@ -0,0 +1,58 @@
|
||||
package Z2;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.Iterator;
|
||||
import java.util.LinkedHashSet;
|
||||
|
||||
/* renamed from: Z2.h, reason: case insensitive filesystem */
|
||||
/* loaded from: classes3.dex */
|
||||
public final class C0100h extends AbstractC0104l {
|
||||
|
||||
/* renamed from: c, reason: collision with root package name */
|
||||
public static final C0093a f2264c = new C0093a(2);
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public final AbstractC0104l f2265a;
|
||||
|
||||
/* renamed from: b, reason: collision with root package name */
|
||||
public final /* synthetic */ int f2266b;
|
||||
|
||||
public C0100h(AbstractC0104l abstractC0104l, int i) {
|
||||
this.f2266b = i;
|
||||
this.f2265a = abstractC0104l;
|
||||
}
|
||||
|
||||
@Override // Z2.AbstractC0104l
|
||||
public Object fromJson(r rVar) {
|
||||
Collection arrayList;
|
||||
switch (this.f2266b) {
|
||||
case 0:
|
||||
arrayList = new ArrayList();
|
||||
break;
|
||||
default:
|
||||
arrayList = new LinkedHashSet();
|
||||
break;
|
||||
}
|
||||
rVar.d();
|
||||
while (rVar.Y()) {
|
||||
arrayList.add(this.f2265a.fromJson(rVar));
|
||||
}
|
||||
rVar.s();
|
||||
return arrayList;
|
||||
}
|
||||
|
||||
@Override // Z2.AbstractC0104l
|
||||
public void toJson(x xVar, Object obj) {
|
||||
xVar.d();
|
||||
Iterator it = ((Collection) obj).iterator();
|
||||
while (it.hasNext()) {
|
||||
this.f2265a.toJson(xVar, it.next());
|
||||
}
|
||||
xVar.x();
|
||||
}
|
||||
|
||||
public final String toString() {
|
||||
return this.f2265a + ".collection()";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user