Reverse Engineering old paint programs

徘徊边缘 提交于 2019-11-29 03:45:48

IDA Pro handles nearly any binary, and is the gold standard for this kind of work, though contacting the author may prove helpful as well.

If you can convince the author to open source some or all of the program, that's the best method.

Beyond that, disassembly and debugging are going to be your friends. In some cases you may be able to decompile a piece of software if you know what it was compiled with originally. But disassemble it, and run it in a debugger to find the overarching structure, and look for the obvious functions that do the actual brush work.

It may seem daunting at first, but after some time you'll find it's surprisingly understandable.

-Adam

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!