Skip to content

Commit

Permalink
Add support for x86_32 binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
ergrelet committed Jul 28, 2024
1 parent 388f989 commit a5cd923
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 70 deletions.
2 changes: 1 addition & 1 deletion themida_unmutate/symbolic_execution/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def disassemble_and_simplify_functions(
Disassemble mutated functions, simplify their `AsmCFG` and return them.
"""
match miasm_ctx.arch:
case "x86_64":
case "x86_64" | "x86_32":
return symex_x86.disassemble_and_simplify_functions(miasm_ctx, mutated_func_addrs)

case _:
Expand Down
Loading

0 comments on commit a5cd923

Please sign in to comment.