加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
BSD-2-Clause
udis86
======

Udis86 is a disassembler engine that interprets and decodes a stream of
binary machine code bytes as opcodes defined in the x86 and x86-64 class
of Instruction Set Archictures. The core component of this project is
libudis86 which provides a clean and simple interface to disassemble
binary code, and to inspect the disassembly to various degrees of
details. The library is designed to aid software projects that entail
analysis and manipulation of all flavors of x86 binary code.


LICENSE
-------

udis86 is an open source project, distributed under the terms of the
2-clause "Simplified BSD License". A copy of the license is included
with the source in $(SRC)/LICENSE.


libudis86
---------

* Full support for the x86 and x86-64 (AMD64) range of instruction set
  architectures.
* Full support for all AMD-V, INTEL-VMX, MMX, SSE, SSE2, SSE3, SSSE3,
  SSE4.1, SSE4.2, FPU(x87), and AMD 3Dnow! instructions.
* Supports 16bit, 32bit, and 64bit disassembly modes.
* Supports instruction meta-data using XML based decode tables.
* Generates output in AT&T or INTEL assembler language syntaxes.
* Supports flexbile input methods: File, Buffer, and Hooks.
* Reentrant.
* Clean and very easy-to-use API.


udcli
-----

udcli is a small command-line tool for your quick disassembly needs.

  $ echo "65 67 89 87 76 65 54 56 78 89 09 00 87" | udcli -32 -x 
  0000000000000000 656789877665    mov [gs:bx+0x6576], eax
  0000000000000000 54              push esp
  0000000000000000 56              push esi
  0000000000000000 7889            js 0x93 
  0000000000000000 0900            or [eax], eax


Documentation
-------------

libudis86 api is fully documented and included with the package in
$(SRC)/docs/manual


Author
------

udis86 is written and maintained by Vivek Thampi (vivek.mt@gmail.com).
Copyright (c) 2002-2012, Vivek Thampi <vivek.mt@gmail.com> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

简介

Disassembler Library for x86 and x86-64 展开 收起
BSD-2-Clause
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化