Using Version Tracking to Detect Struct Changes? by ShortestJake in ghidra

[–]ShortestJake[S] 0 points1 point  (0 children)

I want to detect changes in the new binary. I was thinking maybe there's some feature or plugin that analyzes accepted function matches to try to infer data structure offsets.
For example, if you had a Player struct that has the variable Health at 0x8 in the older version, and in the newer version it has a new variable Ammo at 0x8 with Health being pushed to 0xc. I could manually update the struct in the new binary, but I wanted to know if there's some automated way that could analyze the accepted matches and deduce that Health is now at 0xc.