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
Describe the bug
Bug occurs in emu/unicorn/generic.py in function do_mapping.
emu/unicorn/generic.py
do_mapping
Line that causes the issue.
uc.mem_write(seg.start_ea,ida_bytes.get_bytes(seg.start_ea,seg.size()))
API get_bytes() is expecting a value less or equals to 4GB (0xffffffff). Unicorn won't let map 4GB segment as well.
Correction: Split big segment in sub segments of size 1GB ?
Versions (please complete the following information):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Bug occurs in
emu/unicorn/generic.py
in functiondo_mapping
.Line that causes the issue.
uc.mem_write(seg.start_ea,ida_bytes.get_bytes(seg.start_ea,seg.size()))
API get_bytes() is expecting a value less or equals to 4GB (0xffffffff).
Unicorn won't let map 4GB segment as well.
Correction: Split big segment in sub segments of size 1GB ?
Versions (please complete the following information):
The text was updated successfully, but these errors were encountered: