ingenieria_inversa_a_binarios_creados_con_shc
Recuperar código de un shell script convertido a binario con SHC (Ejemplo)
Generic shell script compiler (SHC): http://www.datsi.fi.upm.es/~frosal/sources/shc.html
Generando un binario a partir de un script en bash / sh.
shc -v -r -T -f TVenLinux.sh
Generar un coredump del binario cuando está en ejecución.
ulimit -c unlimited ./TVenLinux.sh.x& (sleep 0.5 && kill -11 $! )
Buscar código fuente Bash.
strings core.1956 | grep -i -B 100 "/bin/bash"
Depende del binario el código fuente podemos encontrarlo en varias partes o agrupado en un solo bloque.
ingenieria_inversa_a_binarios_creados_con_shc.txt · Last modified: 2020/12/25 22:57 by 127.0.0.1