Decompiling a compiled program with Go

前端 未结 2 1935
一生所求
一生所求 2020-12-13 13:07

I have built a simple executable program with Go.

I\'ve compiled the code into a static binary program.

I want to decompile the output binary f

2条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-13 13:27

    There is no tool to do that and as Go programs are compiled into machine code, they do not contain enough information to translate them back into Go code. Standard disassembly techniques are still possible though.

提交回复
热议问题