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:
40
apk_decompiled/sources/kotlin/properties/NotNullVar.java
Normal file
40
apk_decompiled/sources/kotlin/properties/NotNullVar.java
Normal file
@@ -0,0 +1,40 @@
|
||||
package kotlin.properties;
|
||||
|
||||
import com.google.android.gms.measurement.internal.a;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
import kotlin.reflect.KProperty;
|
||||
|
||||
@Metadata(d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0000\n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0002\u0018\u0000*\b\b\u0000\u0010\u0001*\u00020\u00022\u0010\u0012\u0006\u0012\u0004\u0018\u00010\u0002\u0012\u0004\u0012\u0002H\u00010\u0003B\u0005¢\u0006\u0002\u0010\u0004J$\u0010\u0007\u001a\u00028\u00002\b\u0010\b\u001a\u0004\u0018\u00010\u00022\n\u0010\t\u001a\u0006\u0012\u0002\b\u00030\nH\u0096\u0002¢\u0006\u0002\u0010\u000bJ,\u0010\f\u001a\u00020\r2\b\u0010\b\u001a\u0004\u0018\u00010\u00022\n\u0010\t\u001a\u0006\u0012\u0002\b\u00030\n2\u0006\u0010\u0005\u001a\u00028\u0000H\u0096\u0002¢\u0006\u0002\u0010\u000eJ\b\u0010\u000f\u001a\u00020\u0010H\u0016R\u0012\u0010\u0005\u001a\u0004\u0018\u00018\u0000X\u0082\u000e¢\u0006\u0004\n\u0002\u0010\u0006¨\u0006\u0011"}, d2 = {"Lkotlin/properties/NotNullVar;", "T", "", "Lkotlin/properties/ReadWriteProperty;", "()V", "value", "Ljava/lang/Object;", "getValue", "thisRef", "property", "Lkotlin/reflect/KProperty;", "(Ljava/lang/Object;Lkotlin/reflect/KProperty;)Ljava/lang/Object;", "setValue", "", "(Ljava/lang/Object;Lkotlin/reflect/KProperty;Ljava/lang/Object;)V", "toString", "", "kotlin-stdlib"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes3.dex */
|
||||
final class NotNullVar<T> implements ReadWriteProperty<Object, T> {
|
||||
private T value;
|
||||
|
||||
@Override // kotlin.properties.ReadWriteProperty, kotlin.properties.ReadOnlyProperty
|
||||
public T getValue(Object thisRef, KProperty<?> property) {
|
||||
Intrinsics.checkNotNullParameter(property, "property");
|
||||
T t2 = this.value;
|
||||
if (t2 != null) {
|
||||
return t2;
|
||||
}
|
||||
throw new IllegalStateException("Property " + property.getName() + " should be initialized before get.");
|
||||
}
|
||||
|
||||
@Override // kotlin.properties.ReadWriteProperty
|
||||
public void setValue(Object thisRef, KProperty<?> property, T value) {
|
||||
Intrinsics.checkNotNullParameter(property, "property");
|
||||
Intrinsics.checkNotNullParameter(value, "value");
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
String str;
|
||||
StringBuilder sb = new StringBuilder("NotNullProperty(");
|
||||
if (this.value != null) {
|
||||
str = "value=" + this.value;
|
||||
} else {
|
||||
str = "value not initialized yet";
|
||||
}
|
||||
return a.n(sb, str, ')');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user