... in other words, is x86-64 a uniquely decodable code that, no matter where I start decoding it, always eventually yields the correct disassembly co ...
... in other words, is x86-64 a uniquely decodable code that, no matter where I start decoding it, always eventually yields the correct disassembly co ...
Th nm source.o gives unknown symbols: I want to know the meaning of the $d and $t symbol. What is that? What is a reference that explain those? Thi ...
test.S I got the disassembly code file by doing this test_dis.txt My question I wonder why I got code like this mov %eax,%ds, which doesn' ...
I'm playing with RISC-V. I have a .img file and I want to disassemble it into a .asm file, so I ran the following command: However, I got this issu ...
I am trying to get the assembly code of my Arduino program (One of the comments in this question explains why I need the assembly code). I've seen man ...
I am currently completing a CTF exercise where i must attempt to overwrite a function pointer on the stack through a buffer overflow here is the code: ...
So I am trying to compare two ELF files original/gen_twiddle_fft16x16_imre.oe674 and new/gen_twiddle_fft16x16_imre.oe674 to see if they are the same t ...
I write boot.asm kernel.asm main.c three file. kernel.asm and main.c compile into kernel file. boot.asm loader kernel into 0x10000. the question is k ...
This is more out of curiosity than productive need but I have been asking myself if it is possible to extract the C++ source of a binary such that it ...
I am trying some cpp binary disassembling. I wrote this utterly simple code: I then compiled it with g++ using something like: I then ran a: ...
the number inside the square brackets is the number of the entry in the symbol table, the sec number is the section number, the fl value are the ...
For example I have following c++ source file // define global variables here int Label = 1234; char Hash[] = "0x11231abc"; compile this to *.o file ...
I'm doing some reverse engineering on a ELF 32-Bit executable. Here is the code of the .text section : But i don't know what this line is supposed ...
I want to read the .cmdline section of a systemd efi stub (where initramfs, kernel and cmdline was inserted). I think the first option is the most ...
I would like to see at one glance which variables are placed next to each other in memory. If I generate a symbol table by using objdump -t I get the ...
I'm dissassembling and inspecting (mostly for fun and learning) the Arduino code generated for an ESP8266 (Xtensa ISA). I've been following the code ...
I have implemented a Convolutional Neural Network in C and have been studying what parts of it have the longest latency. Based on my research, the ma ...
Now I am trying to understand the RISC-V ISA but I have an unclear point about the machine code and assembly. I have written a C code like this: int ...
I've used Ubuntu 20.04.3, and when I run I got weird debug filename while expecting something like cp.debug This is the original Ubuntu image, n ...
Let's say I have the following program (a.c): Having a.out, how do I find out where main() is defined? I mean, in a big project it's not always c ...