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,50 @@
package J0;
import android.content.Context;
import android.graphics.Bitmap;
import com.adif.elcanomovil.serviceStorage.preferences.SharedPreferenceStorage;
import java.io.File;
import kotlin.jvm.functions.Function0;
import kotlin.jvm.internal.Lambda;
/* loaded from: classes.dex */
public final class q extends Lambda implements Function0 {
/* renamed from: a, reason: collision with root package name */
public final /* synthetic */ int f957a;
/* renamed from: b, reason: collision with root package name */
public final /* synthetic */ Context f958b;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public /* synthetic */ q(Context context, int i) {
super(0);
this.f957a = i;
this.f958b = context;
}
@Override // kotlin.jvm.functions.Function0
public final Object invoke() {
Context context = this.f958b;
switch (this.f957a) {
case 0:
Bitmap.Config[] configArr = W0.f.f1887a;
File cacheDir = context.getCacheDir();
if (cacheDir == null) {
throw new IllegalStateException("cacheDir == null");
}
cacheDir.mkdirs();
return cacheDir;
case 1:
Bitmap.Config[] configArr2 = W0.f.f1887a;
File cacheDir2 = context.getCacheDir();
if (cacheDir2 == null) {
throw new IllegalStateException("cacheDir == null");
}
cacheDir2.mkdirs();
return cacheDir2;
default:
return context.getApplicationContext().getSharedPreferences(SharedPreferenceStorage.PREFS_NAME, 0);
}
}
}