Closed trietptm closed 3 years ago
Fix bug "Error executing command" in "Create x64dbg script with bp at marked address" feature because of redundant "L" in addresses for x64dbg script.
Another way to solve this problem is stripping the "L" character from the addresses in the file ddr_server.py by replacing 2 lines:
breakaddr = json_content['other']['breakaddr'] org_imagebase = json_content['other']['imagebase']
with these 2 lines and vice versa for other addresses:
breakaddr = json_content['other']['breakaddr'].strip('L') org_imagebase = json_content['other']['imagebase'].strip('L')
Fix bug "Error executing command" in "Create x64dbg script with bp at marked address" feature because of redundant "L" in addresses for x64dbg script.
Another way to solve this problem is stripping the "L" character from the addresses in the file ddr_server.py by replacing 2 lines:
with these 2 lines and vice versa for other addresses: