首页
社区
课程
招聘
EmbedPE v1.03 release
发表于: 2004-7-6 11:03 23947

EmbedPE v1.03 release

2004-7-6 11:03
23947
收藏
免费 8
支持
分享
最新回复 (50)
雪    币: 392
活跃值: (909)
能力值: ( LV9,RANK:690 )
在线值:
发帖
回帖
粉丝
26
呵呵,越早越好,我满怀旧的;)
2004-7-6 17:40
0
雪    币: 557
活跃值: (2303)
能力值: ( LV9,RANK:2130 )
在线值:
发帖
回帖
粉丝
27
FORGOT的QQ上如下写到:
不要找我破东西:D

[forgot 帮助你修正了笔误:D ]
2004-7-6 18:11
0
雪    币: 266
活跃值: (269)
能力值: ( LV9,RANK:210 )
在线值:
发帖
回帖
粉丝
28
最初由 cyclotron 发布
呵呵,越早越好,......)


unpacke!
可以公布?
2004-7-6 23:37
0
雪    币: 392
活跃值: (909)
能力值: ( LV9,RANK:690 )
在线值:
发帖
回帖
粉丝
29
最初由 jingulong 发布


unpacke!
可以公布?


晕,我说的是QQ:D

这么快?:D
2004-7-6 23:41
0
雪    币: 3832
活跃值: (4397)
能力值: (RANK:215 )
在线值:
发帖
回帖
粉丝
30
  不公开也得给偶一份哦。
2004-7-7 00:10
0
雪    币: 898
活跃值: (4039)
能力值: ( LV9,RANK:3410 )
在线值:
发帖
回帖
粉丝
31
最初由 pll823 发布
cyclotron看看我这个unpackme怎么样? 点击下载:附件!

或换一个记事本的unpackme,点击下载:附件!


Polyene?
压缩壳
goodmorning给个壳主程序链接吧
2004-7-7 01:01
0
雪    币: 109
活跃值: (36)
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
32
polyene,动态代码混淆器

主程序点击下载:附件!polyene.rar_1089160500.rar
2004-7-7 08:35
0
雪    币: 6075
活跃值: (2236)
能力值: (RANK:1060 )
在线值:
发帖
回帖
粉丝
33
2004-7-7 10:17
0
雪    币: 898
活跃值: (4039)
能力值: ( LV9,RANK:3410 )
在线值:
发帖
回帖
粉丝
34
觉得压缩效果还不错
thank :D
2004-7-7 11:04
0
雪    币: 6027
活跃值: (2832)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
35
壳很好脱
2004-7-7 11:16
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
36
挺不错的PolyEnE,可惜够老了。
PolyEnE - Polymorphic Encryptor for Executeables
(c) 2001 Lennart Hedlund
Tested under Win98 & Win2k.
http://home.swipnet.se/polyene

PolyEnE is able to compress and encrypt most of your programfiles while
leaving them in an executeable state. To accomplish this, PolyEnE compress
and encrypts most parts of the program and then appends a piece of code
that runs when you start the program. This piece of code decrypts,
decompresses and fixes some other stuff in memory before it finally jump
to the original entrypoint of the program.

PolyEnE is free for both commercial and non-commercial use. I am NOT
responsible of any damage it causes in your system. It creates a backup,
don't remove this before you've tested the program in all environments you
would like to use it in.

If you see the message "An exception occured while restructurizing
resources" or if the "New section size"-progressbar increases faster than
"This section", the program is probably already packed and the output may
be non-functional.

Settings:
        File to encrypt
        Hmm, the file to encrypt. Select it by browsing or use drag'n'drop.

        Randomization seed
        Chooses seed for the randomization algorithm. You can use a
        pseudorandom seed, or enter your own between 0 and 2^32-1.

        Compression
        Selects windowsize of compressionalgorithm. Bigger windowsize
        results in better but slower compression. Decompression should not
        be effected in other ways than a bigger possibility of cache misses.
       
        Add junkcode
        Inserts        some code in the loader that doesn't do anything. Used to
        confuse disassemblers or people tracing your program in a debugger.

        Scramble loader
        *Disabled* - To buggy, see bugs-section.
        A normal loader runs in a linear mode with the following instruction
        coming directly after the current one. A scrambled loader runs a
        few instructions and then uses a JMP-instruction to go on with
        the following instructions at a totally different place in the
        loader. Used to confuse people.

Today there are many compressors/encryptors/"protectors" (let's call them
"wrappers") available for PE-files. For most of them, there are also
unwrappers available to the public written by and for people that wishes
to examine your original file. These unwrappers must get quite much
information about the original file by examining the wrapped one. The
unwrapper then has to rely on the fact that the wrapper have them stored
in the wrapped file and that they have to be used by the wrapper's loader
for the inmemory decryption. By knowing where in the loader the data is
accessed, the unwrapper can grab them easily. Most wrappers uses a static
loader, and because of that the offsets that the unwrapper needs to know
are also static.

To aviod this, the wrapper needs a dynamic loader, that will look
different for every encrypted file. The data that the unwrapper wants
should rather be stored as immediate operands than in structured tables.
The decryption-algorithms should be polymorphic and should use randomized
registers as source and destination parameters.
This is harder to make a generic unwrapper for.
This is PolyEnE.
(The early versions are not so hard to unwrap though.. To come.)

So far:
Sometime in        Started to write on a polymorphic codegenerator for fun.
February -01        My military service doesn't leave me much time for it.

March - 01        Got an idea to use the (still not ready) codegenerator in an
                executeable-encryptor. Not much was done due to lack of time.

Summer -01        Not really interested in programming. It's summer outside.
                Wrote on it when it was raining and I had time for it.

5/7 -01                PolyEnE works with most programs under Win9x, but
                encrypted programs doesn't seem to run under Win2k..

14/7 -01        Resource-restructuring now supports named resources. Wow.

20/7 -01        Solved importtable-troubles for programs created by some
                linkers.

03/8 -01        PolyEnE now handles BSS- and TLS-sections without
                problems (I hope).

29/8 -01        Fixed the biggest Win2k-problem. Some programs won't run
                under Win2k anyway.

13/9 -01        The processing of the executeable now runs in it's own thread
                fixing problems of lagging GUI.

15/9 -01        Fixed a problem with programs containing a bound import
                directory.

10/10 -01        PolyEnE now saves the settings.
                Commandline-support. Use:
                polyene.exe <filename.exe>
                or just drop a file on polyene.exe in explorer.
                In this case PolyEnE starts the processing immedietly, using
                the current settings. When finished, it shuts down silently.
                GUI-fix: the dialogbox with the progressbars is now centered.
                Advanced from v0.01 pre-alpha to v0.01 alpha.

14/10 -01        Supports files with other section alignment than 1000h even
                under Win2k.

16/10 -01        Commandline-support now works.. Maybe I should really test the
                features that I add before releasing the program in the future.. ;)
                Minor optimizations in the (de)compression algorithm.
                A lot of testing.. Released as v0.01 alpha r2.

20/10 -01        Compression improved a bit.
                Bugfix: Some non-PE files crashed PolyEnE.

21/10 -01        A couple of bugfixes. The "Encrypt"-button now become disabled
                when a file is under progress, preventing a nasty crash.

22/10 -01        Added exceptionhandling in the resource-restructioning. This
                prevents crashes for programs that are already wrapped. It's
                not sure that the output works, though.

28/10 -01        Multilanguage support! You can create your own tranlations too,
                using Language.exe. Install your languagefile (*.plf) by dragging
                and dropping it on polyene.exe. English and Swedish included.
                Released as v0.01 beta 1.

29/10 -01        Finally found the bug that caused some programs to result in a
                0xc0000078 under Win2k.
                Improved documentation a bit.

31/10 -01         Languagefiles now uses compression.

5/11 -01        Languagefiles may be installed during runtime by dragging and
                dropping the .plf-file in PolyEnE's mainwindow.

7/11 -01        Removes relocations if found.

8/11 -01        Fixed Win2k-related bug.

10/11 -01        Removed CMOVx-instructions for Pentium Plain compability.
                (CMOVx's were not supported until the Pentium Pro-series).
                Improved import-handling a bit for better compression. Support
                for ordinal imports are only included in the loader of needed.
                Released as v0.01 beta 2.

22/11 -01        Variable windowsize for compression.
                Disabled "Scramble loader"-checkbox.

23/11 -01        Fixed some bugs that the news in the compressionalgorithms
                caused.
                Released as v0.01! First non-beta version!

3/12 -01        Started to write on new polymorphic engine.. Will probably be
                used in v0.02..

16/12 -01        Improved compression, especially for small windowsizes..
                Released as v0.01+.

Known bugs:
                Files that are already wrapped by another wrapper will probably
                not run after PolyEnE tried to wrap it. This is a common
                problem that most wrappers have. PolyEnE is at least compatible
                with itself. ;)

                "Scramble loader" is disabled since it crashes the program most
                times. No use to fix that now since I plan to rewrite the whole
                polymorphic engine someday.

                PolyEnE always removes all overlays from the programs. Only the
                header and the sections described in the sectiontable are
                included. This is mostly a problem with setupprograms and some
                "data-to-executeable"-programs.

                Compression is not very impressive. That's because I'm
                using my own LZ-based algorithm, called QPC ("Quite Poor
                Compression"). Maybe it'll be improved someday..
2004-7-8 09:25
0
雪    币: 231
活跃值: (465)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
37
源码有吗

给我一点源码看看好吗

呵呵

纯粹好奇加学习
2004-7-10 12:48
0
雪    币: 398
活跃值: (1078)
能力值: ( LV9,RANK:970 )
在线值:
发帖
回帖
粉丝
38
Embed 1.13 用 OD 不好跟.
有人指点一下吗: OD 里怎么跟 UnhandleExceptionHandler ?
2004-7-12 13:54
0
雪    币: 6075
活跃值: (2236)
能力值: (RANK:1060 )
在线值:
发帖
回帖
粉丝
39
最初由 simonzh2000 发布
Embed 1.13 用 OD 不好跟.
有人指点一下吗: OD 里怎么跟 UnhandleExceptionHandler ?

jingulong说道:模拟异常时的stack:D
2004-7-12 13:57
0
雪    币: 392
活跃值: (909)
能力值: ( LV9,RANK:690 )
在线值:
发帖
回帖
粉丝
40
最初由 forgot 发布

jingulong说道:模拟异常时的stack:D


倒!还是得手工呀?
2004-7-12 18:24
0
雪    币: 398
活跃值: (1078)
能力值: ( LV9,RANK:970 )
在线值:
发帖
回帖
粉丝
41
最初由 cyclotron 发布


倒!还是得手工呀?


用 SoftIce 就可以, 不知道 WinDebug 可不可以?
正好办公室有, 我去装一个试试.
2004-7-13 13:09
0
雪    币: 266
活跃值: (269)
能力值: ( LV9,RANK:210 )
在线值:
发帖
回帖
粉丝
42
最初由 forgot 发布

jingulong说道:模拟异常时的stack:D


你你你
2004-7-14 13:03
0
雪    币: 898
活跃值: (4039)
能力值: ( LV9,RANK:3410 )
在线值:
发帖
回帖
粉丝
43

最初由 forgot 发布

jingulong说道:模拟异常时的stack:D


最初由 jingulong 发布


你你你


??
2004-7-14 13:59
0
雪    币: 426
活跃值: (36)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
kbs
44
good
2004-7-15 01:03
0
雪    币: 398
活跃值: (1078)
能力值: ( LV9,RANK:970 )
在线值:
发帖
回帖
粉丝
45
测试结果, WinDebug 也不行。
还是我设置有误?
2004-7-15 07:38
0
雪    币: 6075
活跃值: (2236)
能力值: (RANK:1060 )
在线值:
发帖
回帖
粉丝
46
某人用Win2000+SI搞定...
2004-7-15 10:10
0
雪    币: 371
活跃值: (790)
能力值: ( LV12,RANK:570 )
在线值:
发帖
回帖
粉丝
47
最初由 simonzh2000 发布
Embed 1.13 用 OD 不好跟.
有人指点一下吗: OD 里怎么跟 UnhandleExceptionHandler ?


DFCG上有讨论过啦:D
http://www.chinadfcg.com/viewthread.php?tid=4316&highlight=&page=1
2004-7-15 11:22
0
雪    币: 398
活跃值: (1078)
能力值: ( LV9,RANK:970 )
在线值:
发帖
回帖
粉丝
48
线程 SEH 和 UnhandleException 的入栈参数不一样,
不能简单用 线程 SEH 代替, 需要改变参数.
2004-7-15 11:32
0
雪    币: 371
活跃值: (790)
能力值: ( LV12,RANK:570 )
在线值:
发帖
回帖
粉丝
49
最初由 simonzh2000 发布
线程 SEH 和 UnhandleException 的入栈参数不一样,
不能简单用 线程 SEH 代替, 需要改变参数.


forgot说道:jingulong说道:模拟异常时的stack
2004-7-15 15:32
0
雪    币: 398
活跃值: (1078)
能力值: ( LV9,RANK:970 )
在线值:
发帖
回帖
粉丝
50
kongfoo说道: forgot说道:jingulong说道:模拟异常时的stack
:D
2004-7-15 15:44
0
游客
登录 | 注册 方可回帖
返回
//