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,59 @@
package dagger.internal;
/* loaded from: classes3.dex */
public final class Preconditions {
private Preconditions() {
}
public static <T> void checkBuilderRequirement(T t2, Class<T> cls) {
if (t2 != null) {
return;
}
throw new IllegalStateException(cls.getCanonicalName() + " must be set");
}
public static <T> T checkNotNull(T t2) {
t2.getClass();
return t2;
}
public static <T> T checkNotNullFromComponent(T t2) {
if (t2 != null) {
return t2;
}
throw new NullPointerException("Cannot return null from a non-@Nullable component method");
}
public static <T> T checkNotNullFromProvides(T t2) {
if (t2 != null) {
return t2;
}
throw new NullPointerException("Cannot return null from a non-@Nullable @Provides method");
}
public static <T> T checkNotNull(T t2, String str) {
if (t2 != null) {
return t2;
}
throw new NullPointerException(str);
}
public static <T> T checkNotNull(T t2, String str, Object obj) {
String valueOf;
if (t2 != null) {
return t2;
}
if (str.contains("%s")) {
if (str.indexOf("%s") == str.lastIndexOf("%s")) {
if (obj instanceof Class) {
valueOf = ((Class) obj).getCanonicalName();
} else {
valueOf = String.valueOf(obj);
}
throw new NullPointerException(str.replace("%s", valueOf));
}
throw new IllegalArgumentException("errorMessageTemplate has more than one format specifier");
}
throw new IllegalArgumentException("errorMessageTemplate has no format specifiers");
}
}