首页
社区
课程
招聘
[ZT]SecMaker V2 +Source
发表于: 2006-7-6 20:32 2276

[ZT]SecMaker V2 +Source

2006-7-6 20:32
2276
SecMaker "V2" :
---------------------
It's just a tiny tool which adds zero-padded sections to a PE file, taking care of file-alignment and so on...
Hope you like it and use it. I've tested it with many files and most of them ( > 95%) worked after adding a section to them :-)

Sunshine, August 2k3

P.S Find the secret box...

- HISTORY -

Version 2.0   / August 2k3
---------------------------
- completely rewritten, now in c++
- new layout
- fixed a bug in calculating right values
- ability to choose characteristics

Version 1.01  / June 2k3
--------------------------
- fixed a bug to write correct Virtual Offset
- added a messagebox

Version 1.0   / January 2k2
---------------------------
- first release

-= values for characteristics taken from WINNT.H =-

#define IMAGE_SCN_CNT_CODE                   0x00000020  // Section contains code.
#define IMAGE_SCN_CNT_INITIALIZED_DATA       0x00000040  // Section contains initialized data.
#define IMAGE_SCN_CNT_UNINITIALIZED_DATA     0x00000080  // Section contains uninitialized data.

#define IMAGE_SCN_LNK_INFO                   0x00000200  // Section contains comments or some other type of information.
#define IMAGE_SCN_LNK_REMOVE                 0x00000800  // Section contents will not become part of image.
#define IMAGE_SCN_LNK_COMDAT                 0x00001000  // Section contents comdat.

#define IMAGE_SCN_LNK_NRELOC_OVFL            0x01000000  // Section contains extended relocations.
#define IMAGE_SCN_MEM_DISCARDABLE            0x02000000  // Section can be discarded.
#define IMAGE_SCN_MEM_NOT_CACHED             0x04000000  // Section is not cachable.
#define IMAGE_SCN_MEM_NOT_PAGED              0x08000000  // Section is not pageable.
#define IMAGE_SCN_MEM_SHARED                 0x10000000  // Section is shareable.
#define IMAGE_SCN_MEM_EXECUTE                0x20000000  // Section is executable.
#define IMAGE_SCN_MEM_READ                   0x40000000  // Section is readable.
#define IMAGE_SCN_MEM_WRITE                  0x80000000  // Section is writeable.

[课程]Linux pwn 探索篇!

上传的附件:
收藏
免费 1
支持
分享
最新回复 (2)
雪    币: 221
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
thx!goog tools
2006-7-6 21:56
0
雪    币: 0
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
3
支持开源
2006-7-7 11:33
0
游客
登录 | 注册 方可回帖
返回
//