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 com.google.firebase.encoders;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface ObjectEncoderContext {
|
||||
ObjectEncoderContext add(FieldDescriptor fieldDescriptor, double d4) throws IOException;
|
||||
|
||||
ObjectEncoderContext add(FieldDescriptor fieldDescriptor, float f2) throws IOException;
|
||||
|
||||
ObjectEncoderContext add(FieldDescriptor fieldDescriptor, int i) throws IOException;
|
||||
|
||||
ObjectEncoderContext add(FieldDescriptor fieldDescriptor, long j4) throws IOException;
|
||||
|
||||
ObjectEncoderContext add(FieldDescriptor fieldDescriptor, Object obj) throws IOException;
|
||||
|
||||
ObjectEncoderContext add(FieldDescriptor fieldDescriptor, boolean z3) throws IOException;
|
||||
|
||||
@Deprecated
|
||||
ObjectEncoderContext add(String str, double d4) throws IOException;
|
||||
|
||||
@Deprecated
|
||||
ObjectEncoderContext add(String str, int i) throws IOException;
|
||||
|
||||
@Deprecated
|
||||
ObjectEncoderContext add(String str, long j4) throws IOException;
|
||||
|
||||
@Deprecated
|
||||
ObjectEncoderContext add(String str, Object obj) throws IOException;
|
||||
|
||||
@Deprecated
|
||||
ObjectEncoderContext add(String str, boolean z3) throws IOException;
|
||||
|
||||
ObjectEncoderContext inline(Object obj) throws IOException;
|
||||
|
||||
ObjectEncoderContext nested(FieldDescriptor fieldDescriptor) throws IOException;
|
||||
|
||||
ObjectEncoderContext nested(String str) throws IOException;
|
||||
}
|
||||
Reference in New Issue
Block a user