Skip to content

Commit

Permalink
Version 1.3 - Improved constructor function detection, Support 32 bit…
Browse files Browse the repository at this point in the history
… executables.
  • Loading branch information
CySHell committed Oct 31, 2022
1 parent 50f1640 commit ea217b7
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def GetPotentialConstructors(bv: bn.binaryview, vfTable_addr: int) -> \
for code_ref in bv.get_code_refs(vfTable_addr):
func_containing_code_ref = code_ref.function
if func_containing_code_ref.start not in VirtualFunctionTable.global_functions_contained_in_all_vfTables:
print(f"table: {hex(vfTable_addr)}, function containing code ref: {hex(func_containing_code_ref.start)}")
potential_constructors.append(func_containing_code_ref)
return potential_constructors

Expand Down

0 comments on commit ea217b7

Please sign in to comment.