You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have created a simple iOS application with xcode 13.4.1 and set the strip debug symbols during copy attribute to YES as said in the related chapter https://github.com/OWASP/owasp-mstg/blob/master/Document/0x06i-Testing-Code-Quality-and-Build-Settings.md, but executing the command objdump --syms <binary_file> I still got the debug symbols. I also tried with the command dsymutil --statistics <binary_file>, but still got the .degub_info section not empty. Then I tried to set the attribute Generate Debug Symbols to NO (always inside the Build Settings) and everything went as expected: no more debugging symbols in the objdump output and the .debug_info section empty in the dsymutil output. Is anyone there that can explain me if I am doing things wrong or the mstg is missing something?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have created a simple iOS application with xcode 13.4.1 and set the strip debug symbols during copy attribute to YES as said in the related chapter https://github.com/OWASP/owasp-mstg/blob/master/Document/0x06i-Testing-Code-Quality-and-Build-Settings.md, but executing the command
objdump --syms <binary_file>
I still got the debug symbols. I also tried with the commanddsymutil --statistics <binary_file>
, but still got the .degub_info section not empty. Then I tried to set the attribute Generate Debug Symbols to NO (always inside the Build Settings) and everything went as expected: no more debugging symbols in the objdump output and the .debug_info section empty in the dsymutil output. Is anyone there that can explain me if I am doing things wrong or the mstg is missing something?Beta Was this translation helpful? Give feedback.
All reactions