View Single Post
backwards
AlliedModders Donor
Join Date: Feb 2014
Location: USA
Old 02-11-2022 , 16:19   Re: CSGO Server crashing random
Reply With Quote #4

Quote:
Originally Posted by Franc1sco View Post
Hello, how you diagnosticated it? with the link that he sent its not included the Raw section (only for the owner, i know) but I usually see the Raw when on the main page dont appear the last sourcemod function itself like on this case. Maybe I am missing something for diagnosticate the crash logs better.
Just using the call stack and using the latest server.dll & engine.dll I use Ghidra or IDA pro to lookup the baseaddress of the .dll + the fixed offset. This will point to the code which you can analyze to try to find strings being used inside of it or inside a previous caller function on the stack. Then once you find a unique string you search it in the most recent sdk for the target game to figure out what function that string is inside. Using that you can find the sub function which is being called and identify it as well even if it has no string itself. This should give you a good idea of what is going on and how you could be taking this code path to lead to the crash
backwards is offline