m-schmoock / ludis86

udis86 - Lua bindings for udis disassembler library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

===

ludis86

libudis86 Lua bindings. Compatible with Lua 5.1, 5.2 and LuaJIT. It was developed as a part of the mmbbq project, the Lua code injection framework.

We use same license as udis86: FreeBSD

===

Makefile targets

make all
    # Build lib and doc

make doc
    # Just build the docs

make test
    # run 'test.lua'

Usage

-- init udis to a specific address
local ludis86 = require("ludis86")
ud = ludis86.init_addr_intel32(0x401000) -- your address here :D	
-- disassemble and print instructions
while ud:dis() > 0 do
    print(string.format("+%04X %016s %016s", ud:off(), ud:hex(), ud:asm()))
end

About

udis86 - Lua bindings for udis disassembler library

License:Other


Languages

Language:C 50.9%Language:Lua 27.6%Language:PostScript 19.5%Language:Makefile 2.0%