bytecode - Convert this 32-Bit Machine Code to Assembly language -
what easiest way convert following bytecode assembly language?
83 ec 8b 55 51 53 ac c4 05 8b 64 57 00 00 00 30 8b 0c 40 8b 00 8b 0c 40 58 8b 00 8b 03 d8 89 18 50 8b 3c 40 8b da 01 78 df 01 20 7a 07 8b c9 31 38 81 d8 01 61 65 72 43 78 81 1c 75 41 73 73 0b 8b 13 75 00 d8 01 24 42 48 04 b7 0f 01 1c 52 8b 82 1c 03 da c7 83 09 eb 4a 3b 41 04 8d cf 7c 18 8d 50 f0 45 31 57 ac 7d 00 11 b9 c0 ab f3 00 00 44 ac 45 c7 50 00 00 00 50 50 50 50 00 09 e8 50 61 63 00 00 65 2e 63 6c 50 00 65 78 59 5f d3 ff 03 e0 c1 5b c9 06 c0 83 90 90 90 c3
thanks in advance!
disassembling bytecode pretty cool. quickest method use oda, online disassembler. many tools exist going other way around, can can generate bytecode in python!
for reversing further, decompilers not disassemble , provide assembly, go 1 more level , give c code if possible. hex-rays example of this.
however, simple disassembler need assembly bytecode!
Comments
Post a Comment