I'm new to this field and I have a question. #6731
-
hello, I am very new to this field so my question may be rude. Sorry in advance. I'm frustrated so I came here to ask for advice. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The "Original File" exporter will only export modified bytes that can be directly mapped back to the file. Hover over the address in the Listing that you are trying to modify. Does the hover popup show a "Byte Source Offset" field? |
Beta Was this translation helpful? Give feedback.
-
For the string translation feature, there is no change to the bytes in the program. This feature is strictly a visual feature for the user to be able to change what the string looks like in the listing and the decompiler. To make this exportable, you would need to modify the bytes at the string's location, typically by using the Byte Viewer tool. You will have all the normal issues with fitting your new bytes into the same footprint as the old string. |
Beta Was this translation helpful? Give feedback.
For the string translation feature, there is no change to the bytes in the program. This feature is strictly a visual feature for the user to be able to change what the string looks like in the listing and the decompiler.
To make this exportable, you would need to modify the bytes at the string's location, typically by using the Byte Viewer tool. You will have all the normal issues with fitting your new bytes into the same footprint as the old string.