首页
社区
课程
招聘
[旧帖] [求助]求Ricostruire_IAT_utilizzo_IAT脚本 0.00雪花
发表于: 2008-8-24 03:54 3486

[旧帖] [求助]求Ricostruire_IAT_utilizzo_IAT脚本 0.00雪花

2008-8-24 03:54
3486
求一脚本,脚本名为Ricostruire_IAT_utilizzo_IAT是修复ExeCryptor壳指针的,下面的国外论坛有,但是我注册不了,有的朋友请给一份,先谢啦,这个脚本,是我今天看教程看来的,可是教程没有自带这个脚本,但是从教程看来冒似是一个修复IAT指针的,脱EXECryptor 2.2.4 -> Strongbit/SoftComplete Development (h1) *全保护非常的方便快捷,我用V大的IAT修复脚本,冒似不行,直接就运行退出啦,请有的朋友给一份!在次谢谢
44bK9s2c8@1M7q4)9K6b7g2)9J5c8W2)9J5c8Y4N6%4N6#2)9J5k6i4c8#2N6s2x3@1P5h3!0#2i4K6u0W2j5$3!0E0i4K6u0r3k6X3!0J5N6h3#2Q4x3V1k6A6L8X3c8W2P5q4)9J5k6i4m8Z5M7q4)9K6c8Y4y4Z5L8%4N6@1L8%4m8A6j5#2)9K6c8o6p5#2z5o6b7%4

[培训]科锐逆向工程师培训第53期2025年7月8日开班!

收藏
免费 0
支持
分享
最新回复 (2)
雪    币: 107455
活跃值: (202504)
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
2
Ricostruire_IAT_utilizzo_IAT

// ----------- ExeCryptor 2.2.50 - for VC++ IAT ------------------
var oep
var thunk
var pointer
var ref_esp
var temp

mov oep,eip
mov thunk,0040A000      // INDIRIZZO IAT RICERCARE CON FF 25 VEDI JUMP [00406A00] ETC.

LABEL_01:                //Examne thunks label.
 cmp thunk,0040B000      //Is it end of IAT? Then finish.
je END_01
 cmp [thunk],0           //Is thunk empty? Then go to next.
 add thunk,4
je LABEL_01
 sub thunk,4
 cmp [thunk],10000000    //Does thunk holds API? Go to next again.
 add thunk,4
ja LABEL_01
 sub thunk,4             //Thunk holds redirected import.
 mov pointer,[thunk]
 
 mov eip,pointer
 mov ref_esp,esp         //Stack reference (start ESP value).
 mov temp,0
 LABEL_02:               //Trace untill return ESP value is decrypted.
  sti
  add temp,1
  cmp temp,30            //Trace first 30 opcodes.
 jne LABEL_02

 mov temp,esp
 LABEL_03:              //Find referenced stack value.
  add temp,4
  cmp temp,ref_esp
 jne LABEL_03
  sub temp,4

 mov temp,[temp]        //Get "Magic return address".
 bp temp
 esto
 bc eip

 cmp eax,10000000       //Is EAX<10000000 (EAX<IMPORT) ?
 add thunk,4
jb LABEL_01             //Then it is self-fixed import.

 sub thunk,4            //If not self-fix, fix it!
 mov [thunk],eax
 add thunk,4

jmp LABEL_01

END_01:
mov eip,oep        //Restore OEP.
ret
//------------------------ End of script ------------------------------
2008-8-24 07:25
0
雪    币: 201
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
谢谢老大,你辛苦啦!
2008-8-24 08:52
0
游客
登录 | 注册 方可回帖
返回