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:
@@ -0,0 +1,54 @@
|
||||
package kotlin.random;
|
||||
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
import kotlin.jvm.internal.SourceDebugExtension;
|
||||
|
||||
@Metadata(d1 = {"\u0000>\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0012\n\u0002\b\u0002\n\u0002\u0010\u0006\n\u0000\n\u0002\u0010\u0007\n\u0002\b\u0003\n\u0002\u0010\t\n\u0000\b \u0018\u00002\u00020\u0001B\u0005¢\u0006\u0002\u0010\u0002J\u0010\u0010\u0007\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\bH\u0016J\b\u0010\n\u001a\u00020\u000bH\u0016J\u0010\u0010\f\u001a\u00020\r2\u0006\u0010\u000e\u001a\u00020\rH\u0016J\b\u0010\u000f\u001a\u00020\u0010H\u0016J\b\u0010\u0011\u001a\u00020\u0012H\u0016J\b\u0010\u0013\u001a\u00020\bH\u0016J\u0010\u0010\u0013\u001a\u00020\b2\u0006\u0010\u0014\u001a\u00020\bH\u0016J\b\u0010\u0015\u001a\u00020\u0016H\u0016R\u0012\u0010\u0003\u001a\u00020\u0004X¦\u0004¢\u0006\u0006\u001a\u0004\b\u0005\u0010\u0006¨\u0006\u0017"}, d2 = {"Lkotlin/random/AbstractPlatformRandom;", "Lkotlin/random/Random;", "()V", "impl", "Ljava/util/Random;", "getImpl", "()Ljava/util/Random;", "nextBits", "", "bitCount", "nextBoolean", "", "nextBytes", "", "array", "nextDouble", "", "nextFloat", "", "nextInt", "until", "nextLong", "", "kotlin-stdlib"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
@SourceDebugExtension({"SMAP\nPlatformRandom.kt\nKotlin\n*S Kotlin\n*F\n+ 1 PlatformRandom.kt\nkotlin/random/AbstractPlatformRandom\n+ 2 fake.kt\nkotlin/jvm/internal/FakeKt\n*L\n1#1,93:1\n1#2:94\n*E\n"})
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class AbstractPlatformRandom extends Random {
|
||||
public abstract java.util.Random getImpl();
|
||||
|
||||
@Override // kotlin.random.Random
|
||||
public int nextBits(int bitCount) {
|
||||
return RandomKt.takeUpperBits(getImpl().nextInt(), bitCount);
|
||||
}
|
||||
|
||||
@Override // kotlin.random.Random
|
||||
public boolean nextBoolean() {
|
||||
return getImpl().nextBoolean();
|
||||
}
|
||||
|
||||
@Override // kotlin.random.Random
|
||||
public byte[] nextBytes(byte[] array) {
|
||||
Intrinsics.checkNotNullParameter(array, "array");
|
||||
getImpl().nextBytes(array);
|
||||
return array;
|
||||
}
|
||||
|
||||
@Override // kotlin.random.Random
|
||||
public double nextDouble() {
|
||||
return getImpl().nextDouble();
|
||||
}
|
||||
|
||||
@Override // kotlin.random.Random
|
||||
public float nextFloat() {
|
||||
return getImpl().nextFloat();
|
||||
}
|
||||
|
||||
@Override // kotlin.random.Random
|
||||
public int nextInt() {
|
||||
return getImpl().nextInt();
|
||||
}
|
||||
|
||||
@Override // kotlin.random.Random
|
||||
public long nextLong() {
|
||||
return getImpl().nextLong();
|
||||
}
|
||||
|
||||
@Override // kotlin.random.Random
|
||||
public int nextInt(int until) {
|
||||
return getImpl().nextInt(until);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user