1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
xobj = require("xobj")
colors = require("ansicolors")
elf_file = "../bfd/test/test.so"
elf_exe = "../bfd/test/test"
function get_jmp_type(val)
if val == 1 then return "JMP" end
if val == 2 then return "JNE" end
if val == 3 then return "JE" end
return "U"
end
function demo21()
xobj.getSO(elf_file)
local add2_code = xobj.codeTableByName_number("'add2'")
local sub2_code = xobj.codeTableByName_number("'sub2'")
local adddouble_code = xobj.codeTableByName_number("'adddouble'")
local subdouble_code = xobj.codeTableByName_number("'subdouble'")
local triple_code = xobj.codeTableByName_number("'triple'")
local quad_code = xobj.codeTableByName_number("'quad'")
local passthrough_code = xobj.codeTableByName_number("'passthrough'")
xobjregister(add2_code, "add2")
xobjregister(sub2_code, "sub2")
xobjregister(adddouble_code, "adddouble")
xobjregister(subdouble_code, "subdouble")
xobjregister(triple_code, "triple")
xobjregister(quad_code, "quad")
xobjregister(passthrough_code, "passthrough")
end
function demo22()
count = 0
local text_section = xobj.getTextSection(elf_exe)
io.write(colors("%{blue}".." ".."\t".."00 ".."01 ".."02 ".."03 ".."04 ".."05 ".."06 ".."07 ".."08 ".."09 ".."0A ".."0B ".."0C ".."0D ".."0E ".."0F"))
for k,v in pairs(text_section) do
if count % 16 == 0 then
print()
io.write(colors("%{blue}".."0x"..string.format("%03x",count)), "\t")
end
io.write(colors("%{green}"..string.format("%02x", v)), " ")
count = count + 1
end
count = 0
print()
end
function test()
local text_section = xobj.getTextSection(elf_exe)
dummy = xobj.CSDump(text_section)
print(dummy)
end
--[[
setmetatable(jmp_s_t, {__call = function(self, arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12)
local t = self.new(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12)
print("created", t)
return t
end})
]]--
--[[
function jmp_s_t:show(msg)
print(msg, self, self:custom())
return self
end
]]--
function jmp_t_test()
local t = jmp_s_t.new(1,2,3,nil,nil,nil,7,8,9,0,0,1)
t:show("t is")
local t_next = jmp_s_t.new()
local t_next_y = jmp_s_t.new()
local t_next_n = jmp_s_t.new()
t:set_next(t_next)
t:set_next_y(t_next_y)
t:set_next_n(t_next_n)
t:show("t is")
tt = jmp_s_t()
tt:show("tt is")
--collectgarbage()
--t:show("t is")
end
function integ_test()
local text_section = xobj.getTextSection(elf_exe)
local head = getjmptable(#text_section, text_section)
head:show("XXXXXhead is")
print("head location is ", head:location())
while head:inext() ~= nil do
head:show("next is")
head = head:inext()
end
end
function asm_rewriter_pretty()
local text_section = xobj.getTextSection(elf_exe)
local head = getjmptable(#text_section, text_section)
while head:inext() ~= nil do
io.write(colors("%{blue}".."type:"),colors("%{green}"..get_jmp_type(head:type())),"\t",colors("%{blue}".."location:"),colors("%{green}".."0x"..string.format("%x",head:location())),"\t",colors("%{blue}".."size:"),colors("%{green}"..head:size()),"\n")
head = head:inext()
end
freejmptable(haed)
end
function dump_jmp_table()
local text_section = xobj.getTextSection(elf_exe)
local head = getjmptable(#text_section, text_section)
while head:inext() ~= nil do
io.write("type:", head:type(), "\tlocation:", "0x"..string.format("%x", head:location()))
print()
head = head:inext()
end
end
function get_jmp_table()
local text_section = xobj.getTextSection(elf_exe)
return getjmptable(#text_section, text_section)
end
--main()
--test()
--jmp_t_test()
--integ_test()
asm_rewriter_pretty()
--dump_jmp_table()
demo21()
demo22()
|