reverse engineering c programs

前端 未结 9 1745
死守一世寂寞
死守一世寂寞 2020-12-29 08:30

every c program is converted to machine code, if this binary is distributed. Since the instruction set of a computer is well known, is it possible to get back the C original

9条回答
  •  天涯浪人
    2020-12-29 08:49

    Working on tools that do this is a research activity. That is, it is possible to get something in the easy cases (you won't recover local variables names unless debug symbols are present, for instance). It's nearly impossible in practice for large programs or if the programmer had decided to make it difficult.

提交回复
热议问题