将EXE反编译为ASM
我想为我的空闲时间制作一个基本的防病毒软件。 基本上我了解了EXE(windows)文件的基本结构。 如何从文件和PE头中提取ASM代码?
I want to make a basic antivirus for my free time.
Basically I learned about the basic structure of the EXE(windows) file.
How do I extract the ASM code from the file and the PE header?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以安装 Cygwin 并使用 objdump 将 exe 反编译为 asm。安装 cygwin 时请确保选择 binutils。安装 cygwin 后,您可以从 bash shell 运行以下命令:
You can install Cygwin and use objdump to decompile an exe into asm. Be sure you select the binutils when installing cygwin. After installing cygwin, you can run the following from a bash shell:
您可以使用一些免费的分布式反汇编程序。例如:ollydbg 反汇编程序。
注意:PE 头中只有一些 MS-DOS 存根可执行代码。
You can use some free distrubuted disassembler.for example: ollydbg diassembler.
note: there is only some MS-DOS stub executeable code in the PE header.