IOS – Safe to post iOS crash logs in public

applicationscrashioslogsSecurity

One of the iOS apps I use has been crashing a lot more than usual lately, so I'm posting about it on their forum. I've got a bunch of crash logs.

Is it safe to post iOS crash logs in a public place? Is there any PII in them?

I see a lot of hashes in them. Are they completely arbitrary/random, or do they contain my hardware address or something?

Best Answer

Crash logs are safe to post in public. There is no identifying information about you in them. All of the random looking text you see are addresses of the various methods that get symbolicated by Xcode into method names. This lets the developers see the exact line of code that caused the problem.

Also know, it is harder to symbolicate crash logs that have been copied and pasted. It would be more helpful for the developers to get your crash logs in the original .crash file. It looks like this is no longer the case, I had no problem copy and pasting a crash log and symbolicating using the latest Xcode.