首页
社区
课程
招聘
Escargot v0.1 by ++Meat
发表于: 2006-3-23 00:42 2655

Escargot v0.1 by ++Meat

2006-3-23 00:42
2655
Basic french protector with SRC : http://meat.jexiste.fr/nas/02.%20Coding/Tools/escargot01-meat.zip

[课程]Linux pwn 探索篇!

收藏
免费 0
支持
分享
最新回复 (7)
雪    币: 817
活跃值: (1927)
能力值: ( LV12,RANK:2670 )
在线值:
发帖
回帖
粉丝
2
top ~~~~~~~~!!!

支持!!!
2006-3-23 00:50
0
雪    币: 221
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
加的壳居然给喀吧报毒了,唉,又一死于杀软之手的东东
2006-3-23 21:27
0
雪    币: 200
活跃值: (15)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
Limitations :
- do not support DLL & .NET
- do not support multi-encryption
- do not compress executable (no size reduction)

How Escargot works ?
1. open the file
2. verify if it's a 32-bit PE and if it's not a DLL or if it's not already crypted with Escargot
3. collect addresses in headers (MZ Header, PE Header and PE Section Table)
4. collect other data in headers (number of sections, sections alignment, file alignment,Image Base, Entry Point, RVA of Import Table)
5. collect data from the first section (offset, RVA, size, virtual size)
6. modify existing sections in Section Table (names, characteristics)
7. add a new section if there is suffisant space
8. modify the headers (SizeOfCode, BaseOfCode, SizeOfHeaders, AddressOfEntryPoint)
9. modify the directories (RVA/size of new IT/IAT, RVA/size of Load Configuration Directory, and set Bound Import Directory to zero)
10. put the loader in memory
11. adjust loader values (EntryPoint)
12. crypt the image
13. close the file

Loader :
1.put a SEH
2.simple anti-debug (IsDebuggerPresent) and if detected DESTROY THE FILE
3. decrypt the image
4. load the original IT and destroy it
5. remove the SEH
2006-3-23 23:34
0
雪    币: 207
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
又一死于杀软之手的东东
2006-3-24 00:14
0
雪    币: 0
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
6
解释一下 为什么报毒
2006-3-24 09:01
0
雪    币: 200
活跃值: (15)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
7
with sources for studying basic anti-cracking tricks

You just have to bypass IsDebuggerPresent and it's easy
2006-3-24 10:24
0
雪    币: 217
活跃值: (15)
能力值: ( LV3,RANK:20 )
在线值:
发帖
回帖
粉丝
8
good
2006-3-24 10:49
0
游客
登录 | 注册 方可回帖
返回
//