You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like strongarm does not automatically resize/readjust section/segment size after modification. If the provided data has more length or size than the actual data (I am trying to edit a string here), then it will also overflow/leak into the next section.
How can I implement this feature? Do you have any suggestion? @codyd51
Thanks.
The text was updated successfully, but these errors were encountered:
Hi! strongarm doesn't currently automatically resize the container structures for you. For now, you'll have to update the size pointers in the container structure by hand. If the data you'd like to write would spill over into the next section, you may have to shift all the following structures in the binary forward. This'll involve lots of pointer rewriting, and you may also need to update the dyld rebasing data; I think this case would be a complicated effort. I would happily welcome a PR if either of these are functionality you're willing to implement!
It seems like strongarm does not automatically resize/readjust section/segment size after modification. If the provided data has more length or size than the actual data (I am trying to edit a string here), then it will also overflow/leak into the next section.
How can I implement this feature? Do you have any suggestion? @codyd51
Thanks.
The text was updated successfully, but these errors were encountered: