将EXE反编译为ASM

发布于 2024-08-08 08:45:10 字数 76 浏览 5 评论 0原文

我想为我的空闲时间制作一个基本的防病毒软件。 基本上我了解了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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我的鱼塘能养鲲 2024-08-15 08:45:10

您可以安装 Cygwin 并使用 objdump 将 exe 反编译为 asm。安装 cygwin 时请确保选择 binutils。安装 cygwin 后,您可以从 bash shell 运行以下命令:

objdump -Slx yourpgm.exe

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:

objdump -Slx yourpgm.exe
蓝眸 2024-08-15 08:45:10

您可以使用一些免费的分布式反汇编程序。例如: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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文