mirror of
https://github.com/cea-sec/miasm
synced 2026-06-21 13:48:18 +00:00
36 lines
681 B
Python
36 lines
681 B
Python
from pdb import pm
|
|
from pprint import pprint
|
|
|
|
from miasm2.arch.x86.arch import mn_x86
|
|
from miasm2.core import parse_asm, asmblock
|
|
|
|
|
|
# Assemble code
|
|
asmcfg, loc_db = parse_asm.parse_txt(mn_x86, 32, '''
|
|
main:
|
|
MOV EAX, 1
|
|
MOV EBX, 2
|
|
MOV ECX, 2
|
|
MOV DX, 2
|
|
|
|
loop:
|
|
INC EBX
|
|
CMOVZ EAX, EBX
|
|
ADD EAX, ECX
|
|
JZ loop
|
|
RET
|
|
''')
|
|
|
|
# Set 'main' loc_key's offset
|
|
loc_db.set_location_offset(loc_db.get_name_location("main"), 0x0)
|
|
|
|
# Spread information and resolve instructions offset
|
|
patches = asmblock.asm_resolve_final(mn_x86, asmcfg, loc_db)
|
|
|
|
# Show resolved asmcfg
|
|
for block in asmcfg.blocks:
|
|
print block
|
|
|
|
# Print offset -> bytes
|
|
pprint(patches)
|