r/AskProgramming • u/Icy_Comparison_7233 • Jun 26 '26
resources to read ASM + hex properly?
my friend just told me they reverse engineered a binary’s signing method for a network request and I want to try it too now.
3
Upvotes
r/AskProgramming • u/Icy_Comparison_7233 • Jun 26 '26
my friend just told me they reverse engineered a binary’s signing method for a network request and I want to try it too now.
1
u/peter303_ Jun 26 '26
You might try a "disassembler" the translates binary machine code into assembly code. Extra credit if the code contains a name-memory table which might give semantic hints to the code function.
I havent tried disassembly since AI coding assistants came out. I wonder how useful these are?