Busco herramientas como defector eop de paquetes y debugger para Linux sería de buena ayuda y agradeciendo
Enviado desde mi M2004J19C mediante Tapatalk
@NicoFlamel23
Citardebugger para Linux
*.- radare
*.- IDA PRO
*.- GDB
*.- Ghidra
También hay depuradores específicos para lenguajes interpretados.
~ DtxdF
Pero hay tools para saber el packer y el eop del programa
Enviado desde mi M2004J19C mediante Tapatalk
¿Tal vez
readelf?
readelf -h ./a.out | grep -i punto
Dirección del punto de entrada: 0x1040
Aunque quizá le interese lo siguiente:
CitarIn computer programming, an entry point is where the first instructions of a program are executed, and where the program has access to command line arguments.
También:
CitarFor some operating systems and programming languages, the entry point is in a runtime library, a set of support functions for the language. The library code initializes the program and then passes control to the program proper. In other cases, the program may initialize the runtime library itself.
Fuente: https://en.wikipedia.org/wiki/Entry_point
~ DtxdF