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:
30
apk_decompiled/sources/Y/o.java
Normal file
30
apk_decompiled/sources/Y/o.java
Normal file
@@ -0,0 +1,30 @@
|
||||
package Y;
|
||||
|
||||
import java.util.concurrent.CancellationException;
|
||||
import kotlin.Unit;
|
||||
import kotlin.jvm.functions.Function2;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
import kotlin.jvm.internal.Lambda;
|
||||
import kotlinx.coroutines.CompletableDeferred;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class o extends Lambda implements Function2 {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public static final o f2090a = new Lambda(2);
|
||||
|
||||
@Override // kotlin.jvm.functions.Function2
|
||||
public final Object invoke(Object obj, Object obj2) {
|
||||
m msg = (m) obj;
|
||||
Throwable th = (Throwable) obj2;
|
||||
Intrinsics.checkNotNullParameter(msg, "msg");
|
||||
if (msg instanceof l) {
|
||||
CompletableDeferred completableDeferred = ((l) msg).f2086b;
|
||||
if (th == null) {
|
||||
th = new CancellationException("DataStore scope was cancelled before updateData could complete");
|
||||
}
|
||||
completableDeferred.completeExceptionally(th);
|
||||
}
|
||||
return Unit.INSTANCE;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user