I am currently learning and I wanted to ask, how can I change a text (string) from inside an app I am reversing? For example "To begin, please login". I have found the XREF to the string location but I don't know how to change it. I am using Hopper Disassembler on mac.
Asked
Active
Viewed 5,712 times
1 Answers
8
You can modify strings or other bytes within the hex editor (⇧⌘H) or click on the hex edit panel.
Then modify whatever you want
You'll need to write a new executable back (⇧⌘E) if you want to save it. Also, be aware that if it is a signed binary, you will need to remove any code signature or resign it as the binary won't match the signature after a change.
cimarron
- 1,331
- 1
- 9
- 13
-
1@cimmaron could you please explain with screen shots. – Jaffer Sheriff Jun 28 '17 at 18:04
-
Is it the string length limited? – Alice Chan Jan 28 '19 at 10:30
