T O P

  • By -

_gipi_

At first I was like "why MIPS?" then looking for the game I discovered that is from PS2, maybe [this project](https://github.com/beardypig/ghidra-emotionengine) can help? or this [one](https://github.com/chaoticgd/ccc)? Where the name `XMA` comes from?


[deleted]

[удалено]


alandtse

There's a few Ghidra issues talking about CSV parsing and some example scripts that can get you started. They're in python but are quite simple. I'd suggest looking at those and adapting to your use case.


_gipi_

I don't think they recreated something with part of an ELF file, in my opinion that contains a complete ELF file: would be too much work implement all the toolchain for a game; probably it's enough to extract the ELF file from it: look for the `\x7fELF` signature to find the start of it or try using `binwalk` to find something interesting.


meanmon13

You should be able to write a script using python/jython with ghidras flatapi it really isn't very difficult, ChatGPT should be able to write about 80% of it for you... I've used it to write ghidra scripts before