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:
2025-12-04 13:59:54 +01:00
parent f2fd1c3bf5
commit e0133d2ca2
10432 changed files with 1019085 additions and 1 deletions

View File

@@ -0,0 +1,46 @@
package retrofit2.converter.moshi;
import Z2.AbstractC0104l;
import Z2.q;
import Z2.s;
import e3.T;
import f0.C0338b;
import java.io.IOException;
import r3.C0579k;
import r3.InterfaceC0578j;
import retrofit2.Converter;
/* loaded from: classes3.dex */
final class MoshiResponseBodyConverter<T> implements Converter<T, T> {
private static final C0579k UTF8_BOM;
private final AbstractC0104l adapter;
static {
C0579k c0579k = C0579k.f8285d;
UTF8_BOM = C0338b.m("EFBBBF");
}
public MoshiResponseBodyConverter(AbstractC0104l abstractC0104l) {
this.adapter = abstractC0104l;
}
@Override // retrofit2.Converter
public T convert(T t2) throws IOException {
InterfaceC0578j source = t2.source();
try {
if (source.H(UTF8_BOM)) {
source.l(r1.d());
}
s sVar = new s(source);
T t4 = (T) this.adapter.fromJson(sVar);
if (sVar.f0() == q.f2278j) {
t2.close();
return t4;
}
throw new RuntimeException("JSON document was not fully consumed.");
} catch (Throwable th) {
t2.close();
throw th;
}
}
}