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,74 @@
package com.google.firebase.encoders;
import java.lang.annotation.Annotation;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
/* loaded from: classes3.dex */
public final class FieldDescriptor {
private final String name;
private final Map<Class<?>, Object> properties;
/* loaded from: classes3.dex */
public static final class Builder {
private final String name;
private Map<Class<?>, Object> properties = null;
public Builder(String str) {
this.name = str;
}
public FieldDescriptor build() {
return new FieldDescriptor(this.name, this.properties == null ? Collections.EMPTY_MAP : Collections.unmodifiableMap(new HashMap(this.properties)));
}
public <T extends Annotation> Builder withProperty(T t2) {
if (this.properties == null) {
this.properties = new HashMap();
}
this.properties.put(t2.annotationType(), t2);
return this;
}
}
public static Builder builder(String str) {
return new Builder(str);
}
public static FieldDescriptor of(String str) {
return new FieldDescriptor(str, Collections.EMPTY_MAP);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof FieldDescriptor)) {
return false;
}
FieldDescriptor fieldDescriptor = (FieldDescriptor) obj;
return this.name.equals(fieldDescriptor.name) && this.properties.equals(fieldDescriptor.properties);
}
public String getName() {
return this.name;
}
public <T extends Annotation> T getProperty(Class<T> cls) {
return (T) this.properties.get(cls);
}
public int hashCode() {
return this.properties.hashCode() + (this.name.hashCode() * 31);
}
public String toString() {
return "FieldDescriptor{name=" + this.name + ", properties=" + this.properties.values() + "}";
}
private FieldDescriptor(String str, Map<Class<?>, Object> map) {
this.name = str;
this.properties = map;
}
}