We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if use not gef, when connect IDA error with this. because the file path have space
solve: decomp2dbg/clients/gdb/utils.py fix function vmmap_base_addrs():
addr = int(re.findall(r"0x[0-9a-fA-F]+", mapping)[0], 16) path = re.findall(r" r..p (.*)", mapping)[0].strip()
The text was updated successfully, but these errors were encountered:
submit this code can fix this error
Sorry, something went wrong.
only test on Ubuntu 22.04
path = re.findall(r"(/.*)", mappings)[0].strip()
this new code can run on Ubuntu 22 and Ubuntu 20
Hi, if you have proposed fixes, could you open a PR?
Successfully merging a pull request may close this issue.
if use not gef, when connect IDA error with this.
because the file path have space
solve:
decomp2dbg/clients/gdb/utils.py
fix function vmmap_base_addrs():
addr = int(re.findall(r"0x[0-9a-fA-F]+", mapping)[0], 16)
path = re.findall(r" r..p (.*)", mapping)[0].strip()
The text was updated successfully, but these errors were encountered: