Dante6676 Posted December 18, 2018 Posted December 18, 2018 I want to see the XMLs the game uses but outside the game, they are obfuscated, but readable, however in the game's memory based on code reads, it gives them as plaintext, XML files. Any advice on ripping them?
Administrators Enyby Posted December 18, 2018 Administrators Posted December 18, 2018 Make dump of entire process memory. After that search in dump your "plaintext". And you found nothing because xml never stored in memory as plaintext. In best case it decoded to temp buffer before parse, but after that this buffer released. Usually xml stored as tree in memory. So you can not fetch or found it. Text view is good only for human edit. It is complicated for parse, work and use. Even xml preferences from Java code stored in memory as HashMap.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.