Since Fabio A. Correa launched the file on a bomb and found out that it is a 32-bit LSB executable, it looks like this is caused by some missing LSB scripts that need to be loaded at startup.
Just doing sudo apt-get install lsb-core fix this. After that, ldd bomb will also work.
Update:
Further, ldd (after receiving the finished LSB file) shows that it is actually called by some inexist libc.so.6 => /lib32/libc.so.6 , which is the i386 libc architecture. You can try installing the libc6-i386 package directly.
After that, you can run disassemble func_name directly into your gdb. When saving all characters, you can directly see function names. strings can help you.
Btw, this question should be placed on Unix & Linux, I think.
source share