xctf(ddctf) Windows_Reverse2 脱壳

1.星期天闲着没事做做这个

od直接开trace

然后写个脚本化简下文件

import re
def isdigit(a):
	try:	
		int(a,10)
		return 1
	except Exception as e:
		try:	
			int(a,16)
			return 1
		except Exception as e1:
			return 0
f1=open("ddctf-1.txt","rb")
f2=open("ddctf-3.txt","a+")
line=f1.readline()
while line:
	line=f1.readline().replace('\r\n','\n')
	if isdigit(line[:5])!=0:
		if re.match( r'00AF(.*) main', line, re.M|re.I)==None:
			#print(line)
			a=1
		else:
			#print(list(line))
			f2.write(line)
	else:
		#print(list(line))
		f2.write(line)
f1.close()
f2.close()

直接翻了翻

xctf(ddctf) Windows_Reverse2 脱壳_第1张图片

看这地址跳这么远,就猜是oep了

od插件直接dump出来,

xctf(ddctf) Windows_Reverse2 脱壳_第2张图片

dump出来就像下面的鬼样子xctf(ddctf) Windows_Reverse2 脱壳_第3张图片

用了下ImportRec 去修复IAT,并没有什么鸟用,看来还得手工修复

在od中main里面去找iat

xctf(ddctf) Windows_Reverse2 脱壳_第4张图片

就在0x2000这么个地方

结果dump出来不对就往后面翻了翻

xctf(ddctf) Windows_Reverse2 脱壳_第5张图片

结果0x2320那么个地方就是

所以直接把0x2320位置的数据copy过去

xctf(ddctf) Windows_Reverse2 脱壳_第6张图片

再选个位置建import表

xctf(ddctf) Windows_Reverse2 脱壳_第7张图片

xctf(ddctf) Windows_Reverse2 脱壳_第8张图片

最后NT结构里面去改下偏移和size

xctf(ddctf) Windows_Reverse2 脱壳_第9张图片

结果改完了,它还要给我日怪

xctf(ddctf) Windows_Reverse2 脱壳_第10张图片

发现运行不成功,还得把重定位去掉。

xctf(ddctf) Windows_Reverse2 脱壳_第11张图片

xctf(ddctf) Windows_Reverse2 脱壳_第12张图片

很明显base64的标志,只是变了下把输入的转成hex,然后在base64编了他么的一下

xctf(ddctf) Windows_Reverse2 脱壳_第13张图片

2.总结一下

import 表

xctf(ddctf) Windows_Reverse2 脱壳_第14张图片

指向的

xctf(ddctf) Windows_Reverse2 脱壳_第15张图片

这个地方是rva,在010中看得(rva-对应得offset+ 物理对应得offset)

OrginalFirstThunck和FirstThunk都可以指向同一个地方

你可能感兴趣的:(CTF)