1

I am writing a security app in c++. And when I run strings app.name I found there are many method name appear on the result.

Is there any way to hidden these method names? (I can change these function names manually, but I just wonder are there some flags can be added to compiler to hidden these names easily).

xhan
  • 6,057
  • 4
  • 33
  • 47

1 Answers1

0

Security through obscurity can still be overcome, but you could always strip your binary to remove all the debugging symbols and information.

Mark B
  • 95,107
  • 10
  • 109
  • 188