Involves turning "compiled" code (such as machine code, byte code or IR code) back in higher-level assembly mnemonics.
Is it possible to decompile an APK package or DEX file on Android platform? Are there any tools that can …
android disassembly decompiling malware-detectionI was told to use a disassembler. Does gcc have anything built in? What is the easiest way to do …
c++ linux assembly executable disassemblyI'm trying to disassemble a program to see a syscall assembly instruction (the INT instruction, I believe) and the handler …
gdb disassemblyHow can I see the assembly code for a C++ program? What are the popular tools to do this?
c++ assembly disassemblyI have an object file and am trying to disassemble it. When I use: objdump -d example.o I get …
linux arm disassembly objdumpI've got a binary installed on my system, and would like to look at the disassembly of a given function. …
elf debug-symbols disassembly objdump dwarfCan I disassemble a flat binary file using objdump? I'm familiar with disassembling a structured binary executable such as an …
reverse-engineering disassembly objdumpI am using the otool, nm and Fraise text editor to disassemble the Mach-o binaries. My workflow at this point …
macos assembly disassembly nm otoolI would like to compare several dlls of one install to several dlls of another install of the application I'm …
.net dll comparison disassemblyIs there a reference to the source file in the binary? I tried running strings on the binary and couldn't …
c linux gcc disassembly objdump