what does eatch of the files in save zips store?
-
- Long Handed Inserter
- Posts: 52
- Joined: Thu Apr 24, 2025 11:51 pm
- Contact:
what does eatch of the files in save zips store?
ik that the format of save files changes like every update (witch must leave behind a lot of convertson code) but id assume what eatch file in the save stores wouldnt change much. also do any of the files inside the save zip use compresson or anything like that? woundering for fuzzing once i start working on setting it up
Re: what does eatch of the files in save zips store?
It’s either JSON / plaintext, or it’s a binary DAT file full of serialized C data structures dumped from the running game’s memory - aka a giant Rats Nest.
. I have my doubts that any of this will result in Code Execution due to bounds checking - but it only takes one bug!
47014 is full of good information. The biggest issue seems to be that the ordering of fields changes arbitrarily. 8568 has some source code from Kovarex. Your best bet is going to be feeding the Windows build’s PDB file into a debugger; then look for the Savefile functions

47014 is full of good information. The biggest issue seems to be that the ordering of fields changes arbitrarily. 8568 has some source code from Kovarex. Your best bet is going to be feeding the Windows build’s PDB file into a debugger; then look for the Savefile functions
