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,39 @@
|
||||
package kotlin.reflect.jvm.internal;
|
||||
|
||||
import java.lang.ref.WeakReference;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0002\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003¢\u0006\u0002\u0010\u0004J\u0013\u0010\u0011\u001a\u00020\u00122\b\u0010\u0013\u001a\u0004\u0018\u00010\u0001H\u0096\u0002J\b\u0010\u0014\u001a\u00020\u0006H\u0016J\b\u0010\u0015\u001a\u00020\u0016H\u0016R\u0011\u0010\u0005\u001a\u00020\u0006¢\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR\u0017\u0010\t\u001a\b\u0012\u0004\u0012\u00020\u00030\n¢\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\fR\u001c\u0010\r\u001a\u0004\u0018\u00010\u0003X\u0086\u000e¢\u0006\u000e\n\u0000\u001a\u0004\b\u000e\u0010\u000f\"\u0004\b\u0010\u0010\u0004¨\u0006\u0017"}, d2 = {"Lkotlin/reflect/jvm/internal/WeakClassLoaderBox;", "", "classLoader", "Ljava/lang/ClassLoader;", "(Ljava/lang/ClassLoader;)V", "identityHashCode", "", "getIdentityHashCode", "()I", "ref", "Ljava/lang/ref/WeakReference;", "getRef", "()Ljava/lang/ref/WeakReference;", "temporaryStrongRef", "getTemporaryStrongRef", "()Ljava/lang/ClassLoader;", "setTemporaryStrongRef", "equals", "", "other", "hashCode", "toString", "", "kotlin-reflection"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes3.dex */
|
||||
final class WeakClassLoaderBox {
|
||||
private final int identityHashCode;
|
||||
private final WeakReference<ClassLoader> ref;
|
||||
private ClassLoader temporaryStrongRef;
|
||||
|
||||
public WeakClassLoaderBox(ClassLoader classLoader) {
|
||||
Intrinsics.checkNotNullParameter(classLoader, "classLoader");
|
||||
this.ref = new WeakReference<>(classLoader);
|
||||
this.identityHashCode = System.identityHashCode(classLoader);
|
||||
this.temporaryStrongRef = classLoader;
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
return (other instanceof WeakClassLoaderBox) && this.ref.get() == ((WeakClassLoaderBox) other).ref.get();
|
||||
}
|
||||
|
||||
/* renamed from: hashCode, reason: from getter */
|
||||
public int getIdentityHashCode() {
|
||||
return this.identityHashCode;
|
||||
}
|
||||
|
||||
public final void setTemporaryStrongRef(ClassLoader classLoader) {
|
||||
this.temporaryStrongRef = classLoader;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
String obj;
|
||||
ClassLoader classLoader = this.ref.get();
|
||||
return (classLoader == null || (obj = classLoader.toString()) == null) ? "<null>" : obj;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user