Skip to content
New issue

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

IDA Pro7.5 && Python3 not working #22

Open
Double-q1015 opened this issue Jun 2, 2022 · 1 comment
Open

IDA Pro7.5 && Python3 not working #22

Double-q1015 opened this issue Jun 2, 2022 · 1 comment

Comments

@Double-q1015
Copy link

image
I tried to modify the code in Gopclntab.py

before
def rename(beg, ptr, make_funcs = True):
....
name = idc.get_strlit_contents(base + name_offset)
name = Utils.relaxName(name)
Utils.rename(func_addr, name)

after
def rename(beg, ptr, make_funcs = True):
.....
name = idc.get_strlit_contents(base + name_offset)
name = name.decode("utf-8")
name = Utils.relaxName(name)
Utils.rename(func_addr, name)

@k1nm0
Copy link

k1nm0 commented Oct 13, 2023

same error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants