<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>火星信息安全研究院PE</title>
	<atom:link href="http://www.h4ck.org.cn/tag/pe/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.h4ck.org.cn</link>
	<description>Hack-Crack  信息安全 【Institute Of Information Serurity From Mars】</description>
	<lastBuildDate>Sat, 04 Feb 2012 13:59:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>实战IDA PE+ DLL脱壳</title>
		<link>http://www.h4ck.org.cn/2011/07/ida-pe6-dll-unpack/</link>
		<comments>http://www.h4ck.org.cn/2011/07/ida-pe6-dll-unpack/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 03:46:27 +0000</pubDate>
		<dc:creator>obaby</dc:creator>
				<category><![CDATA[破解/汇编『Crack/Asm』]]></category>
		<category><![CDATA[Debugger]]></category>
		<category><![CDATA[IDA]]></category>
		<category><![CDATA[PE]]></category>
		<category><![CDATA[Unpack]]></category>

		<guid isPermaLink="false">http://www.h4ck.org.cn/?p=2950</guid>
		<description><![CDATA[实战IDA PE+ DLL脱壳]]></description>
			<content:encoded><![CDATA[<h1 align="center"><span style="color: #33cccc;">IDA + Bochs 调试器插件进行PE+ 格式DLL脱壳</span></h1>
<p align="center">
<p align="center">By :obaby</p>
<p align="center">
<p>在IDA Pro6.1中我们扩展了Bochs调试器插件，现在已经可以进行64位代码段的调试。在IDA Pro 6.2版本中将有可能实现PE+ 可执行程序的动态调试。由于程序将会在Bochs系统中执行，因而在调试的过程中我们并不需要实际的64位操作系统，因而在实际的调试过程中可以从任何的32位或者64位的Linux，Mac OS 或者Windows操作系统中使用IDA Pro进行64位可执行文件的调试。</p>
<p>为了确认这一项新的功能，我们将进行PE+格式的一个木马程序进行脱壳并且进行一个大体的分析，这个文件是由MATCODE Software公司的mpress进行压缩的。我们将会对讲解DLL文件脱壳，修复输入表并且最终修复数据库来进行分析。</p>
<p>&nbsp;</p>
<p align="left"><strong>Unpacking the DLL</strong></p>
<p>我们的目标文件是一个木马的DLL文件，该文件被杀软识别为“Win32/Giku”。我们从使用idaq64载入DLL文件开始进行分析，载入之后按Ctrl+S键打开区段窗口：</p>
<p><img title="1" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/1.png" alt="" width="544" height="277" /><br />
<span id="more-2950"></span><br />
打开区段窗口之后注意观察区段的名称和mpress压缩壳设置的区段的属性。</p>
<p>为了进行DLL文件调试需要确保在启动之前已经设置调试器的选项设置（“Bochs debugger plugin”）为PE 和64bit emulation 模式。</p>
<p align="center"><img title="2" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/2.png" alt="" width="391" height="324" /></p>
<p>在启动调试器之后，注意观察下面的代码段，在这段代码中调用了unpack()函数：</p>
<p><img title="3" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/3.png" alt="" width="556" height="260" /></p>
<p>如果我们继续单步执行到更远的地方我们将会到达修复输入表的代码处，为了实现输入表的修复程序将会循环调用LoadLibrary()/GetModuleHandle()函数并且在这个循环中会包含另外的一个子循环调用GetProcAddress()。Mpress外壳通过这两层循环来实现IAT修复：</p>
<p><img title="4" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/4.png" alt="" width="551" height="496" /></p>
<p>在stosq执行之后我们将可以从rdi寄存器中得到IAT结构的起始地址，同样在两层循环全部结束之后我们可以从rdi寄存器中得到IAT结构的结束地址。</p>
<p>在IAT修复之后不远的地方我们可以找到一个跳转到原始入口点的jmp代码：</p>
<p align="center"><img title="5" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/5.png" alt="" width="553" height="165" />
</p>
<p>程序的入口点代码如下所示：</p>
<p align="center"><img title="6" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/6.png" alt="" width="555" height="564" />
</p>
<p>这里就是脱壳之后的程序的真实的DllEntryPoint()函数了。现在有了程序的OEP和IAT结构的起始/结束地址，我们就可以清空数据库并且重现脱壳之后的程序了。</p>
<p align="left"><strong>Reconstructing and cleaning the database</strong></p>
<p>到这里有许多的办法在程序脱壳之后进行清理数据库清理.通常会包含如下几步：</p>
<ol>
<li>定位IAT并且创建一个额外的区段来重现程序的输入表；</li>
<li>删除外壳代码的入口点，并且添加脱壳之后程序的原始入口点OEP；</li>
<li>重新分析代码；</li>
<li>重新加载FLIRT特征库</li>
<li>删除无用的外壳区段（可选）</li>
</ol>
<p>其中第一步到第三步可以通过IDA的uunp插件来自动完成，执行菜单中的“Edit/Plugins/Universal unpacker manual reconstruct”即运行该插件：</p>
<p align="center">
<img title="7" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/7.png" alt="" width="276" height="123" /></p>
<p>在插件中填入通过上面的操作得到的数据即可：</p>
<p align="center"><img title="8" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/8.png" alt="" width="546" height="237" />
</p>
<p>点击确定之后一个新的区段将会被创建，并且代码段将会被重新分析，在分析完成之后脱壳之后的程序的一个内存快照将会被呈现出来。</p>
<p>现在我们就可以重新引用FLIRT特征库了：</p>
<p><img title="9" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/9.png" alt="" width="511" height="642" /></p>
<p>在选择“vc64rtf”签名（shift +F5）之后我们可以看到IDA已经成功的识别出了库函数并且对这些库函数使用浅蓝色进行了标记，这样可以使得后续的分析工作变得更加简单。</p>
<p align="left"><strong>Analyzing the unpacked code</strong></p>
<p>在代码解压之后我们可以通过String Window窗口进行一个快速分析，String Window窗口呈现了一些加密的字符串：</p>
<p><img title="10" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/10.png" alt="" width="561" height="150" /></p>
<p>通过交叉引用，我们可以定位到解密函数。在给函数适当的参数之后我们可以直接通过Appcall来解密这些字符串：</p>
<p align="center"><img title="11" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/11.png" alt="" width="555" height="197" />
</p>
<p>我们得到了一个指向加密的文本文件的URL。在深入挖掘之后我们定位到了解密文件的函数：</p>
<p align="center"><img title="12" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/12.png" alt="" width="556" height="410" />
</p>
<p>下面是Appcall版本的decrypt_file()函数：</p>
<p align="center"><img title="13" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/13.png" alt="" width="342" height="329" />
</p>
<p>我们使用这个函数就可以解密spm.txt文件了，解密之后的内容如下所示：</p>
<p align="center"><img title="14" src="http://www.h4ck.org.cn/wp-content/uploads//2011/07/14.png" alt="" width="521" height="264" />
</p>
<p>X32.jpg是一个upx压缩的DLL文件，x64.jpg是一个mpress压缩的PE+格式的Dll文件。</p>
<p>&nbsp;<br />
PDF版下载：<a href="http://dl.dbank.com/c0edp2nnb8" target="_blank">http://dl.dbank.com/c0edp2nnb8</a><br />
&nbsp;</p>
<p>好了文章到此结束，欢迎评论！<br />
<h3>相关文章</h3>
<ul class="related_posts">
<li><a href="http://www.h4ck.org.cn/2011/12/ida-failed-to-display-the-program-in-graph-mode/" title="IDA failed to display the program in graph mode" rel="bookmark inlinks">IDA failed to display the program in graph mode</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/03/ildasm-4-0-fixed/" title="ildasm 4.0 修改版" rel="bookmark inlinks">ildasm 4.0 修改版</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/07/unpack-64bit-exe-via-ida-debug-plugin/" title="IDA + Debug 插件 实现64Bit Exe脱壳" rel="bookmark inlinks">IDA + Debug 插件 实现64Bit Exe脱壳</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/09/comment-viewer-v-0-2/" title="Comment Viewer v.0.2" rel="bookmark inlinks">Comment Viewer v.0.2</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/12/two-64bit-debuggers/" title="Two 64bit Debuggers" rel="bookmark inlinks">Two 64bit Debuggers</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2009/08/packer-unpack/" title="普通壳的脱壳方法和脱壳技巧【转载】" rel="bookmark inlinks">普通壳的脱壳方法和脱壳技巧【转载】</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/05/idc-script-hilight-template/" title="Idc Script 高亮显示模板" rel="bookmark inlinks">Idc Script 高亮显示模板</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/05/windows-driver-debug-via-ida-pro/" title="IDA 6.1调试驱动" rel="bookmark inlinks">IDA 6.1调试驱动</a><span class="count">( 4 )</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.h4ck.org.cn/2011/07/ida-pe6-dll-unpack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ildasm 4.0 修改版</title>
		<link>http://www.h4ck.org.cn/2011/03/ildasm-4-0-fixed/</link>
		<comments>http://www.h4ck.org.cn/2011/03/ildasm-4-0-fixed/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 10:33:36 +0000</pubDate>
		<dc:creator>obaby</dc:creator>
				<category><![CDATA[破解/汇编『Crack/Asm』]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[PE]]></category>
		<category><![CDATA[PETools]]></category>

		<guid isPermaLink="false">http://www.h4ck.org.cn/?p=2551</guid>
		<description><![CDATA[原版拒绝打开经过某些.NET混淆器处理过的assembly，修改版解除了此限制，猛击此处下载修改版程序。]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://www.h4ck.org.cn/wp-content/uploads//2011/03/il4.0.png" title="il4.0"><img title="il4.0" src="http://www.h4ck.org.cn/wp-content/uploads//2011/03/il4.0.png" alt="" width="627" height="541" /></a></p>
<p>原版拒绝打开经过某些.NET混淆器处理过的assembly，修改版解除了此限制，<a href="http://dl.dbank.com/c02nsj3zgx" target="_blank">猛击此处下载修改版程序。</a><br />
<h3>相关文章</h3>
<ul class="related_posts">
<li><a href="http://www.h4ck.org.cn/2010/12/uppp-v0-6-retail-patch-creater-by-ufo-pu55y/" title="uPPP.v0.6.Retail Patch Creater by UFO-pu55y" rel="bookmark inlinks">uPPP.v0.6.Retail Patch Creater by UFO-pu55y</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/04/reflector-1-0-2011-0408/" title="Reflector 1.0.2011.0408" rel="bookmark inlinks">Reflector 1.0.2011.0408</a><span class="count">( 3 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/09/diablo2oo2s-universal-patcher-v2-23/" title="diablo2oo2's Universal Patcher v2.23" rel="bookmark inlinks">diablo2oo2&#8242;s Universal Patcher v2.23</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2009/08/pe-entry-point/" title="常见语言编写的exe入口点代码" rel="bookmark inlinks">常见语言编写的exe入口点代码</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/01/vmprotect-1-70-4-%e7%a0%b4%e8%a7%a3%e7%89%88/" title="VMProtect 1.70.4 破解版" rel="bookmark inlinks">VMProtect 1.70.4 破解版</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/02/ida-pro-5-6-demo/" title="IDA PRO 5.6 Demo" rel="bookmark inlinks">IDA PRO 5.6 Demo</a><span class="count">( 1 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/01/fhash/" title="文件Hash计算工具（MD5/SHA1/SHA256/CRC32）" rel="bookmark inlinks">文件Hash计算工具（MD5/SHA1/SHA256/CRC32）</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/04/api-monitor-v2r6-x86x64/" title="API Monitor v2r6 x86/x64" rel="bookmark inlinks">API Monitor v2r6 x86/x64</a><span class="count">( 0 )</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.h4ck.org.cn/2011/03/ildasm-4-0-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PE头移位工具 v1.0</title>
		<link>http://www.h4ck.org.cn/2011/01/pe-header-editor-v1-0/</link>
		<comments>http://www.h4ck.org.cn/2011/01/pe-header-editor-v1-0/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 07:02:43 +0000</pubDate>
		<dc:creator>obaby</dc:creator>
				<category><![CDATA[程序设计『Programing』]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[PE]]></category>
		<category><![CDATA[PETools]]></category>

		<guid isPermaLink="false">http://h4ck.ws/?p=2444</guid>
		<description><![CDATA[PE头移位工具 v1.0]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://h4ck.ws/wp-content/uploads//2011/01/PE-Header-Editor.png" title="PE Header Editor"><img title="PE Header Editor" src="http://h4ck.ws/wp-content/uploads//2011/01/PE-Header-Editor.png" alt="" width="461" height="283" /></a></p>
<p><a href="http://dl.dbank.com/c07ekc750f" target="_blank">猛击此处下载这个小东西</a>，<span style="color: #ff0000;">文件校验信息：</span></p>
<p><span style="color: #00ff00;">文件名: C:\Users\obaby\Desktop\PE头编辑器-Release.exe<br />
文件大小: 1110528 字节 (1.06 MB)<br />
修改日期: 2011-01-27 14:54<br />
版本: 1.0.0.0<br />
MD5: 29c70b9287508b398ea20e7aec54f534<br />
SHA1: 24140168299ad0a3ab56aab1c433176e7bcf6470<br />
SHA256: 61a20434a80d323ada0e90fd23f2ec809fce999b0e7907a41f319c3a5eac0c96<br />
CRC32: 5daca903</span><br />
<span id="more-2444"></span><br />
这个小工具的作用就是可以方便的修改PE头，如果修改失败请尝试将移动<span style="color: #ff0000;">长度修改为16的整数倍</span>。这个小工具可以将PE头移动到DOS头中，如下图所示：</p>
<p><a rel="lightbox" href="http://h4ck.ws/wp-content/uploads//2011/01/PE-Header-Editor2.png" title="PE Header Editor2"><img title="PE Header Editor2" src="http://h4ck.ws/wp-content/uploads//2011/01/PE-Header-Editor2.png" alt="" width="615" height="358" /></a></p>
<p>下载后请自行校验程序的MD5信息，有什么问题可以给我留言。 <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> <br />
<h3>相关文章</h3>
<ul class="related_posts">
<li><a href="http://www.h4ck.org.cn/2010/07/kill-360-cloud/" title="蛋疼的挂掉360云查杀的小玩意儿" rel="bookmark inlinks">蛋疼的挂掉360云查杀的小玩意儿</a><span class="count">( 3 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/10/castalia-2011-for-codegear-delphi/" title="Castalia 2011 for CodeGear Delphi" rel="bookmark inlinks">Castalia 2011 for CodeGear Delphi</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/12/total-commander-8-0-public-beta-10-x64-crack-log/" title="Total Commander 8.0 public beta 10 (x64) Crack Log" rel="bookmark inlinks">Total Commander 8.0 public beta 10 (x64) Crack Log</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/08/user-agent-simulator-v0-1/" title="User Agent Simulator V0.1" rel="bookmark inlinks">User Agent Simulator V0.1</a><span class="count">( 3 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/02/windows-api/" title="新编Windows API参考大全" rel="bookmark inlinks">新编Windows API参考大全</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/12/dup-2-21-beta-9/" title="dUP 2.21 BETA  9" rel="bookmark inlinks">dUP 2.21 BETA  9</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/06/w32dasm-v10-and-imprec-v1-7c/" title="W32Dasm V10 And ImpREC.v1.7c" rel="bookmark inlinks">W32Dasm V10 And ImpREC.v1.7c</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/10/glass-cmd-for-win-7/" title="Glass CMD For Win 7" rel="bookmark inlinks">Glass CMD For Win 7</a><span class="count">( 5 )</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.h4ck.org.cn/2011/01/pe-header-editor-v1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restorator 2009 4.0 build 1807 Patch</title>
		<link>http://www.h4ck.org.cn/2010/12/restorator-2009-4-0-build-1807-patch/</link>
		<comments>http://www.h4ck.org.cn/2010/12/restorator-2009-4-0-build-1807-patch/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 03:24:23 +0000</pubDate>
		<dc:creator>obaby</dc:creator>
				<category><![CDATA[破解/汇编『Crack/Asm』]]></category>
		<category><![CDATA[Crack]]></category>
		<category><![CDATA[PE]]></category>

		<guid isPermaLink="false">http://h4ck.ws/?p=2222</guid>
		<description><![CDATA[Restorator is a resource editor for Windows. Resources are additional data accompanying a Windows application. Resources are usually part of the application interface. E.g. dialogs, menus, images, text, icons etc. They are usually stored with the executable or dll (see below for other possible Resource Files). Restorator can edit those resource files and thereby change the look and feel or language of an application completely independent of the development and compile tools.
]]></description>
			<content:encoded><![CDATA[<div>
<p><a rel="lightbox" href="http://h4ck.ws/wp-content/uploads//2010/12/1.png" title="1"><img title="1" src="http://h4ck.ws/wp-content/uploads//2010/12/1.png" alt="" width="606" height="431" /></a></p>
</div>
<p>整理了一下，做了个破解补丁出来，<a href="http://www.anonym.to/?http://www.file-upload.net/download-3037038/Restorator-2009-4.0-build-1807.rar.html" target="_blank">猛击此处下载程序</a>。<br />
<span id="more-2222"></span><br />
<a rel="lightbox" href="http://h4ck.ws/wp-content/uploads//2010/12/2.png" title="2"><img title="2" src="http://h4ck.ws/wp-content/uploads//2010/12/2.png" alt="" width="339" height="322" /></a></p>
<blockquote><p>Restorator is a resource editor for Windows. Resources are additional data accompanying a Windows application. Resources are usually part of the application interface. E.g. dialogs, menus, images, text, icons etc. They are usually stored with the executable or dll (see below for other possible Resource Files). Restorator can edit those resource files and thereby change the look and feel or language of an application completely independent of the development and compile tools.</p>
<p>You can edit resources directly in the executable, e.g. by opening an exe file. Main usage:</p>
<p>•For localizing (translating) programs:<br />
Restorator allows to localize entire applications:<br />
You can edit all resources that contain text, and translate them to different languages. Also, with an external image editor, you can translate texts that appear in images.<br />
•As a resource editor:<br />
For developers &#8211; manage your .res, .dcr and other files containing resources efficiently with Restorator<br />
•As a skin editor:<br />
Modify the user interface of any Windows 32-bit program and create your own custom applications<br />
Restorator makes it easy to view, extract, and change resources like images, icons, text, menus, dialogs, sounds, animations, and many more. Among the file types understood by Restorator are exe, dll, res (resource files), rc (resource compiler), ocx (Active X), scr (screen saver), dcr (delphi component resource) and many other file types.</p>
<div></div>
</blockquote>
<h3>相关文章</h3>
<ul class="related_posts">
<li><a href="http://www.h4ck.org.cn/2012/01/hamster-cannon-1-0/" title="关于Android 平台广告的一些想法" rel="bookmark inlinks">关于Android 平台广告的一些想法</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/04/cracklb-dvd-2011-full/" title="CRACKL@B DVD 2011 FULL" rel="bookmark inlinks">CRACKL@B DVD 2011 FULL</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2009/12/winrar-v3-91-keyfilemaker-only-core/" title="WinRAR.v3.91.Keyfilemaker.Only-CORE" rel="bookmark inlinks">WinRAR.v3.91.Keyfilemaker.Only-CORE</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2012/01/glodwave-v5-65-nag-removed/" title="GoldWave v5.65 Nag Removed" rel="bookmark inlinks">GoldWave v5.65 Nag Removed</a><span class="count">( 4 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/01/dailypim-4-1-cracked-by-obaby/" title="DailyPIM 4.1 Cracked by Obaby [修改为Loader模式，功能无缺失]" rel="bookmark inlinks">DailyPIM 4.1 Cracked by Obaby [修改为Loader模式，功能无缺失]</a><span class="count">( 3 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/03/thunder-7-1-6-2194-ad-killer/" title="迅雷 7.1.6.2194去广告补丁" rel="bookmark inlinks">迅雷 7.1.6.2194去广告补丁</a><span class="count">( 3 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/07/regutility-4-0-cracked/" title="RegUtility 4.0 Cracked" rel="bookmark inlinks">RegUtility 4.0 Cracked</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2009/08/passking-crack/" title="爆破万能密码查看器{PassKing}" rel="bookmark inlinks">爆破万能密码查看器{PassKing}</a><span class="count">( 1 )</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.h4ck.org.cn/2010/12/restorator-2009-4-0-build-1807-patch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ExplorerSuite.13.12.09</title>
		<link>http://www.h4ck.org.cn/2010/02/explorersuite-13-12-09/</link>
		<comments>http://www.h4ck.org.cn/2010/02/explorersuite-13-12-09/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 03:48:33 +0000</pubDate>
		<dc:creator>obaby</dc:creator>
				<category><![CDATA[破解/汇编『Crack/Asm』]]></category>
		<category><![CDATA[PE]]></category>
		<category><![CDATA[PETools]]></category>

		<guid isPermaLink="false">http://www.h4ck.org.cn/?p=1220</guid>
		<description><![CDATA[Click here to download this file~ 相关文章 CRACKL@B DvD SHELL 2010( 0 ) Reflector 1.0.2011.0408( 3 ) ildasm 4.0 修改版( 0 ) Total Commander 8.0 public beta 10 (x64) Crack Log( 0 ) Ultra Compare 7.0 序列号( 0 ) 文件Hash计算工具（MD5/SHA1/SHA256/CRC32）( 0 ) Dup 2.19 文件补丁生成器 And Cazaseriales内存注册机生成器( 0 ) W32Dasm V10 And ImpREC.v1.7c( 0 )]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://www.h4ck.org.cn/wp-content/uploads/2010/02/cff.png" title="cff"><img title="cff" src="http://www.h4ck.org.cn/wp-content/uploads/2010/02/cff.png" alt="" width="577" height="434" /></a></p>
<p><a href="http://cracklab.ru/_dl2/centner/petools/ExplorerSuite.13.12.09.zip"> Click here to download this file~ <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> </a><br />
<h3>相关文章</h3>
<ul class="related_posts">
<li><a href="http://www.h4ck.org.cn/2011/01/fhash/" title="文件Hash计算工具（MD5/SHA1/SHA256/CRC32）" rel="bookmark inlinks">文件Hash计算工具（MD5/SHA1/SHA256/CRC32）</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/01/vmprotect-1-70-4-%e7%a0%b4%e8%a7%a3%e7%89%88/" title="VMProtect 1.70.4 破解版" rel="bookmark inlinks">VMProtect 1.70.4 破解版</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2009/12/p32dasm-v2-6-cracked/" title="P32dasm.v2.6 Cracked" rel="bookmark inlinks">P32dasm.v2.6 Cracked</a><span class="count">( 2 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/07/dup-2-19-keygen/" title="Dup 2.19 文件补丁生成器 And Cazaseriales内存注册机生成器" rel="bookmark inlinks">Dup 2.19 文件补丁生成器 And Cazaseriales内存注册机生成器</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/03/ultra-compare-7-0-sn/" title="Ultra Compare 7.0 序列号" rel="bookmark inlinks">Ultra Compare 7.0 序列号</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/12/dup-2-21-beta-9/" title="dUP 2.21 BETA  9" rel="bookmark inlinks">dUP 2.21 BETA  9</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/05/winhex-16-0-sr-2-%e3%80%90share%e3%80%91/" title="WinHex 16.0 SR-2 【share】" rel="bookmark inlinks">WinHex 16.0 SR-2 【share】</a><span class="count">( 1 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/06/w32dasm-v10-and-imprec-v1-7c/" title="W32Dasm V10 And ImpREC.v1.7c" rel="bookmark inlinks">W32Dasm V10 And ImpREC.v1.7c</a><span class="count">( 0 )</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.h4ck.org.cn/2010/02/explorersuite-13-12-09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CRACKL@B SUN DVD 2010</title>
		<link>http://www.h4ck.org.cn/2010/01/cracklb-sun-dvd-2010/</link>
		<comments>http://www.h4ck.org.cn/2010/01/cracklb-sun-dvd-2010/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 03:37:22 +0000</pubDate>
		<dc:creator>obaby</dc:creator>
				<category><![CDATA[破解/汇编『Crack/Asm』]]></category>
		<category><![CDATA[软件共享『SoftWare』]]></category>
		<category><![CDATA[OD]]></category>
		<category><![CDATA[PE]]></category>
		<category><![CDATA[Peid]]></category>
		<category><![CDATA[PETools]]></category>

		<guid isPermaLink="false">http://www.h4ck.org.cn/?p=1053</guid>
		<description><![CDATA[Всего на DVD диске находится 4482 Мбайт отличного материала. Вы можете приобрести такой диск и останетесь довольны, хотя его цена достаточно высока для привычного по российским меркам DVD диска, но это специализированный диск, в котором всё на высшем уровне - я работал над ним также упорно и кропотливо как над сайтом и доволен своей работой. В общем, не смотрите сурово на цену диска (для нас с поставщиком и почтовыми работниками это минимальная цена при которой есть интерес заниматься рутинной работой по распространению диска), деньги всегда заработаются ещё, а бесценные знания и опыт принесенные уникальным материалом останутся на всю жизнь. Мы рады доставить диск вам, если он вам действительно нужен ! ]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://www.h4ck.org.cn/wp-content/uploads/2010/01/crack.jpg" title="crack"><img title="crack" src="http://www.h4ck.org.cn/wp-content/uploads/2010/01/crack.jpg" alt="crack" width="572" height="430" /></a></p>
<p>Всего на DVD диске находится 4482 Мбайт отличного материала. Вы можете приобрести такой диск и останетесь довольны, хотя его цена достаточно высока для привычного по российским меркам DVD диска, но это специализированный диск, в котором всё на высшем уровне &#8211; я работал над ним также упорно и кропотливо как над сайтом и доволен своей работой. В общем, не смотрите сурово на цену диска (для нас с поставщиком и почтовыми работниками это минимальная цена при которой есть интерес заниматься рутинной работой по распространению диска), деньги всегда заработаются ещё, а бесценные знания и опыт принесенные уникальным материалом останутся на всю жизнь. Мы рады доставить диск вам, если он вам действительно нужен !</p>
<p><span id="more-1053"></span></p>
<p>Содержание диска CRACKL@B SKY DVD 2010<br />
Последнее обновление дисков &#8211; октябрь 2009 года</p>
<p>CRACKL@B SKY DVD 2010 это дополнительный диск комплекта “оригинальный DVD-ROM крэкера”, на нём вы найдете более 300 полезных программ, из них:<br />
60% бесплатных программ,<br />
80% программ 2009 года выпуска,<br />
60% программ имеющих оценку “5 баллов”,<br />
большинство программ входят в ТОП 100 лучших программ 2008 и 2009 годов.</p>
<p>Вот список структуры папок с этими программами &#8211; они либо бесплатные, либо с крэком/серийником:<br />
MULTIMEDIA\Audio\Adobe Audition 3.0 + Crack<br />
MULTIMEDIA\Audio\BonkEnc 1.0.13 Freeware<br />
MULTIMEDIA\Audio\FL Studio XXL 9 + Crack<br />
MULTIMEDIA\Audio\Guitar Pro 5.2 + Crack<br />
MULTIMEDIA\Audio\Impulse Tracker 2.14 Freeware<br />
MULTIMEDIA\Audio\MediaCoder 0.7.2.4522 Freeware<br />
MULTIMEDIA\Audio\mp3DirectCut 2.11 Freeware<br />
MULTIMEDIA\Audio\Sonic Foundry Virtual MIDI Router 4.0 Freeware<br />
MULTIMEDIA\Audio\Sound Forge Pro 10.0 + Crack<br />
MULTIMEDIA\Audio\Steinberg Cubase 4.1.3 + Crack<br />
MULTIMEDIA\Graphics\Artweaver 1.0.1.173 Freeware<br />
MULTIMEDIA\Graphics\Blender 2.49b Freeware<br />
MULTIMEDIA\Graphics\Corel Paint Shop Pro Photo X2 12.01 + Crack<br />
MULTIMEDIA\Graphics\FastPictureViewer 1.0.111 Freeware<br />
MULTIMEDIA\Graphics\FastStone Image Viewer 3.9 Freeware<br />
MULTIMEDIA\Graphics\Gimp 2.6.7 Freeware<br />
MULTIMEDIA\Graphics\HyperSnap 6.61.06 Rus + Crack<br />
MULTIMEDIA\Graphics\IcoFX 1.6.4 Freeware<br />
MULTIMEDIA\Graphics\IrfanView 4.25 Freeware<br />
MULTIMEDIA\Graphics\JAlbum 8.5.1 Freeware<br />
MULTIMEDIA\Graphics\MDM Icons Extractor 1.41 Freeware<br />
MULTIMEDIA\Graphics\Microangelo Toolset 6.10 + Crack<br />
MULTIMEDIA\Graphics\Paint.NET 3.36 Freeware<br />
MULTIMEDIA\Graphics\PhotoFiltre 6.3.2 Freeware<br />
MULTIMEDIA\Graphics\Picasa 3.50.79.69 Freeware<br />
MULTIMEDIA\Graphics\ScanKromsator 5.92 Full Freeware<br />
MULTIMEDIA\Graphics\WinSnap 3.1.2 + Crack<br />
MULTIMEDIA\Graphics\XNView Full 1.96.5 Freeware<br />
MULTIMEDIA\Player\AIMP 2.60.505 RC1 Freeware<br />
MULTIMEDIA\Player\Corel WinDVD Pro 2010 10.0.4.258 + Crack<br />
MULTIMEDIA\Player\Crystal Player Pro 1.98 + Crack<br />
MULTIMEDIA\Player\FLY2000TV 2.38 RC2 + Crack<br />
MULTIMEDIA\Player\Foobar2000 0.9.6.9 Freeware<br />
MULTIMEDIA\Player\GOM Player 2.1.20.4830 Rus Freeware<br />
MULTIMEDIA\Player\iTunes 9.0.1 Freeware<br />
MULTIMEDIA\Player\jetAudio Basic 7.5.5 Freeware<br />
MULTIMEDIA\Player\KMPlayer 2.9.4.1435 Freeware<br />
MULTIMEDIA\Player\Light Alloy 4.4 RC3 Freeware<br />
MULTIMEDIA\Player\PowerDVD Ultra 9.0.2201 + Crack<br />
MULTIMEDIA\Player\QuickTime 7.6.4 Freeware<br />
MULTIMEDIA\Player\Real Alternative 2.0.1 Freeware<br />
MULTIMEDIA\Player\VLC Media Player 1.0.2 Freeware<br />
MULTIMEDIA\Player\Winamp PRO 5.56 + Crack<br />
MULTIMEDIA\Player\Windows Media Player 11.0 Rus Freeware<br />
MULTIMEDIA\Player\Zoom Player MAX 7.00 RC1 + Crack<br />
MULTIMEDIA\Player\K-Lite Codec Pack Full 5.1.0 Freeware<br />
MULTIMEDIA\Text\AbiWord 2.7.10 Freeware<br />
MULTIMEDIA\Text\Adobe Reader 9.1 Freeware<br />
MULTIMEDIA\Text\Book Restorer 4.2.1 Freeware<br />
MULTIMEDIA\Text\Bred2i 2.964 Freeware<br />
MULTIMEDIA\Text\CoolReader 3.00.8b Freeware<br />
MULTIMEDIA\Text\DjVu Hyperlinks Editor 0.8<br />
MULTIMEDIA\Text\DjVu Imager 1.3 SRC<br />
MULTIMEDIA\Text\DjVu Small 0.3.4<br />
MULTIMEDIA\Text\DjvuOCR 2.4 beta 4 Full<br />
MULTIMEDIA\Text\Document Express Editor LE 6.0.1.1320 Freeware<br />
MULTIMEDIA\Text\EmEditor Pro 8.06 Rus + Crack<br />
MULTIMEDIA\Text\FinePrint 6.11 + Crack<br />
MULTIMEDIA\Text\Foxit Reader 3.1.1.0928 Freeware<br />
MULTIMEDIA\Text\HTMLAsText 1.11 Freeware<br />
MULTIMEDIA\Text\OpenOffice.org 3.1.1 Pro Freeware<br />
MULTIMEDIA\Text\PdfFactory Pro 3.51 + Crack<br />
MULTIMEDIA\Text\PDFtoDjVu LE 0.1<br />
MULTIMEDIA\Text\Shtirlitz IV 4.01 Freeware<br />
MULTIMEDIA\Text\STDU Viewer 1.5.275 Freeware<br />
MULTIMEDIA\Text\Tomahawk PDF+ 3.0.1.2 Freeware<br />
MULTIMEDIA\Text\WinMerge 2.12.4 Freeware<br />
MULTIMEDIA\Video\Any Video Converter 2.7.8 Freeware<br />
MULTIMEDIA\Video\Aone Ultra Video Splitter 5.4.0822 + Crack<br />
MULTIMEDIA\Video\Avidemux 2.5.1 Freeware<br />
MULTIMEDIA\Video\DivX Create Bundle 7.0 + Crack<br />
MULTIMEDIA\Video\Free DVD Decrypter 1.4.1.53 Freeware<br />
MULTIMEDIA\Video\Free FLV Converter 6.7.2 Freeware<br />
MULTIMEDIA\Video\Free Video Converter 2.1 Freeware<br />
MULTIMEDIA\Video\K-Lite Video Conversion Pack 1.6.0 Freeware<br />
MULTIMEDIA\Video\Muvee Reveal 7.0 + Crack<br />
MULTIMEDIA\Video\Sony Vegas Pro 9.0.563 Rus + Crack<br />
MULTIMEDIA\Video\VirtualDub 1.9.6 Freeware<br />
MULTIMEDIA\Video\VirtualDubMod 1.5.10.2 Freeware<br />
MULTIMEDIA\Video\Winavi Video Converter 8.0 Final + Crack<br />
NETWORK\Advanced\AI RoboForm Pro 6.9.97 + Crack<br />
NETWORK\Advanced\HTTP Analyzer 5.0.1.177 + Crack<br />
NETWORK\Advanced\Semonitor 4.1 Rus + Crack<br />
NETWORK\Advanced\Small HTTP Server 3.05.74 Freeware<br />
NETWORK\Advanced\WebMoney Keeper Classic 3.8.0.0 Freeware<br />
NETWORK\Advanced\WFetch 1.4 Freeware<br />
NETWORK\Advanced\WIPE 2.45 Freeware<br />
NETWORK\Advanced\Eioa?iao.Eioaeae 2.9 Freeware<br />
NETWORK\Analyze\DU Meter 4.16 Rus + Crack<br />
NETWORK\Analyze\IECookiesView 1.74 Freeware<br />
NETWORK\Analyze\IEHistoryView 1.41 Rus Freeware<br />
NETWORK\Analyze\IPNetInfo 1.19 Rus Freeware<br />
NETWORK\Analyze\MyLastSearch 1.42 Freeware<br />
NETWORK\Analyze\NetWorx 5.0.4 Freeware<br />
NETWORK\Analyze\OperaCacheView 1.31 Freeware<br />
NETWORK\Analyze\WinUpdatesList 1.23 Rus Freeware<br />
NETWORK\Browser\Google Chrome 4.0.221.6b Freeware<br />
NETWORK\Browser\Internet Explorer 8 RU Final 32-bit Freeware<br />
NETWORK\Browser\Maxthon 2.5.9.2122 Freeware<br />
NETWORK\Browser\Mozilla Firefox 3.5.3 Freeware<br />
NETWORK\Browser\Opera 10.00 Rus Freeware<br />
NETWORK\Browser\SeaMonkey 2.0 RC2 Rus Freeware<br />
NETWORK\Browser\SlimBrowser 4.12.015 Freeware<br />
NETWORK\Chat\ICQ 6.5.1042 Freeware<br />
NETWORK\Chat\ICQ Lite 1.0 Freeware<br />
NETWORK\Chat\Mail.ru Aaaio 5.5 Freeware<br />
NETWORK\Chat\Miranda IM 0.8.8 Final Freeware<br />
NETWORK\Chat\mIRC 6.35 Rus + Crack<br />
NETWORK\Chat\ooVoo 2.2 Freeware<br />
NETWORK\Chat\Pidgin 2.6.2 Freeware<br />
NETWORK\Chat\QIP Infium 2.0.9032.1 RC4 Freeware<br />
NETWORK\Chat\Skype 4.1.0.166 Freeware<br />
NETWORK\Chat\WebcamXP Pro 5.4.3 Rus + Crack<br />
NETWORK\Download\DC++ 0.75 Freeware<br />
NETWORK\Download\Download Master 5.5.14.1175 Freeware<br />
NETWORK\Download\DownTester 1.20 Rus Freeware<br />
NETWORK\Download\FlashGet 2.11.0.1188 + Crack<br />
NETWORK\Download\Free Download Manager 3.0.870 Freeware<br />
NETWORK\Download\Offline Explorer Enterprise 5.6.3094 SR2 + Crack<br />
NETWORK\Download\Orbit Downloader 2.8.16 Freeware<br />
NETWORK\Download\Portable Offline Browser 5.6 + Crack<br />
NETWORK\Download\Teleport Pro 1.61 + Crack<br />
NETWORK\Download\Universal Share Downloader 1.35 Freeware<br />
NETWORK\Download\WebVideoCap 1.37 Rus Freeware<br />
NETWORK\Download\WM Recorder 12.5 + Crack<br />
NETWORK\FM-TV\All-Radio 3.0 Freeware<br />
NETWORK\FM-TV\ProgDVB 6.22 Freeware<br />
NETWORK\FM-TV\RadioClicker Lite 7.1.6.0 Freeware<br />
NETWORK\FM-TV\RadioSure 2.0.872 Freeware<br />
NETWORK\FM-TV\SopCast 3.2.4 Freeware<br />
NETWORK\FM-TV\Super Internet TV 8.0 + Crack<br />
NETWORK\FM-TV\TV Player Classic 5.4.12 Freeware<br />
NETWORK\FTP\CuteFTP Pro 8.3.3.0054 Rus + Crack<br />
NETWORK\FTP\FileZilla 3.2.8 Freeware<br />
NETWORK\FTP\Serv-U FTP Server 9.0.0.3 + Crack<br />
NETWORK\FTP\WinSCP 4.2.3b Freeware<br />
NETWORK\Local\AdapterWatch 1.05 Rus Freeware<br />
NETWORK\Local\BlueSoleil 6.4.249.0 Rus + Crack<br />
NETWORK\Local\BluetoothView 1.31 Rus Freeware<br />
NETWORK\Local\DNSDataView 1.03 Freeware<br />
NETWORK\Local\Hamachi 2.0.1.62 Freeware<br />
NETWORK\Local\MD ARP Monitor 3.7b2 Freeware<br />
NETWORK\Local\NetResView 1.16 Rus Freeware<br />
NETWORK\Local\Radmin 3.3 Rus + Crack<br />
NETWORK\Local\TeamViewer 4.1.6911 Freeware<br />
NETWORK\Local\UserGate 5.2 + Crack<br />
NETWORK\Local\WirelessNetView 1.26 Rus Freeware<br />
NETWORK\Mail\AntispamSniper 3.2.1.5 for The Bat!<br />
NETWORK\Mail\Becky Internet Mail 2.50.07 Rus + Crack<br />
NETWORK\Mail\Koma-Mail 3.79 Freeware<br />
NETWORK\Mail\Mozilla Thunderbird 3.0 beta 4 Freeware<br />
NETWORK\Mail\The Bat! 4.2.10.1 Pro Final + Crack<br />
NETWORK\p2p\BitTorrent 6.2.15918 Freeware<br />
NETWORK\p2p\eMule 0.49c Freeware<br />
NETWORK\p2p\RatioMaster 1.8.9 Freeware<br />
NETWORK\p2p\uTorrent 1.8.4 Freeware<br />
NETWORK\Proxy\Ad Muncher 4.73 + Crack<br />
NETWORK\Proxy\Proxomitron 4.5j Freeware<br />
NETWORK\Proxy\Proxy Switcher Pro 4.0 + Crack<br />
NETWORK\Proxy\Tor 0.2 Freeware<br />
SYSTEM\Backup\Acronis True Image Home 2010 13.5055 + Crack<br />
SYSTEM\Backup\Active Disk Image 3.3.4 + Crack<br />
SYSTEM\Backup\Backup4All Professional 4.2 + Crack<br />
SYSTEM\Backup\Cobian Backup 9.5.1.212 Freeware<br />
SYSTEM\Backup\Driver Magician 3.45 Rus + Crack<br />
SYSTEM\Backup\Handy Backup Pro 6.2.5.2947 + Crack<br />
SYSTEM\Backup\KLS Backup 2009 Pro 5.0 + Crack<br />
SYSTEM\Backup\Norton Ghost 14.0 + Crack<br />
SYSTEM\Backup\OandO DiskImage Server Edition 4.1.34 + Crack<br />
SYSTEM\Backup\R-Drive Image 4.6.4600 + Crack<br />
SYSTEM\Delete-Recover\Active UNDELETE 7.3.003 SE + Crack<br />
SYSTEM\Delete-Recover\EasyRecovery Pro 6.20 + Crack<br />
SYSTEM\Delete-Recover\FileASSASSIN 1.06 Freeware<br />
SYSTEM\Delete-Recover\Freeraser 1.0.0.23 Freeware<br />
SYSTEM\Delete-Recover\GetDataBack for FAT and NTFS 4.00.2 + Crack<br />
SYSTEM\Delete-Recover\OpenedFilesView 1.45 Rus Freeware<br />
SYSTEM\Delete-Recover\R-Studio 5.1.130005 Rus + Crack<br />
SYSTEM\Delete-Recover\Recuva 1.31.437 Freeware<br />
SYSTEM\Delete-Recover\UFS Explorer Professional Recovery 3.15.3 + Crack<br />
SYSTEM\Delete-Recover\Unlocker 1.8.7 Freeware<br />
SYSTEM\Device-Virtual\AR RAM Disk 1.20 Freeware<br />
SYSTEM\Device-Virtual\Flashboot 1.4.0.157 + Crack<br />
SYSTEM\Device-Virtual\HP USB Disk Storage Format Tool 2.1.8 Freeware<br />
SYSTEM\Device-Virtual\Multi Meter 0.03 Freeware<br />
SYSTEM\Device-Virtual\Sandboxie 3.40 Freeware<br />
SYSTEM\Device-Virtual\Sun xVM VirtualBox 2.2.4 Freeware<br />
SYSTEM\Device-Virtual\Virtual Floppy Drive 2.1<br />
SYSTEM\Hardrive\Auslogics Disk Defrag 2.1.2.45 Freeware<br />
SYSTEM\Hardrive\OandO Defrag Pro 12.0.197 + Crack<br />
SYSTEM\Hardrive\Paragon Partition Manager 10.0.7893 + Crack<br />
SYSTEM\Hardrive\SequoiaView 1.3 Freeware<br />
SYSTEM\Hardrive\Victoria 4.46 Freeware<br />
SYSTEM\Protect\Ad-Aware Anniversary 2009 Pro 8.0.8 + Crack<br />
SYSTEM\Protect\Agnitum Outpost Security Suite Pro 2009 6.7.1 + Crack<br />
SYSTEM\Protect\Avast Pro 4.8.1356 Rus + Crack<br />
SYSTEM\Protect\AVZ 4.32 Freeware<br />
SYSTEM\Protect\Comodo Firewall and AntiVirus 3.12 Freeware<br />
SYSTEM\Protect\Dr.Web Security Space 5.00.1.10052 + Crack<br />
SYSTEM\Protect\GMER 1.0.15.15163 Freeware<br />
SYSTEM\Protect\Kaspersky Internet Security 2010 9.0 + Crack<br />
SYSTEM\Protect\Malicious Software Removal Tool 3.0 Freeware<br />
SYSTEM\Protect\NOD32 Antivirus Module 1.2.1.36.2 for The Bat!<br />
SYSTEM\Protect\Norton Internet Security 2010 17.0 + Crack<br />
SYSTEM\Protect\Outpost Firewall Pro 2009 6.7.1 + Crack<br />
SYSTEM\Protect\PC Tools Firewall Plus 6.0.0.74 Freeware<br />
SYSTEM\Protect\Privatefirewall 7.0.20.29 Freeware<br />
SYSTEM\Protect\Spybot Search and Destroy 1.6.3.51b Freeware<br />
SYSTEM\Protect\Spyware Terminator 2.6.0.110 Freeware<br />
SYSTEM\Protect\ZoneAlarm Pro 9.0.114.000 + Crack<br />
SYSTEM\SysClean\Ashampoo UnInstaller 4.02 + Crack<br />
SYSTEM\SysClean\CCleaner 2.24.1010 Freeware<br />
SYSTEM\SysClean\Comodo System Cleaner 2.0.111095.7 Freeware<br />
SYSTEM\SysClean\diskSpace Explorer 3 Home Edition + Crack<br />
SYSTEM\SysClean\MyUninstaller 1.50 Rus<br />
SYSTEM\SysClean\Revo Uninstaller 1.83 Freeware<br />
SYSTEM\SysClean\TreeSize Professional 5.2 + Crack<br />
SYSTEM\Test-Info\AIDA32 3.93 Freeware<br />
SYSTEM\Test-Info\BgInfo 4.15 Freeware<br />
SYSTEM\Test-Info\CPU-Z 1.52.2 Freeware<br />
SYSTEM\Test-Info\EVEREST Ultimate Edition 5.30.1900 Final + Crack<br />
SYSTEM\Test-Info\Fraps 2.9.9 + Crack<br />
SYSTEM\Test-Info\HWiNFO32 3.20 Freeware<br />
SYSTEM\Test-Info\IQ Test 2.1 Freeware<br />
SYSTEM\Test-Info\Nokia Monitor Test 2.0 Freeware<br />
SYSTEM\Test-Info\ServiWin 1.37 Freeware<br />
SYSTEM\Test-Info\SiSoftware Sandra 2009 SP4 Enterprise + Crack<br />
SYSTEM\Test-Info\System Information Viewer 4.01 Freeware<br />
SYSTEM\Test-Info\Iieiue Oaaoiaie Oano E?oa?a 1.0.1<br />
SYSTEM\Tuner\FileTypesMan 1.53 Rus Freeware<br />
SYSTEM\Tuner\Pothos Red Button 3.75 Freeware<br />
SYSTEM\Tuner\PowerOff 6.2 Freeware<br />
SYSTEM\Tuner\Reg Organizer 5.0b4 + Crack<br />
SYSTEM\Tuner\Registry Mechanic 9.0 + Crack<br />
SYSTEM\Tuner\RivaTuner 2.24n Freeware<br />
SYSTEM\Tuner\ShellExView 1.41 Rus Freeware<br />
SYSTEM\Tuner\StarDock ObjectDock 1.9 Freeware<br />
SYSTEM\Tuner\Taskbar Shuffle 2.5 Freeware<br />
SYSTEM\Tuner\TeraCopy 2.07b Freeware<br />
SYSTEM\Tuner\TuneUp Utilities 2009 8.0 + Crack<br />
SYSTEM\Tuner\TweakNow PowerPack 2009 1.7.0 Freeware<br />
SYSTEM\Tuner\TweakNow WinSecret 1.5.0 Freeware<br />
SYSTEM\Tuner\XP SysPad 7.9.6 Freeware<br />
SYSTEM\Tuner\XP-AntiSpy 3.97.3 Rus Freeware<br />
USER\Archive\7-Zip 4.65 Freeware<br />
USER\Archive\ExtractNow 4.40 Freeware<br />
USER\Archive\IZArc 4.0b1 Freeware<br />
USER\Archive\PeaZip 2.7 Freeware<br />
USER\Archive\PowerArchiver 2010 Pro 11.60 + Crack<br />
USER\Archive\Simplyzip 1.1b74 Freeware<br />
USER\Archive\WinUHA 2.0 RC1 Freeware<br />
USER\Archive\WinZip 14.0.8631b + Crack<br />
USER\Cd-Dvd\Alcohol 120% 1.9.8.7612 + Crack<br />
USER\Cd-Dvd\Ashampoo Burning Studio 9.10 Final Rus + Crack<br />
USER\Cd-Dvd\CDBurnerXP 4.2.6.1706 Freeware<br />
USER\Cd-Dvd\cdrLabel 7.1 Rus<br />
USER\Cd-Dvd\CloneCD 5.3.1.4 + Crack<br />
USER\Cd-Dvd\DAEMON Tools Pro Advanced 4.35.0306 + Crack<br />
USER\Cd-Dvd\DeepBurner Pro 1.9.0.228 Rus + Crack<br />
USER\Cd-Dvd\DVD Menu Studio 2.0.17.0 + Crack<br />
USER\Cd-Dvd\DVD-lab PRO 2.51 + Crack<br />
USER\Cd-Dvd\DVDFab 6.1.1.2b + Crack<br />
USER\Cd-Dvd\Easy CD-DA Extractor Pro 12.0.3.1 + Crack<br />
USER\Cd-Dvd\Exact Audio Copy 0.99 Prebeta 3 Freeware<br />
USER\Cd-Dvd\InfraRecorder 0.50 Freeware<br />
USER\Cd-Dvd\IsoBuster 2.6 + Crack<br />
USER\Cd-Dvd\Nero 9.4.13.2 Micro + Crack<br />
USER\Cd-Dvd\Small CD-Writer 1.4 Freeware<br />
USER\Cd-Dvd\UltraISO Premium 9.3.5 + Crack<br />
USER\Cd-Dvd\Virtual CD 10 + Crack<br />
USER\Commander\FAR Manager 2.0.1166b Freeware<br />
USER\Commander\FreeCommander 2009.02 Freeware<br />
USER\Commander\NirCmd 2.37 Freeware<br />
USER\Commander\Q-Dir 3.95 Freeware<br />
USER\Commander\Total Commander 7.50a + Crack<br />
USER\Commander\Unreal Commander 0.95.717 Freeware<br />
USER\Crypto\BestCrypt Volume Encryption 2.12.07 ML Rus + Crack<br />
USER\Crypto\GnuPG 1.4.10b Freeware<br />
USER\Crypto\KeePass Password Safe 2.09 Freeware<br />
USER\Crypto\PGP Desktop Professional 9.10 + Crack<br />
USER\Crypto\TrueCrypt 6.2a Freeware<br />
USER\Crypto\WinPT 1.4.2 Freeware<br />
USER\Helpful\Advanced Grapher 2.2 Freeware<br />
USER\Helpful\Artmoney Pro 7.31 Rus + Crack<br />
USER\Helpful\BinText 3.00 Freeware<br />
USER\Helpful\Cain and Abel 4.9.34 Freeware<br />
USER\Helpful\Check For Updates 1.0 Freeware<br />
USER\Helpful\CoodClip 2.10 + Crack<br />
USER\Helpful\DeskSpace 1.5.5.4 Full + Crack<br />
USER\Helpful\Google Earth Free 5.0 Freeware<br />
USER\Helpful\Kassy 0.71 + Crack<br />
USER\Helpful\Kristanix File Renamer Turbo 2.62 + Crack<br />
USER\Helpful\NET Framework 3.5+<br />
USER\Helpful\pMetro 1.29.1 Freeware<br />
USER\Helpful\ProduKey 1.38 Rus Freeware<br />
USER\Helpful\Punto Switcher 3.1.1 Freeware<br />
USER\Helpful\QuickPic SchemCreator 3.6.x + Crack<br />
USER\Helpful\Radialix 2.08 + Crack<br />
USER\Helpful\Stamina 2.5 Freeware<br />
USER\Helpful\Stamp 0.85 Registered<br />
USER\Helpful\Sysinternals Suite 7.10.2009 Freeware<br />
USER\Helpful\Tiger Files Renamer 2.3.7 Freeware<br />
USER\Helpful\TortoiseSVN 1.6.5.16974 Freeware<br />
USER\Helpful\VirtuaWin 4.1 Freeware<br />
USER\Helpful\Volumouse 1.72 Rus Freeware<br />
USER\Organizer\EssentialPIM 3.12 Freeware<br />
USER\Organizer\eXtreme Movie Manager 7.0.5 + Crack<br />
USER\Organizer\MediaMonkey 3.1.2.1271b Freeware<br />
USER\Organizer\Movienizer 2.1.1.80 Freeware<br />
USER\Organizer\MPEG Audio Collection 2.92 Freeware<br />
USER\Organizer\Open Contacts 6.0.3 Freeware<br />
USER\Organizer\Soundbase 2009.10.14 Freeware<br />
USER\Organizer\WinOrganizer 4.1 + Crack<br />
USER\Organizer\WireNote 3.5.2 Freeware<br />
USER\Organizer\Workrave 1.9.0 Freeware<br />
USER\Search\Archivarius 3000 4.22 + Crack<br />
USER\Search\Effective File Search 5.2 + Crack<br />
USER\Search\Google Desktop 5.9.909 Freeware<br />
USER\Search\SearchMyFiles 1.20 Rus Freeware</p>
<p>В общем, наверняка, диск вам понравится даже если вы не крэкер. И вы потратите даже не одну неделю, чтобы попробовать все программы на нем.</p>
<p>Можете посмотреть на подробное содержание CRACKL@B SKY DVD 2010 &#8211; это онлайн копия оболочки диска, в которой к каждому архиву имеется описание, что серьезно поможет вам при изучении материалов диска.</p>
<p>Способы оплаты<br />
Существует три способа оплаты:</p>
<p>1. Оплата дисков при получении в вашем почтовом отделении. Цена любого одного диска: 500 рублей, двух сразу: 700 рублей.<br />
2. Предоплата дисков через систему Webmoney, Яндекс-деньги. Цена любого одного диска: 440 WMR, двух сразу: 580 WMR.<br />
3. Предоплата дисков наличными (платёжные терминалы). Цена любого одного диска: 440 рублей, двух сразу: 580 рублей. (+ 10-30 рублей &#8211; комиссия терминала)</p>
<p>Оплата наложенным платежом (при получении на почте)<br />
Заказ высылается поставщиком на ваш адрес в виде почтовой посылки наложенным платежом. Это означает, что вы ждете прихода извещения с вашей почты, затем берете это извещение, паспорт, деньги (+ порядка 40 рублей почта забирает за почтовый перевод денег) и идете на почту. Вам сразу же отдадут посылку, при этом вы можете потребовать проверить ее целостность, однако мы уже долгое время имеем дело с почтовыми отправлениями и упаковываем диски очень прочно.</p>
<p>(Пред)оплата через Webmoney</p>
<p>Альтернативный вариант оплаты дисков &#8211; через системы электронных платежей Webmoney или Яндекс-деньги, при этом вы получаете скидку. Скидка обусловлена прежде всего тем, что поставщику отправить бесплатную посылку проще и дешевле, чем посылку имеющую наложенный платёж. В данном случае на почте посылку вам выдадут просто по паспорту &#8211; абсолютно бесплатно.</p>
<p>(Пред)оплата наличными<br />
Предоплата наличными доступна через терминалы оплаты услуг мобильных операторов и электронных платежным систем (ОСМП, Элекснет, Уникасса и прочие). Терминалы позволяют производить перевод наличных на наш счет в системе электронных платажей Яндекс-деньги, однако, реальная комиссия составляет порядка 7 процентов. При оформлении заказа вы указываете, что вас интересует предоплата и в ответном письме я сообщаю номер счета Яндекс-деньги для пополнения через терминал. Сохраняйте квитанцию терминала на всякий случай.</p>
<p>Как заказать<br />
Для того чтобы заказать диск(и) вам надо отправить письмо мне по email: cracklab_dvd@mail.ru, в письме нужно указать:</p>
<p>1. Почтовый индекс.<br />
2. Ваш полный почтовый адрес (регион, город, улица, дом, квартира).<br />
3. Фамилию, имя, отчество (имя и отчество, как и фамилию, обязательно надо указать полностью).<br />
4. Выбранный вами способ оплаты (наложенный платеж, вебмани, яндекс-деньги, терминал).<br />
5. Название диска который вы выбрали, либо указать, что хотите получить оба.</p>
<p>В течение 2-3 дней я обязательно отвечу на ваше письмо (если этого не произойдет &#8211; вышлите письмо повторно, потому как по статистике в интернете доходит до адресата только 90% электронной почты). В ответном письме я вышлю реквизиты и дополнительные рекомендации по получению и оплате выбранным вами способом. Когда посылка с дисками будет выслана вы получите от меня по email уведомление о том, что посылка уже в пути, после чего она обычно приходит через пару недель, хотя в дальние районы страны бывает идёт и 3-4 недели.</p>
<p>Отправка зарубеж<br />
Имеется возможность отсылать посылку почтой России в любую страну, однако в данном случае “наложенный платёж” невозможен, так как такой вариант действует только на территории России. Для жителей других стран есть возможность отправить диск только по предоплате. Обращайтесь, обсудим ваш вариант.<br />
Также имеется возможность скачать диск по предоплате вместо получения почтой &#8211; обратите внимание на это предложение, если у вас есть безлимитный канал со скоростью от 128 Кбит &#8211; вероятно это будет намного быстрее, чем ожидать почтовой доставки.</p>
<p>Отзывы покупателей<br />
====<br />
Сергей</p>
<p>Диск я получил, большое за него спасибо.<br />
По удобству доставки замечаний нет никаких, тут нормально все,<br />
покрайней мере меня такой спосб вполне устраивает.<br />
Содержание диска просто отменное, потому что давно хотелось найти<br />
что-нибудь такое, где бы большая часть была программ была в одном<br />
месте, а то часто бывает так, что их приходится искать на разных дисках,<br />
да и то не все еще найти можно. А из инета я мягко говоря задолбался<br />
выкачивать, потому как, скорость низкая.<br />
Для меня важно одно &#8211; качество записи. Это превзошло мои ожидания,<br />
читается как “по маслу”. <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> Впечатлений от диска МОРЕ. Особо за копию<br />
сайта, где можно спокойно почитать статьи, а не ждать пока загрузится<br />
страничка. Вот за это отдельное спасибо.<br />
====</p>
<p>====<br />
Bokiv</p>
<p>Как-то искал в инете прогу DeDe, облазил кучу сайтов,<br />
но большинство ссылок не работало. Случайно увидел рекламу<br />
DVD для крекера, решил купить.<br />
Денег на подобные вещи не жалею,<br />
могу купить диск даже из-за одной понравившейся мне программы.<br />
Думал диск придёт через полгода, а нет, ждал не долго!!!<br />
И началась работа&#8230;<br />
Вот результаты:<br />
Изучил защиту 27-ми программ за три недели!<br />
Просто я сильно хотел этого, а диск дал информационный<br />
толчок, обилие инструментов для исследования защиты программ!!!</p>
<p>Я не мог поверить в такую удачу, ведь обычно все прячут<br />
от других подобные инструменты, а тут их целый диск!<br />
Огромное Вам спасибо Bad_guy!<br />
====</p>
<p>====<br />
invisible</p>
<p>Хороший диск мне понравилось!. Содержание достойна всяческих высоких похвал.<br />
Доставка, правда, как у всех, а хотя то, что ты выслал письмо, когда отправил<br />
диск, очень хороший шаг с твоей стороны. И так насчет диска, а что диск, диск<br />
как диск, правда, он ушел на два шага вперед своего создателя, т.е. каждый раз,<br />
когда открываешь его, находишь что-то новое (как в хорошей книге). Если, честно<br />
говоря, то денег потраченных на диск мне не жалко. Я получил кучу информации и опыта,<br />
которых словами не передать. Особенно понравилось документация об алгоритме сжатия, я<br />
ТАК ДАВНО ЭТО ИСКАЛ <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> <br />
====</p>
<p>====<br />
PINguin</p>
<p>Заказал диск, на следующий день на электронную почту пришел ответ.<br />
Через месяц диск был у меня в руках.<br />
Аккуратно упакованный в 2 картонки и тщательно перемотанный скотчем, что бы с ним ничего не случилось <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-feel_good.png' alt=';)' class='wp-smiley' /> <br />
Запустил диск,и&#8230; пропал из внешнего мира на 5 часов.<br />
Очень качественная подборка материалов по краку и программированию.<br />
Очень порадовали учебники по АСМу <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> <br />
Диском доволен, рад до сих пор.<br />
Bad_guy- мой респект и спасибо.</p>
<p>Downloadlinks：</p>
<p><span style="color: #ff0000;">http://rapidshare.com/files/336406169/YELLOW.part01.rar</p>
<p>http://rapidshare.com/files/336406156/YELLOW.part02.rar</p>
<p>http://rapidshare.com/files/336406166/YELLOW.part03.rar</p>
<p>http://rapidshare.com/files/336406284/YELLOW.part04.rar</p>
<p>http://rapidshare.com/files/336406462/YELLOW.part05.rar</p>
<p>http://rapidshare.com/files/336406749/YELLOW.part09.rar</p>
<p>http://rapidshare.com/files/336406763/YELLOW.part10.rar</p>
<p>http://rapidshare.com/files/336406767/YELLOW.part07.rar</p>
<p>http://rapidshare.com/files/336406788/YELLOW.part11.rar</p>
<p>http://rapidshare.com/files/336406800/YELLOW.part08.rar</p>
<p>http://rapidshare.com/files/336406813/YELLOW.part06.rar</p>
<p>http://rapidshare.com/files/336406845/YELLOW.part12.rar</p>
<p>http://rapidshare.com/files/336406923/YELLOW.part13.rar</p>
<p>http://rapidshare.com/files/336407033/YELLOW.part14.rar</p>
<p>http://rapidshare.com/files/336407059/YELLOW.part15.rar</p>
<p>http://rapidshare.com/files/336407295/YELLOW.part17.rar</p>
<p>http://rapidshare.com/files/336407303/YELLOW.part16.rar</p>
<p>http://rapidshare.com/files/336407342/YELLOW.part19.rar</p>
<p>http://rapidshare.com/files/336407349/YELLOW.part21.rar</p>
<p>http://rapidshare.com/files/336407378/YELLOW.part22.rar</p>
<p>http://rapidshare.com/files/336407381/YELLOW.part20.rar</p>
<p>http://rapidshare.com/files/336407487/YELLOW.part23.rar</p>
<p>http://rapidshare.com/files/336407603/YELLOW.part25.rar</p>
<p>http://rapidshare.com/files/336407824/YELLOW.part27.rar</p>
<p>http://rapidshare.com/files/336407849/YELLOW.part26.rar</p>
<p>http://rapidshare.com/files/336407866/YELLOW.part28.rar</p>
<p>http://rapidshare.com/files/336407875/YELLOW.part24.rar</p>
<p>http://rapidshare.com/files/336407889/YELLOW.part30.rar</p>
<p>http://rapidshare.com/files/336407891/YELLOW.part29.rar</p>
<p>http://rapidshare.com/files/336407931/YELLOW.part31.rar</p>
<p>http://rapidshare.com/files/336408008/YELLOW.part32.rar</p>
<p>http://rapidshare.com/files/336408154/YELLOW.part33.rar</p>
<p>http://rapidshare.com/files/336408346/YELLOW.part34.rar</p>
<p>http://rapidshare.com/files/336408395/YELLOW.part18.rar</p>
<p>http://rapidshare.com/files/336408423/YELLOW.part35.rar</p>
<p>http://rapidshare.com/files/336408443/YELLOW.part36.rar</p>
<p>http://rapidshare.com/files/336408453/YELLOW.part38.rar</p>
<p>http://rapidshare.com/files/336408454/YELLOW.part37.rar</p>
<p>http://rapidshare.com/files/336408502/YELLOW.part39.rar</p>
<p>http://rapidshare.com/files/336408518/YELLOW.part40.rar</p>
<p>http://rapidshare.com/files/336408565/YELLOW.part41.rar</p>
<p>http://rapidshare.com/files/336408626/YELLOW.part42.rar</p>
<p>http://rapidshare.com/files/336408718/YELLOW.part43.rar</p>
<p>http://rapidshare.com/files/336408720/YELLOW.part44.rar</p>
<p>http://rapidshare.com/files/336408748/YELLOW.part45.rar</span></p>
<p>In order to download automaticly ,just download via the follow download tools.</p>
<p>link:<a href="http://wordrider.net/freerapid/download.html">http://wordrider.net/freerapid/download.html </a></p>
<p><a rel="lightbox" href="http://www.h4ck.org.cn/wp-content/uploads/2010/01/freerapid.png" title="freerapid"><img title="freerapid" src="http://www.h4ck.org.cn/wp-content/uploads/2010/01/freerapid.png" alt="freerapid" width="562" height="466" /></a><br />
<h3>相关文章</h3>
<ul class="related_posts">
<li><a href="http://www.h4ck.org.cn/2011/09/resource-hacker-3-6-0-92/" title="Resource Hacker 3.6.0.92 官方简体中文正式版" rel="bookmark inlinks">Resource Hacker 3.6.0.92 官方简体中文正式版</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/06/restorator-2009-4-0-build-1807-cracked/" title="Restorator 2009 4.0 build 1807 Cracked" rel="bookmark inlinks">Restorator 2009 4.0 build 1807 Cracked</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2009/08/exeinfo-pe-ver-0-0-2-4-by-a-s-l-c-2006-03-2009-xx/" title=" ExeInfo PE ver. 0.0.2.4  by A.S.L  ( c ) 2006.03 - 2009.xx             " rel="bookmark inlinks"> ExeInfo PE ver. 0.0.2.4  by A.S.L  ( c ) 2006.03 &#8211; 2009.xx             </a><span class="count">( 9 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/02/explorersuite-13-12-09/" title="ExplorerSuite.13.12.09" rel="bookmark inlinks">ExplorerSuite.13.12.09</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2009/08/peid-0-94-obaby/" title="Peid 0.94 [obaby]专版" rel="bookmark inlinks">Peid 0.94 [obaby]专版</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/03/ildasm-4-0-fixed/" title="ildasm 4.0 修改版" rel="bookmark inlinks">ildasm 4.0 修改版</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2009/08/peidupkpeidsign-v20090826-by-fly/" title="查壳利器:Peid最新完整特征库:UpKPEiDSign.V20090826.By.fly" rel="bookmark inlinks">查壳利器:Peid最新完整特征库:UpKPEiDSign.V20090826.By.fly</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/12/uppp-v0-6-retail-patch-creater-by-ufo-pu55y/" title="uPPP.v0.6.Retail Patch Creater by UFO-pu55y" rel="bookmark inlinks">uPPP.v0.6.Retail Patch Creater by UFO-pu55y</a><span class="count">( 0 )</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.h4ck.org.cn/2010/01/cracklb-sun-dvd-2010/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Protection ID v0.6.3.5 Public DECEMBER 2009</title>
		<link>http://www.h4ck.org.cn/2010/01/protection-id-v0-6-3-5-public-december-2009/</link>
		<comments>http://www.h4ck.org.cn/2010/01/protection-id-v0-6-3-5-public-december-2009/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 03:02:28 +0000</pubDate>
		<dc:creator>obaby</dc:creator>
				<category><![CDATA[破解/汇编『Crack/Asm』]]></category>
		<category><![CDATA[Packer]]></category>
		<category><![CDATA[PE]]></category>
		<category><![CDATA[PETools]]></category>

		<guid isPermaLink="false">http://www.h4ck.org.cn/?p=1050</guid>
		<description><![CDATA[we are proud to present you the next and most up2date version of protection  id.

it was about time to bring this to the public, as the last version was  released back in march.

during development of this version we ported it over to MASM v10,

using the latest compiler &#38; linker available at the moment.

this version of pid features highly optimized scanning routines, resulting in  very fast detections :-)

i.e. a 2 GB setup.exe in processed in less then 1 second (smart mode kicks  in).

we tweaked nearly all scans to benefit from our new procs.]]></description>
			<content:encoded><![CDATA[<p><img title="protectionid" src="http://www.h4ck.org.cn/wp-content/uploads/2010/01/protectionid.png" alt="protectionid" width="544" height="303" /></p>
<p><span style="font-weight: 700; text-decoration: underline;"><a href="http://cracklab.ru/_dl2/centner/petools/ProtectionID.v6.3.5.zip">Protection ID v6.3.5  &#8211; 2009.12.24</a></span><br />
hello folks!</p>
<p>we are proud to present you the next and most up2date version of protection  id.</p>
<p>it was about time to bring this to the public, as the last version was  released back in march.</p>
<p>during development of this version we ported it over to MASM v10,</p>
<p>using the latest compiler &amp; linker available at the moment.</p>
<p>this version of pid features highly optimized scanning routines, resulting in  very fast detections <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':-)' class='wp-smiley' /> </p>
<p>i.e. a 2 GB setup.exe in processed in less then 1 second (smart mode kicks  in).</p>
<p>we tweaked nearly all scans to benefit from our new procs.<br />
<span id="more-1050"></span><br />
<span style="text-decoration: underline;">core additions / changes</span></p>
<p>- new: compiled using masm v10 compiler &amp; linker</p>
<p>- new: added in new and optimized scanning routines</p>
<p>- new: protection id is now able to scan inside msi files</p>
<p>- new: clean temp tool (Extensions -&gt; Clean Temp)</p>
<p>- new: added in our own fast internal zlib decompresion routines</p>
<p><span style="COLOR: #000000">- new: compiler detector updated to  detect:</span></p>
<p><span style="COLOR: #000000">- more Visual C++</span></p>
<p><span style="COLOR: #000000">- appended flash files</span></p>
<p><span style="COLOR: #000000">- Power Basic</span></p>
<p><span style="COLOR: #000000">- Watcom C/C++</span></p>
<p><span style="COLOR: #000000">- MinGW</span></p>
<p><span style="COLOR: #000000">- GoASM</span></p>
<p>- <span style="COLOR: #000000">update: reporting part on file type, now  reports bitness &amp; file subsystem</span></p>
<p>- update: added in recovery system &#8211; if a crash happens when scanning a  file/cd/dvd and the crash is in the scanning thread,</p>
<p>the seh system will &#8216;recover&#8217; the crash, skipping all other scan  modules and simply clean things up.</p>
<p>So a crash when scanning does NOT take protection id down (the crash  is reported to the log)</p>
<p>- update: <span style="COLOR: #000000">windows error code resolver dialog got  a face lift and some added functionality</span></p>
<p><span style="COLOR: #000000">- update: initial modification to report cpu  usage on ALL available cores</span></p>
<p>- update: <span style="COLOR: #000000">shortcuts are now not made if pid is  run from a removable drive</span></p>
<p>- update: added in reporting for uac setting in vista or higher<br />
- update:  <span style="COLOR: #000000">scan size threshold increased to 50mb</span></p>
<p>- update: added in the nfo association configuration</p>
<p>- update: compiler detection enabled by default now</p>
<p>- update: <span style="COLOR: #000000">adjusted the way the systray  worked</span><br />
<span style="COLOR: #000000"> &#8211; double left  click on the pid icon will cause the pid window to be shown /  hidden</span><br />
<span style="COLOR: #000000"> &#8211; right click on  the pid icon will cause the right click systray context menu to  appear</span><br />
- bugfix: <span style="COLOR: #000000">cab file handler bug  fixed</span><br />
- bugfix: <span style="COLOR: #000000">scan file on cd/dvd did  not work</span></p>
<p><span style="COLOR: #000000">- bugfix: fix for shortcuts getting  fucked</span></p>
<p><span style="COLOR: #000000">- bugfix: fixed bug in the seh system, which  lead to a crash</span><br />
<span style="COLOR: #000000">- bugfix: file queue  stuff (pause, remove, clear all) fully operational again</span><br />
<span style="COLOR: #000000">- bugfix: logic fix, checking section count could  technically be wrong if exe was x64</span></p>
<p>- bugfix: selecting scan folder 2x resulted in it messing up<br />
- bugfix:  minor adjustment to avoid closing an invalid handle</p>
<p>- bugfix: fixed output bug on small files</p>
<p><span style="COLOR: #000000">- bugfix: fixed a possible win9x  issue</span></p>
<p><span style="COLOR: #000000">- bugfix: minor gui fixes</span></p>
<p><span style="text-decoration: underline;">detection additions /  changes</span><br />
- new: check_activemark.asm &#8211; added exact version detection &amp; more  detailed output for v4, v5 &amp; v6 of ActiveMark</p>
<p>- new: check_byteshield.asm &#8211; ByteShield detection got heavily updated, now  it contains a lot extra more info</p>
<p>- new: check_ea_custom.asm &#8211; added in detection for EA Custom Protection  (used in The Sims 3)<br />
- new: check_gameguard.asm &#8211; GameGuard Launcher Module  &amp; it&#8217;s version got reported</p>
<p>- new: check_hackshield.asm &#8211; AhnLab HackShield detection added<br />
- new:  check_impulse.asm &#8211; Impulse DRM (+ core module) detection added</p>
<p>- new: check_protectdisc.asm &#8211; added in new versions: v9.11.0, v9.20.0,  v9.25.0 &amp; latest v9.26.0<br />
- new: check_protectdisc.asm &#8211; added in  detection of how many trial days a Protect Disc exe is allowed to run<br />
- new:  check_safedisc.asm &#8211; updated to detect clcd32.dll, dplayerx.dll, drvmgt.dll from  old safedisc 1 games</p>
<p>- new: check_secureebook.asm &#8211; added in Secure eBook Wrapper detection</p>
<p>- new: check_securom.asm &#8211; added SecuROM DFA v1 and v2 detection</p>
<p>- new: check_securom.asm &#8211; added SecuROM 7 dfa.dll detection<br />
- new:  check_securom.asm &#8211; added detection for SecuROM 5 and 4 (or lower) dll modules  (cms*.dll sintf*.dll)<br />
- new: check_solidshield.asm &#8211; added in Tages Setup  version detection in solidshield core.dll (if found)</p>
<p>- new: check_solidshield.asm &#8211; SolidShield wrapped dlls will be detected  now</p>
<p>- new: check_starforce.asm &#8211; added in detection of StarForceFileSystem  containers (SFFS)</p>
<p>- new: check_steam.asm &#8211; added in detection of the Steam Client API Module  &amp; report Steam api usage in exe</p>
<p>- new: check_themida.asm &#8211; updated to show watermarking on some versions</p>
<p>- new: check_playfirst.asm &#8211; added in detection of the Playfirst Game  Library</p>
<p>- new: check_playrixwrapper.asm &#8211; added Playrix Game Wrapper detection</p>
<p>- new: check_reflexivearcade.asm &#8211; added in detection of build 177 &amp;  build 178 of the ReflexiveArcade Wrapper</p>
<p>- new: check_robingameswrapper.asm &#8211; added in Robin Games Wrapper  detection</p>
<p>- new: check_spintop.asm &#8211; added SpinTop DRM Module detection</p>
<p>- new: check_mfortress.asm &#8211; added MegaFortress detection</p>
<p>- new: check_upx.asm &#8211; added in more informative upx info</p>
<p>- new: check_aase.asm &#8211; added Aase detection</p>
<p>- new: check_adnexeprotector.asm &#8211; added ADN Exe Protector v0.5 detection</p>
<p>- new: check_aliencryptor.asm &#8211; added Alien Cryptor v1.0 detection</p>
<p>- new: check_armadillo.asm &#8211; added Armadillo v6.40 and v6.60 &#8211; v7.00 (or  newer) detection<br />
- new: check_aspack.asm &#8211; added ASPack v2.2 detection<br />
-  new: check_asprotect.asm &#8211; added ASProtect v1.4 build 04.01 Beta detection</p>
<p>- new: check_aurastompercrypter.asm &#8211; added AuraStomper Crypter detection</p>
<p>- new: check_babelobfuscator.asm &#8211; Babel .Net Obfuscator detection added</p>
<p>- new: check_blindspot.asm &#8211; BlindSpot File Binder v1.0 detection added</p>
<p>- new: check_deepseaobfuscator.asm &#8211; added in DeepSea .Net Obfuscator  detection</p>
<p>- new: check_dotfixniceprotect.asm &#8211; added version detection for v1.0 &#8211; v2.x,  v2.8 &#8211; v2.9, v3.0 &#8211; v3.6</p>
<p>- new: check_dotnetreactor.asm &#8211; added in detection of dotNET Reactor v4.0  (or newer)</p>
<p>- new: check_dsrfileprotector.asm &#8211; added dSR File Protector detection</p>
<p>- new: check_eprot.asm &#8211; added !EProt detection</p>
<p>- new: check_epprotector.asm &#8211; added EP Protector v0.1 detection</p>
<p>- new: check_fishnet.asm &#8211; added Fish.NET packer detection<br />
- new:  check_flyskysoftware.asm &#8211; added Fly Sky Software Custom Protector detection</p>
<p>- new: check_hackhoundbinder.asm &#8211; added in Hack Hound File Binder  detection<br />
- new: check_ionworxidentifier.asm &#8211; added Ionworx Identifier SDK  Module detection<br />
- new: check_leetcryptor.asm &#8211; added LeetCryptor v1  detection</p>
<p>- new: check_moleboxultra.asm &#8211; added in MoleBox Ultra v4.x detection</p>
<p>- new: check_pcguard.asm &#8211; added detection of latest PC-Guard v5.04</p>
<p>- new: check_alloy.asm &#8211; added PGWARE Alloy [generic] detection</p>
<p>- new: check_rdgpolypack.asm &#8211; added RDG PolyPack v1.1 detection</p>
<p>- new: check_simbioz.asm &#8211; added in SimbiOZ v2.1 detection</p>
<p>- new: check_skycrypt.asm &#8211; added in Sky Crypt v2.0 detection</p>
<p>- new: check_stultrapack2.asm &#8211; added ST Ultra Pack 2 v0.6s detection</p>
<p>- new: check_themisbinder.asm &#8211; added in Themis Binder v0.2 detection<br />
-  new: check_upack.asm &#8211; added detection of more detailed versions</p>
<p>- new: check_vprotect.asm &#8211; added VProtect detection</p>
<p>- new: check_zipworx.asm &#8211; added ZipWorx detection</p>
<p>- new:  license_bentleyieg.asm &#8211; added Bentley IEG License Service detection</p>
<p>- new: license_crypkeysdk.asm &#8211; added CrypKey v7.0 (or newer) detection<br />
-  new: license_crypkeysdk.asm &#8211; added detection of the CrypKey License Service  Installer</p>
<p>- new: license_desawarelicensing.asm &#8211; added Desaware Licensing System for  .NET Module detection</p>
<p>- new: license_elicense.asm &#8211; now detecting on a dll it didn&#8217;t see before</p>
<p>- new: license_interlok.asm &#8211; updated to detect PACE InterLok System  File<br />
- new: license_reprise.asm &#8211; added Reprise License Manager detection</p>
<p>- new: license_sentinelrms.asm &#8211; added SafeNet Sentinel RMS v8.x  detection</p>
<p>- new: dongle_hasp.asm &#8211; NetHASP Network Dongles are detected</p>
<p>- new: dongle_hasp.asm &#8211; added in detection of the Aladdin HASP SRM Run-time  Environment Installer</p>
<p>- new: dongle_ilok.asm &#8211; added in iLok USB Hardware Dongle detection</p>
<p>- new: dongle_matrix.asm &#8211; added Matrix Dongle detection<br />
- new.  dongle_microdog.asm &#8211; added SafeNet MicroDog Driver installer detection</p>
<p>- new: dongle_sentinel.asm &#8211; added in detection of Rainbow NetSENTiNEL SUPER  PRO Dongle</p>
<p>- new: dongle_syncrosoft.asm &#8211; added in SyncroSoft USB Dongle  detection</p>
<p>- new: installer_advancedinstaller.asm &#8211; added Advanced Installer  detection</p>
<p>- new: installer_autoplay_media_studio.asm &#8211; added Indigorose &#8211; AutoPlay  Media Studio</p>
<p>- new: installer_bitrock.asm &#8211; added BitRock InstallBuilder Module  detection<br />
- new: installer_fenomen.asm &#8211; added Fenomen Downloader  detection<br />
- new: installer_gamehouse.asm &#8211; added GameHouse Installer  detection</p>
<p>- new: installer_setupfactory.asm &#8211; added detection of Setup Factory v8.x  modules<br />
- new: installer_uharcsfx.asm &#8211; added UHARC SFX Archive detection</p>
<p>- improved: check_3plock.asm &#8211; added in another generic check</p>
<p>- improved: check_enigmaprotector &#8211; now detects on an Enigma version it  didn&#8217;t &#8216;see&#8217; before</p>
<p>- improved: check_hexalock.asm &#8211; optimized HexaLock detection</p>
<p>- improved: check_laserlok.asm &#8211; optimized Laserlok scanning speed</p>
<p>- improved: check_protectdisc.asm &#8211; tweaked output</p>
<p>- improved: check_safedisc.asm &#8211; optimized Safedisc v1 scanning speed</p>
<p>- improved: check_smarte.asm &#8211; added in two new checks</p>
<p>- improved: check_starforce.asm &#8211; improved scanning speed<br />
- improved:  check_steam.asm &#8211; updated detection on another steam variant on assassins creed  and r6 vegas</p>
<p>- improved: check_tages.asm &#8211; improved detection of the Tages protection  driver</p>
<p>- improved: check_vob.asm &#8211; added one more generic check</p>
<p>- improved: check_execryptor2.asm &#8211; code tweaked to reduce false  positives</p>
<p>- improved: check_alawar.asm &#8211; scanning speed optimizations</p>
<p>- improved: check_elefunwrapper.asm &#8211; scanning speed optimizations &amp;  reports offset / size of virgin executable</p>
<p>- improved: check_popcapdrm.asm &#8211; scanning speed optimizations</p>
<p>- improved: check_reflexivearcade.asm &#8211; optimized ReflexiveArcade Wrapper  detection</p>
<p>- improved: check_abccryptor.asm &#8211; added in a new check</p>
<p>- improved: check_armprotector.asm &#8211; added in one more generic check</p>
<p>- improved: check_asdpack.asm &#8211; scanning speed optimizations</p>
<p>- improved: check_aspack.asm &#8211; scanning speed improvements</p>
<p>- improved: check_asprotect.asm &#8211; tweaked version output</p>
<p>- improved: check_atreprotector.asm &#8211; added in another generic check</p>
<p>- improved: check_bambam.asm &#8211; added in two more checks to tighten  detection</p>
<p>- improved: check_beria.asm &#8211; improved Beria detection</p>
<p>- improved: check_dalcrypt.asm &#8211; added in two new checks<br />
- improved:  check_dotfuscator.asm &#8211; optimized scanning speed</p>
<p>- improved: check_dotnetprotector.asm &#8211; optimized scanning speed</p>
<p>- improved: check_enigmaprotector.asm &#8211; added in another generic check<br />
-  improved: check_epprotector.asm &#8211; code adjusted, made faster</p>
<p>- improved: check_exestealth.asm &#8211; optimized scanning speed</p>
<p>- improved: check_ezip.asm &#8211; scanning speed optimizations</p>
<p>- improved: check_exestealth.asm &#8211; improved scanning speed</p>
<p>- improved: check_gieprotector.asm &#8211; optimised the signature scan</p>
<p>- improved: check_kkrunchy.asm &#8211; added in detections for old kkrunchy  (2003)</p>
<p>- improved: check_mew5.asm &#8211; Mew 5 EXE Coder v0.1 detection tweaked</p>
<p>- improved: check_mpress.asm &#8211; mpress for dot.net &#8211; tweaked detection</p>
<p>- improved: check_mslrh.asm &#8211; added in two more generic checks)</p>
<p>- improved: check_mucruncher.asm &#8211; rewritten MuCruncher detection</p>
<p>- improved: check_mz0ope.asm &#8211; added in another check</p>
<p>- improved: check_nidhogg.asm &#8211; optimized Nidhogg scanning speed</p>
<p>- improved: check_packitbitch.asm &#8211; added in two new checks</p>
<p>- improved: check_polyene.asm &#8211; added in more generic checks for PolyEne</p>
<p>- improved: check_punisher.asm &#8211; added in three new checks<br />
- improved:  check_sevlock.asm &#8211; tweaked sevLock detection</p>
<p>- improved: check_simplepack.asm &#8211; now detects all the simplepack exe&#8217;s it  didn&#8217;t detect before</p>
<p>- improved: check_softsentry.asm &#8211; added in more checks + optimized scanning  speed</p>
<p>- improved: check_spicesnet.asm &#8211; added in another check</p>
<p>- improved: check_telock.asm &#8211; improved TeLock v1.0 detection</p>
<p>- improved: check_upack.asm &#8211; added more detailed version checks, tweaked  some detections</p>
<p>- improved: check_upx.asm &#8211; fixed possible wrong detection</p>
<p>- improved: check_vbowatch.asm &#8211; updated with a better signature</p>
<p>- improved: check_visualprotect.asm &#8211; added in one more check</p>
<p>- improved: check_vmprotect.asm &#8211; now it detects on a dll it didn&#8217;t &#8216;see&#8217;  before</p>
<p>- improved: check_wildtangent.asm &#8211; scanning speed optimizations</p>
<p>- improved: check_wlcrypt.asm &#8211; optimized WL-Crypt detection</p>
<p>- improved: check_xprotector.asm &#8211; added in two heuristic checks</p>
<p>- improved: check_yzpack.asm &#8211; tweaked</p>
<p>- improved: dongle_hasphlenvelope.asm &#8211; now detects on wrapped sys files  too</p>
<p>- improved: dongle_keylok2.asm &#8211; improved Key-Lok II Dongle scan speed</p>
<p>- improved: dongle_marx.asm &#8211; added in another check</p>
<p>- improved: dongle_sentinel.asm &#8211; detects Sentinel on x64 executables</p>
<p>- improved: dongle_wibu.asm &#8211; added in another check<br />
- improved: minor tweaks for all license detections</p>
<p>- improved: license_crypkeyinstant.asm &#8211; improved scanning speed in files  wrapped with CrypKey Instant<br />
- improved: license_crypkeysdk.asm &#8211; updated /  tweaked CrypKey detection</p>
<p>- improved: license_elicense.asm &#8211; improved eLicense scanning speed</p>
<p>- improved: license_haspsl.asm &#8211; speed up HASP SL Licensing System scans</p>
<p>- improved: license_interlok.asm &#8211; scan speed improvements + added in  detection for another &#8216;variant&#8217; of InterLok</p>
<p>- improved: license_ntitles.asm &#8211; scanning speed improvements</p>
<p>- improved: installer_akinstaller.asm &#8211; scanning speed optimizations</p>
<p>- improved: installer_clickteam.asm &#8211; improved generic detection</p>
<p>- improved: installer_createinstall.asm &#8211; scanning speed optimizations</p>
<p>- improved: installer_gkwaresfx.asm &#8211; improved generic detection</p>
<p>- improved: installer_patchwise.asm &#8211; now detects a module it didn´t &#8216;see&#8217;  before</p>
<p>- improved: installer_rarsfx.asm &#8211; updated to handle new winrar sfx</p>
<p>- misc: group_tags.asm &#8211; added some more tags</p>
<p>- bugfix: check_starforce.asm &#8211; fixed possible crashbug</p>
<p>- bugfix: check_dotnetguard.asm &#8211; fixed non register preservation</p>
<p>- bugfix: check_vmprotect.asm &#8211; fixed generic detection</p>
<p>- bugfix: check_forgot.asm &#8211; fixed non detection</p>
<p>- bugfix: check_quickpacknt.asm &#8211; fixed non-detection bug</p>
<p>- bugfix: check_shrinkwrap.asm &#8211; fixed non-detection bug</p>
<p>- bugfix: check_upx.asm &#8211; fixed a possible wrong detection</p>
<p><span style="text-decoration: underline;">CD/DVD/Image file/sector  scan</span></p>
<p>- added in SecuROM v7.40 (or newer) detection via sector scan</p>
<p>- some more updates on the iso making code, and the cddvd_api core</p>
<p>- tweaking the cd/dvd dialog portion, now detects and reports errors better,  along with better sector calculations</p>
<p>(will now abort if it detects a css encrypted sector when making an  iso)</p>
<p><span style="font-weight: 700; text-decoration: underline;">Protection ID  v6.2.3 &#8211; 2009.03.28</span></p>
<p>- bugfix: check_starforce.asm &#8211; starforce &#8216;crap output&#8217; bug fixed</p>
<p>- update feature &#8211; updated to show version number on update as well, instead  of some &#8216;strange&#8217; number</p>
<p><span style="font-weight: 700; text-decoration: underline;">Protection ID  v6.2.2 &#8211; 2009.03.27</span></p>
<p><span style="text-decoration: underline;">core additions / changes</span></p>
<p>- new: incorporated PEiD / PE Tools database usage</p>
<p>-&gt; additionally displays the protection found via the  userdatabases</p>
<p>-&gt; peid database is expected to be in the same folder as  protection id</p>
<p>and should be called peid_database.txt</p>
<p>-&gt; petools database is expected to be in the same folder as  protection id</p>
<p>and should be called petools_signs.txt</p>
<p>- enable/disable: go to Configuration -&gt; Allowed Scanning  Types -&gt; peid / petools (3rd party scan)</p>
<p>- once enabled you can browse the signature files when</p>
<p>clicking the &#8216;Extensions&#8217; tab (second icon from the bottom  right)</p>
<p>- note: in cases of multiple hits, the highest probability is  automatically figured out and reported</p>
<p>- new: work on compiler detection began</p>
<p>-&gt; The compiler detection simply reports what compiler was used  to make</p>
<p>the executable, It can also sometimes report the programming  language</p>
<p>the executable was made with.</p>
<p>current detections: dotnet, visual basic &amp; visual  basic.net, <span style="COLOR: #000000">some visual c/c++, borland c++,  delphi</span></p>
<p>enable/disable: Configuration -&gt; Allowed Scanning Types  -&gt; Enable Compiler Detection Scan</p>
<p>- new: tooltip preview (configurable option in the settings &#8211; under the gui  portion)</p>
<p>- new: added in drive type reporting in the misc tools section</p>
<p>- new: added in option in configuration to dedicate 1 cpu to scanning core  (if multiple cpu&#8217;s are found on the system)</p>
<p>- new: added in little pause/resume button in the main dialog (green circle  when you load pid)</p>
<p>- new: added in activity reporting on hdd reads, pid is so quick though, you  may not notice it,</p>
<p>but on large files, its useful because its an indicator pid is  doing something</p>
<p>- update: turned on scan inside microsoft cab files as default</p>
<p>- update: added more <span style="COLOR: #000000">informative comments into  pe stuff</span></p>
<p>- update: file queue now reports the amount of files it has processed</p>
<p>- update: updated detection routine to report dll compiled in native mode</p>
<p><span style="COLOR: #000000">- update: folderwatch cleanup now works and  reporting is handled correctly</span></p>
<p>- update: updated version info core to handle &#8216;strange&#8217; exes with fucked  version info,</p>
<p>or version information that version.dll does not &#8216;see&#8217;</p>
<p>- update: fixed some imports so that pid now loads on windows nt 4.0 (and  probably 3.x)</p>
<p>without the system throwing an import missing error and exiting  the process</p>
<p>- update: services now disables itself if the os is 9x/me (9x/me doesnt have  &#8216;services&#8217;)</p>
<p>shares also disables itself if the os is 9x/me (api not present  in these os&#8217;es)</p>
<p>- update: gui -&gt; cd/dvd tools and the folderwatch buttons are now  automatically disabled if</p>
<p>the operating system is windows 9x/me (ie: less than windows  2000)</p>
<p>- update: <span style="COLOR: #000000">folder location shell32 output now  made 9x/me compliant(old comctl32.dll listview issue)</span></p>
<p>- update: added in minimize to systray if its set in the configuration</p>
<p>if set, pid will minimize itself when its loaded for the first  time</p>
<p>- update: <span style="COLOR: #000000">added in another handler for smbios,  its quicker, but only available in vista or higher</span></p>
<p><span style="COLOR: #000000">- update: windows product key updated code, now  should be good for all windows versions except nt 4.0</span></p>
<p>- update: windows product key is now also reported for 9x/me</p>
<p>- update: <span style="COLOR: #000000">updated code so that windows 95,  windows nt 3.x and nt 4.x do NOT have ownerdrawn menus</span><br />
<span style="COLOR: #000000"> (95 couldn&#8217;t handle them properly anyway,  and nt 3/4 had issues too)</span></p>
<p>- update: added battery reporting into misc tool window</p>
<p>- update: dep<span style="COLOR: #000000"> reporting done in misc tools  information section</span></p>
<p>- update: fixed icons in 9x looking too big (now pid looks the same in 98,  me, 2k, xp, vista)</p>
<p>- update: pause / resume is now properly functional</p>
<p>- update: added in pause checking into the cab file handler</p>
<p>- update: progress bar resets once scan is complete</p>
<p>- update: added in animated rect for sizing (work in progress)</p>
<p>- update: <span style="COLOR: #000000">added tooltip to sizer  window</span></p>
<p>- bugfix: fixed 9x/me crash (bsod) issue in petools stuff</p>
<p>- bugfix: <span style="COLOR: #000000">fixed crash issue when viewing reloc  information on some x64 files</span></p>
<p>- bugfix: <span style="COLOR: #000000">silent exit / crash issue fixed in  win2000 server</span></p>
<p>- bugfix: fixed position saving bug (reported by Blazkowicz)</p>
<p>- bugfix: fixed os detecton (win nt was detected as 2000)</p>
<p>- bugfix: fixed the strange drag -&gt; drop, file added to queue but scanning  not started bug</p>
<p>- bugfix: fix for buffer overrun error when saving a protection log  containing lots and lots of files</p>
<p>- bugfix: folderwatch &#8211; fixed crash when trying to add more than 2  folders</p>
<p>- bugfix: dirty buffer used in folderwatch reporting code</p>
<p>- bugfix: 9x sizing issue fixed</p>
<p>- bugfix: fixed some problems with windows 95 original (before 95a, 95b and  95c&#8230;) where the versioninfoex struct</p>
<p>is expected to be a different size, this resulted in a failure  in detecting the operating system</p>
<p>- bugfix: various other tweaks &amp; fixes&#8230;</p>
<p><span style="text-decoration: underline;">detection additions /  changes</span></p>
<p>- new: check_protectdisc.asm &#8211; added ProtectDisc v9.5.0 detection &amp;  detection of P<span style="COLOR: #000000">rotectDisc drivers</span></p>
<p>- new: check_byteshield.asm &#8211; <span style="COLOR: #000000">added ByteShield  Software Activation Client detection</span></p>
<p>- new: check_safedisc.asm &#8211; <span style="COLOR: #000000">now also detects  Safedisc 1 icd file as being protected &amp;secdrv.sys</span></p>
<p><span style="COLOR: #000000">- new: check_tages.asm &#8211; code updated to detect  Tages protection drivers</span></p>
<p>- new: check_armadillo.asm &#8211; added Armadillo v6.24 (or newer) detection</p>
<p>- new: check_pcguard.asm &#8211; added PC Guard v5.03 detection</p>
<p>- new: check_themida.asm &#8211; added detection for Themida / Winlicense with Hide  PE Scanner Option</p>
<p>- new: check_asprotect.asm &#8211; added exact detection of<span style="COLOR: #000000"> ASProtect v2.3 Build 05.14 &amp; ASProtect v1.40 Build  11.20</span></p>
<p>- new: check_privateexe.asm &#8211; added Private EXE Protector v3.0 (or newer)  detection</p>
<p>- new: check_stardock.asm &#8211; <span style="COLOR: #000000">added Stardock  Product Activation Module detection</span></p>
<p>- new: check_reflexivearcade.asm &#8211; added ReflexiveArcade Wrapper &#8211; Build 171  and newer detection</p>
<p>- new: check_realarcade_drm.asm &#8211; <span style="COLOR: #000000">added in  RealArcade DRM Module detection</span></p>
<p>- new: check_popcapdrm.asm &#8211; added PopCap DRM Protect detection</p>
<p>- new: check_elefunwrapper.asm &#8211; added Elefun Trial Game Wrapper  detection</p>
<p>- new: check_playfirst.asm &#8211; added <span style="COLOR: #000000">PlayFirst DRM  Module detection</span></p>
<p><span style="COLOR: #000000">- new: check_oberonmediatime.asm &#8211; added  detection for Oberon Media Time Protection Module</span></p>
<p>- new: check_wildtangent.asm &#8211; added detection of the Wild Tangent Wrapper  v2.1.2.26 (or newer)</p>
<p>- new: check_dotnetreactor.asm &#8211; added .Net Reactor v3.x Library mode (+  Necrobit) detection</p>
<p>- new: check_macrobjectnet.asm &#8211; added Macrobject Obfuscator.NET 2008  detection</p>
<p>- new: check_noobyprotect.asm &#8211; added <span style="COLOR: #000000">NoobyProtect v1.0.x.x and v1.1.x.x &#8211; v1.4.x.x.</span></p>
<p>- new: check_spicesnet.asm &#8211; added <span style="COLOR: #000000">Spices.Net  Obfuscator detection</span></p>
<p><span style="COLOR: #000000">- new: check_pegasyscustom.asm &#8211; added PEGASYS  Custom Layer detection</span></p>
<p>- new: check_serialshield.asm &#8211; added <span style="COLOR: #000000">Ionworx  SerialShield Core.dll &amp; it´s version detection</span></p>
<p><span style="COLOR: #000000">- new: check_dotnetguard.asm &#8211; added detection  of the DotNet Guard HVM Runtime Library Module</span></p>
<p>- new: check_eakey.asm &#8211; added in EA Key Module detection</p>
<p>- new: check_sevlock.asm &#8211; added sevLock detection</p>
<p>- new: check_asscrypter.asm &#8211; added ass &#8211; crypter detection</p>
<p>- new: check_billarcrypter.asm &#8211; added <span style="COLOR: #000000">Billar  Crypter v2.0 detection</span></p>
<p>- new: check_bitfrostcrypter.asm &#8211; added Bifrost Crypter v1 detection</p>
<p>- new: check_cigicigi.asm &#8211; added Cigicigi File Crypter v1.0 detection</p>
<p>- new: check_cryptdmarnar.asm &#8211; added <span style="COLOR: #000000">Crypt Dmar  Nar v0.5 detection</span></p>
<p><span style="COLOR: #000000">- new: check_darkavengard.asm &#8211; added  DarkAvengard Crypter detection</span></p>
<p><span style="COLOR: #000000">- new: check_dexcrypt.asm &#8211; added DeX-Crypt v2.0  detection</span></p>
<p>- new: check_dirtycrypt0r.asm &#8211; added DirTy CrYpt0r detection</p>
<p>- new: check_dhcripter.asm &#8211; added DH Cripter v0.1 detection</p>
<p>- new: check_etcv.asm &#8211; <span style="COLOR: #000000">added ETCV v1.0  detection</span></p>
<p>- new: check_fishpacker.asm &#8211; added FishPacker v1.03 &amp; v1.04  detection</p>
<p>- new: check_flashbackscrambler.asm &#8211; added Flashback Scrambler v1.3.x  detection (all 3 modes :-))</p>
<p>- new: check_idapplicationprotector.asm &#8211; added ID Application Protector v1.2  detection</p>
<p>- new: check_freecryptor.asm &#8211; added FreeCryptor v0.3b Build 3 detection</p>
<p>- new: check_gentlemancrypter.asm &#8211; added Gentlemen Crypter v1 detection</p>
<p>- new: check_gkripto.asm &#8211; added GKripto v1.0 detection</p>
<p>- new: check_haccrewcrypter.asm &#8211; <span style="COLOR: #000000">added Hac-Crew  Crypter detection</span></p>
<p>- new: check_hipacryp.asm &#8211; added HipACryp v0.0.1 detection</p>
<p>- new: check_icrypt.asm &#8211; added <span style="COLOR: #000000">ICrypt v1.0  detection</span></p>
<p>- new: check_keycrypter.asm &#8211; added KeyCrypter detection</p>
<p>- new: check_lordcrypter.asm &#8211; added L0rD Crypter v1.0 detection</p>
<p>- new: check_maskpe.asm &#8211; added MaskPE v2.0 detection</p>
<p>- new: check_ncode.asm &#8211; added N-Code v0.2 detection</p>
<p>- new: check_nidhogg.asm &#8211; added Nidhogg v1.0 Final, v1.1 Beta 1 and [unknown  version] detection</p>
<p>- new: check_novacipher.asm &#8211; added NovaCipher 1.0 Beta detection</p>
<p>- new: check_npack.asm &#8211; added nPack v2.0.100.2008 detection</p>
<p>- new: check_pfecx.asm &#8211; <span style="COLOR: #000000">added PFE CX v0.1  detection</span></p>
<p>- new: check_poherna.asm &#8211; added Pohernah v1.02, v1.03 &amp; v1.07  detection</p>
<p>- new: check_pokescrambler.asm &#8211; <span style="COLOR: #000000">p0ke Scrambler  v1.2 detection added</span></p>
<p>- new: check_rdgtejoncrypter.asm &#8211; added RDG Tejon Crypter v0.6, v0.7 &amp;  v0.8 detection</p>
<p>- new: check_rewolfdllpackager.asm &#8211; added ReWolf DLLPackager v1.0  detection</p>
<p>- new: check_roguepack.asm &#8211; added RoguePack v4.1 detection</p>
<p>- new: check_scancryptic.asm &#8211; added ScanCryptic v2.0 detection</p>
<p>- new: check_securepe.asm &#8211; added SecurePE v1.6 detection</p>
<p>- new: check_supercrypt.asm &#8211; added Super Crypt v1.0 detection</p>
<p>- new: check_tgrcrypter.asm &#8211; added TGR Crypter v1.0 detection</p>
<p>- new: check_vegancrypter.asm &#8211; added Vegan-Crypter v0.7 detection</p>
<p>- new: check_yokohcrypter.asm &#8211; <span style="COLOR: #000000">added Yokoh  Crypter v1.3 detection</span></p>
<p>- new: license_adobelm.asm &#8211; <span style="COLOR: #000000">Adobe Systems  License Manager Module detection added</span></p>
<p>- new: license_deploylx.asm &#8211; <span style="COLOR: #000000">added DeployLX  Licensing for DotNet detection</span></p>
<p>- new: license_esellerate.asm &#8211; <span style="COLOR: #000000">added eSellerate  Activation System Core Module detection</span></p>
<p>- new: license_infralution.asm &#8211; <span style="COLOR: #000000">Infralution  Licensing System for DotNET detection added</span></p>
<p><span style="COLOR: #000000">- new: license_isquicklicense.asm &#8211; added  Interactive Studios Quick License Manager detection</span></p>
<p>- new: license_mirage.asm &#8211; <span style="COLOR: #000000">added detection for  Mirage License Protector</span></p>
<p><span style="COLOR: #000000">- new: license_sentinelrms.asm &#8211; added SafeNet  Sentinel RMS Core.dll detection</span></p>
<p><span style="COLOR: #000000">- new: license_xheolicensing.asm &#8211; added Xheo  Licensing Module for DotNet detection</span></p>
<p>- new: dongle_biteboard.asm &#8211; <span style="COLOR: #000000">added Bite-Board  USB Dongle detection</span></p>
<p><span style="COLOR: #000000">- new: dongle_copylock.asm &#8211; added CopyLock  Dongle detection</span></p>
<p><span style="COLOR: #000000">- new: dongle_marx.asm &#8211; MARX Crypto-BOX Dongle  detection added</span></p>
<p>- new: dongle_rockey.asm &#8211; added <span style="COLOR: #000000">Rockey2 /  Rockey4 Dongle detection</span></p>
<p>- new: dongle_sentinel.asm &#8211; added detection of the <span style="COLOR: #000000">NetSentinel Win32 Client DLL</span></p>
<p><span style="COLOR: #000000">- new: dongle_sentry.asm &#8211; added Sentry Hardware  Lock detection</span></p>
<p><span style="COLOR: #000000">- new: dongle_wizzkey.asm &#8211; added Wizzkey Dongle  detection</span></p>
<p>- new: installer_digital_river_downloader.asm &#8211; Digital River Download  Manager detection</p>
<p>- new: installer_gpinstall.asm &#8211; added <span style="COLOR: #000000">GP-Install Module detection</span></p>
<p>- new: installer_lymesfx.asm &#8211; added Lyme SFX Extractor Module detection</p>
<p>- new: installer_install_anywhere.asm &#8211; added InstallAnywhere detection</p>
<p>- new: installer_installshield.asm &#8211; added InstallShield v15 detection &amp;  I<span style="COLOR: #000000">nstallshield PackageForTheWeb   Installers</span></p>
<p><span style="COLOR: #000000">- new: installer_lindersoftsetup.asm &#8211; added  Lindersoft Setup Builder Module detection</span></p>
<p><span style="COLOR: #000000">- new: installer_omnisetup.asm &#8211; added Omni  Setup Module detection</span></p>
<p><span style="COLOR: #000000">- new: installer_popcap.asm &#8211; added PopCap  Installer detection</span></p>
<p><span style="COLOR: #000000">- new: installer_realarcade_downloader.asm &#8211;  added RealArcade Download Manager detection</span></p>
<p>- new: installer_reflexive_arcade.asm &#8211; added Reflexive Arcade Install  Wrapper detection</p>
<p>- new: installer_smart_install_maker.asm &#8211; added Smart InstallMaker  detection</p>
<p>- new: installer_visual_patch.asm &#8211; added detection for Visual Patch  Installer</p>
<p>- improved: check_starforce.asm</p>
<p>- updated to handle those strange starforce 5.60 exe&#8217;s that  didn&#8217;t have version information</p>
<p>- updated to handle Gothic 3 Forsaken Gods (russian)</p>
<p>- improved: check_securom.asm &#8211; <span style="COLOR: #000000">code updated to  detect the drm dyn data module</span></p>
<p>- improved: check_protectdisc.asm &#8211; added one more older version (v7.7.0)</p>
<p>- improved: check_codelok.asm &#8211; scanning speed optimizations</p>
<p>- improved: check_sysiphus.asm &#8211; optimized detection &amp; scanning speed</p>
<p>- improved: check_solidshield.asm &#8211; update for those strange exe&#8217;s and dll&#8217;s  with no version information</p>
<p>- improved: check_themida.asm &#8211; better version detection (v1.8.2.0 &#8211;  v1.9.5.0, v1.9.7.0 &#8211; v1.9.9.0,</p>
<p>v2.0.0.0 &#8211; v2.0.2.0, v2.0.3.0 &#8211; v2.0.4.0, v2.0.5.0 (or  newer))</p>
<p>- improved: check_acprotect.asm &#8211; faster scanning results</p>
<p>- improved: check_armadillo.asm &#8211; armadillo detection code updated</p>
<p>- improved: check_asprotect.asm &#8211; rewritten for better version detection</p>
<p>- improved: check_xenocode.asm &#8211; tweaked detection</p>
<p>- improved: check_thinstall.asm &#8211; <span style="COLOR: #000000">updated with  another detection method for v3.207</span></p>
<p>- improved: check_upx.asm &#8211; fixed UPX detection code so it detects upx&#8217;ed  dlls too</p>
<p>- improved: check_xprotector.asm &#8211; added in another check (this also fixed a  possible wrong detection</p>
<p>of Themida / WinLicense protected DotNet executables)</p>
<p>- improved: check_vmprotect.asm &#8211; made more generic, adjusted version info  output</p>
<p>- improved: check_andpakk2.asm &#8211; rewritten, <span style="COLOR: #000000">additionally we exactly detect the 2 versions (v0.06  &amp; v0.18) now</span></p>
<p>- improved: check_anslympacker.asm &#8211; rewritten</p>
<p>- improved: check_cicompress.asm &#8211; <span style="COLOR: #000000">tweaked &amp;  optimised</span></p>
<p><span style="COLOR: #000000">- improved: check_exestealth.asm &#8211; added in one  more generic check</span></p>
<p>- improved: check_mew10.asm &#8211; tweaked mew 10 detection</p>
<p><span style="COLOR: #000000">- improved: check_pebundle.asm &#8211; updated, now  detects on an exe wich didn´t before</span></p>
<p><span style="COLOR: #000000">- improved: check_rdgtejoncrypter.asm &#8211; added in  a more generic detection method</span></p>
<p>- improved: check_telock.asm &#8211; tweaked TeLock v0.96 detection</p>
<p><span style="COLOR: #000000">- improved: license_elicense.asm &#8211; completely  rewritten (better v3.2 &amp; v4.0 detection)</span></p>
<p><span style="COLOR: #000000">- improved: license_flexlm.asm &#8211; </span>optimized detection &amp; scanning speed</p>
<p><span style="COLOR: #000000">- improved: license_flexnet.asm &#8211; </span>optimized detection &amp; scanning speed</p>
<p><span style="COLOR: #000000">- improved: license_haspsl.asm &#8211; added another  check for HASP SL</span></p>
<p><span style="COLOR: #000000">- improved: license_interlok.asm &#8211; added in one  more generic check</span></p>
<p><span style="COLOR: #000000">- improved: license_salesagent.asm &#8211; </span>optimized detection &amp; scanning speed</p>
<p><span style="COLOR: #000000">- improved: license_sentinellm.asm &#8211;  optimized</span></p>
<p>- improved: generic speed improvements in almost all license scans</p>
<p>- improved: dongle_keylok2.asm &#8211; <span style="COLOR: #000000">updated KeyLok2  Dongle detection for better detection</span></p>
<p>- improved: generic speed improvements in all dongle scans</p>
<p>- improved: installer_7zip.asm &#8211; <span style="COLOR: #000000">code updated,  now detects an exe it never &#8216;saw&#8217; before</span></p>
<p><span style="COLOR: #000000">- improved: installer_installaware.asm &#8211; updated  to detect a custom version wich was un-detected before</span></p>
<p><span style="COLOR: #000000">- improved: installer_installshield.asm &#8211;  installshield detection is now more generic and improved</span></p>
<p><span style="COLOR: #000000">- improved: installer_mscabsfx.asm &#8211; microsoft  cab sfx format detection is now made better</span></p>
<p><span style="COLOR: #000000">- improved: installer_nullsoft.asm &#8211; updated to  handle nullsoft sfx exe&#8217;s with the data in the resource section</span></p>
<p><span style="COLOR: #000000">- improved: installer_rarsfx.asm &#8211; WinRAR SFX  detection updated</span></p>
<p>- improved: installer_zylomgames.asm &#8211; detection of another variant of Zylom  Games Setup</p>
<p>- bugfix: fixed bug in Cactus Data Shield file scan (discovered by Blazkowicz  on acrobat.dll)</p>
<p>- bugfix: check_obsidium.asm &#8211; bugfix in obsidium detection code</p>
<p>- bugfix: check_polyene.asm &#8211; fixed possible crashbug</p>
<p>- bugfix: installer_redshift.asm &#8211; <span style="COLOR: #000000">fixed  potential bug</span></p>
<p><span style="font-weight: 700; text-decoration: underline;">2009.01.18</span></p>
<p><span style="text-decoration: underline;">core additions / changes</span></p>
<p>- new: enabled the PE Stuff dialog (still in early stages)</p>
<p>- new: smbios reporting added (misc tools portion)</p>
<p>- update: pid entrypoint code optimised</p>
<p>- update: updated resizing core, and squashed a few bugs</p>
<p>- update: false positive with some anti virus programs is now fixed (gdata  and avast)</p>
<p>- update: folderwatch, task manager, cd/dvd filter driver report, services  report and folder</p>
<p>locations all have right click context menus allowing the data  to be saved to file</p>
<p>- update: uninstaller code tweaked &#8211; various fixes on some entries that would  not uninstall</p>
<p>- update: update portion is now tweaked, a bit better and more  futureproof</p>
<p>- update: windows 7 is now detected right and everything is functional (we  are windows 7 compatible)</p>
<p>- bugfix: gui issue when run from context menu (log window will be shown)</p>
<p>- bugfix: file open doing nothing bug fixed &#8211; happened on WinXP with no  service packs</p>
<p>- bugfix: folderwatch &#8211; bugfix in window handler, could have caused a lockup  in 9x/me systems</p>
<p><span style="text-decoration: underline;">detection additions /  changes</span></p>
<p>- new: check_protectdisc.asm &#8211; added ProtectDisc exact v9.0.0, v9.1.0 &amp;  v9.2.0 detection</p>
<p>- new: check_g4wl.asm &#8211; added Games for Windows Live detection (xlive)</p>
<p>- new: check_steam.asm &#8211; added Steam (basic stub) detection</p>
<p>- new: check_activemark.asm &#8211; added ActiveMARK v6.50.767 detection</p>
<p>- new: check_breakpointcrypter.asm &#8211; added Breakpoint Crypter v0.0.79  detection</p>
<p>- new: check_expressor.asm &#8211; added exPresor v1.6.1 (Pro) detection</p>
<p>- new: check_fearzcrypter.asm &#8211; added fEaRz Crypter v2.2.0 detection</p>
<p>- new: check_hellcrypter.asm &#8211; added HellCrypter v1 detection</p>
<p>- new: check_kratoscrypter.asm &#8211; added Kratos Crypter detection</p>
<p>- new: check_npack.asm &#8211; added nPack v1.1.800.2008 + unknown version  detection</p>
<p>- new: check_obsidium.asm &#8211; added Obsidium v1.3.6.1 detection</p>
<p>- new: check_pespin.asm &#8211; added PeSpin v0.1 (x64) detection</p>
<p>- new: check_rdgpack.asm &#8211; added RDG Pack Lite Edition v0.4 detection</p>
<p>- new: check_roguepack.asm &#8211; added RoguePack v4.0 Beta 1 detection</p>
<p>- new: check_rlpack.asm &#8211; added RLPack v1.21 detection</p>
<p>- new: check_simplecrypter.asm &#8211; added Simpl3 CrYpT3R detection</p>
<p>- new: check_xcrypter.asm &#8211; added X-Crypter v2.01 detection</p>
<p>- new: check_zprotect.asm &#8211; added in *generic* ZProtect detection</p>
<p>- new: dongle_softdog.asm &#8211; added SoftDog Dongle detection</p>
<p>- update:  check_protectdisc.asm &#8211; removed protection level output (basic/pro) when  detecting v9</p>
<p>(this version is all &#8216;Pro&#8217;, no more &#8216;Basic&#8217; v9 games)<br />
-  update: check_activemark.asm &#8211; ActiveMark v6.1.335 detection rewritten</p>
<p>(thx Nacho_dj for reporting a bug in American McGee&#8217;s Grimm  Bundle)</p>
<p><span style="text-decoration: underline;">CD/DVD/Image file/sector  scan</span></p>
<p>- update: sector scan updated to handle various movie protections</p>
<p>(css/cpmm, cprm, aacs hddvd, aacs bd), this code is still in  the experimental stage,</p>
<p>and needs testing, but seems to work <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> </p>
<p>[I] Init cd/dvd sector scan for Drive O</p>
<p>[i] Detected CSS / CPMM Protection! (0&#215;00000001)</p>
<p>[i] Region Lock Detected -&gt; RegionBitMask: 00000002</p>
<p>[.] Region(s) allowed : 2 (Drive region will need to be  changed, you have 2 changes remaining,</p>
<p>your current region is : 1)</p>
<p>- Scan Took : 0.828 Second(s)</p>
<p>- bugfix: fixed bug in cddvd sector scanning code (register got trashed) &#8211;  not critical..</p>
<p><span style="font-weight: 700; text-decoration: underline;">2008.12.23</span></p>
<p><span style="text-decoration: underline;">core additions / changes</span></p>
<p>- new: width-RESIZEABLE main window</p>
<p>- new: user can now choose what protection scans to skip</p>
<p>- new: added in new configuration item allowing the user to specify if iso,  ccd, mds</p>
<p>etc modules are to be treated as discs (and therby subject to a  sector scan)</p>
<p>- new: ability to scan inside microsoft cab files has been implimented</p>
<p>- update: we are now v0.6.1.3</p>
<p>- update: faster scanning core <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> </p>
<p>- update: configuration window has a new look</p>
<p>- update: better 64 bit file handling support added</p>
<p>- update: appended data detection tweaked a little</p>
<p>- update: now if pid is running and an exe is scanned from the context menu,  the main</p>
<p>window will change to the log window (looks better.. suggested  by loki)</p>
<p>- update: lnk file resolving is now complete, if user has selected to resolve  links,</p>
<p>the system handles this all automatically</p>
<p>- update: window position is now centred if a previous window location was  not recorded</p>
<p>- update: adjusted ia64/x64 vs. machine check portion of code (thx to teddy  rogers)</p>
<p>- update: configuration &#8211; windows product key showing is now a configuration  item</p>
<p>- update: configuration &#8211; now &#8216;themes&#8217; and &#8216;flat mode&#8217; can not be selected at  the same time,</p>
<p>this is how it should be as themes override flatmode etc&#8230; so  now only one can</p>
<p>be selected, and the other is &#8216;auto unselected&#8217; (suggested by  syk0)</p>
<p>- update: configuration &#8211; addedin code to enable/disable the &#8216;protection  report bubble&#8217;</p>
<p>after a scan is completed</p>
<p>- update: Memory Optimiser &#8211; the progress bar should get to the start again  when user</p>
<p>clicked on Optimize and Purge was successful</p>
<p>- update: Memory Optimiser &#8211; code heavily updated, to work in chunks (if  largest size</p>
<p>requested is not available), so, end result &#8211; more reliable,  faster and optimised</p>
<p>- update: misc tools &#8211; added in quick uninstall tab</p>
<p>- update: misc tools &#8211; added in CD/DVD Filter Driver scanner tab</p>
<p>- update: misc tools &#8211; added in Windows Error Code Resolver tab</p>
<p>- update: misc tools &#8211; added in CPU Info tab</p>
<p>- update: misc tools &#8211; added in windows directory in the system info  output</p>
<p>- update: misc tools &#8211; added in Folder Locations scanner</p>
<p>- update: misc tools &#8211; system information window now reports graphic device  names</p>
<p>(geforce, etc), username &amp; computername and terminal  services availability also reported</p>
<p>- update: misc tools &#8211; windows install date (from registry) is now reported  in the misc tools</p>
<p>&#8216;system info part&#8217;, windows install date (from folder) is now  also reported.</p>
<p>- update: misc tools &#8211; tweaked x64 os detection code, so its a lot more  reliable</p>
<p>- update: misc tools &#8211; windows product key reporting now also handles x64  systems</p>
<p>- update: nfo viewer &#8211; extra checking now added &#8211; zip, rar and mz executables  will NOT be</p>
<p>displayed, instead, a warning message is displayed</p>
<p>- update: process view &#8211; added in check for terminate, dump, priority  change..</p>
<p>if selected process is pid, the menu items are disabled (for  safety and security)</p>
<p>- update: svf checking now reports current offset on the line when  processing</p>
<p>- update: sfv processing now works with quoted filenames</p>
<p>- update: winspy &#8211; process name is now also reported (if we could obtain it..  )</p>
<p>- update: log window in cd/dvd operations now has a context menu, allowing  for&#8230;</p>
<p>clear log</p>
<p>copy selection to clipboard</p>
<p>copy log to clipboard</p>
<p>save selection (txt)</p>
<p>save selection (csv)</p>
<p>save log (txt)</p>
<p>save log (csv)</p>
<p>- bugfix: admin reflection / reporting was incorrect on 9x/ME systems</p>
<p>- bugfix: &#8216;admin shield&#8217; icon is now moved, it looked out of place if the  other progress bars</p>
<p>showing cpu usage etc were turned off.. (reported by loki)</p>
<p>- bugfix: Export as .txt doesn&#8217;t work properly, only the first file does get  saved</p>
<p>- bugfix: event bug fixed, which sometimes resulted in pid sticking at about  35% cpu</p>
<p>- bugfix: pause/resume in the queue window was sometimes wrong for the text  (reported by r!co)</p>
<p>- bugfix: Fixed SFV bug &#8211; Click on make, don&#8217;t select any files and press  abort.</p>
<p>You can&#8217;t use the complete SFV feature as it&#8217;s all greyed out  (reported by Blazkowicz)</p>
<p>- bugfix: sfv output for large files (mb, gb etc) was VERY wrong, its since  corrected</p>
<p>- bugfix: fixed &#8216;disappearing window&#8217; problem</p>
<p>- bugfix: &#8216;large icons&#8217; issue fixed in 9x</p>
<p>- bugfix: sfv &#8211; abort now works</p>
<p>- bugfix: sfv &#8211; output issue should be 110% fixed now (new buffering system  used)</p>
<p>- bugfix: task manager -&gt; potential stack bug fixed</p>
<p>- bugfix: configuration &#8211; shortcut creation was broken</p>
<p>- bugfix: nfo viewer &#8211; fixed potential memory leak on drag/drop</p>
<p>- bugfix: bug in the code checking for digital signatures (found by  Blazkowicz)</p>
<p>code now performs a sanity check on accessed memory areas</p>
<p><span style="text-decoration: underline;">detection additions /  changes</span></p>
<p>- new: check_activemark.asm &#8211; added version detection for v6.3.562</p>
<p>- new: check_alawar.asm &#8211; added Alawar Try &amp; Buy Activation detection</p>
<p>- new: check_hexalock.asm &#8211; added HexaLock Copy Protection detection</p>
<p>- new: check_protectdisc.asm &#8211; added more Protect DiSC v8 subversions</p>
<p>- new: check_securom.asm &#8211; added in detection for sll modules + SecuROM  Matroschka Package</p>
<p>- new: check_acprotect.asm &#8211; added ACProtect v2.1, v2.1.1 and v2.1.2  detection</p>
<p>- new: check_angelscrypter.asm &#8211; added Angel&#8217;s Crypteur v0.2 detection</p>
<p>- new: check_antidote.asm &#8211; added AntiDote v1.4 SE detection</p>
<p>- new: check_armadillo.asm &#8211; added version detection v6.00 or newer</p>
<p>- new: check_atreprotector.asm &#8211; added AT4RE Protector v1.0 detection</p>
<p>- new: check_avlock.asm &#8211; added AVLock detection</p>
<p>- new: check_budcrypter.asm &#8211; added BUD Crypter detection</p>
<p>- new: check_coolcrypt.asm &#8211; added COOLcryptor 0.9 detection</p>
<p>- new: check_cryptwoz.asm &#8211; added CryptWOZ v1.0 detection</p>
<p>- new: check_darkcrypt.asm &#8211; added DarkCrypt v1.2 (Private Version)  detection</p>
<p>- new: check_dcrypt.asm &#8211; added DCrypt Private v0.9b detection</p>
<p>- new: check_dotfixniceprotect.asm &#8211; added DotFix NiceProtect v1.0  detection</p>
<p>- new: check_dotnetreactor.asm &#8211; added dotNet Reactor v3.3 (or newer)  detection</p>
<p>- new: check_enigmaprotector.asm &#8211; added version grabber for Enigma  Protector</p>
<p>- new: check_execrypt.asm &#8211; added ExeCRyPT v1.0 [ReBirth] detection</p>
<p>- new: check_exefog.asm &#8211; added EXEFog v1.1 detection</p>
<p>- new: check_exewrapper.asm &#8211; added ExeWrapper v3.0 (533Soft) detection</p>
<p>- new: check_expressor.asm &#8211; added ExPressor v1.6 detection</p>
<p>- new: check_fakuscrypter.asm &#8211; added Fakus Crypter detection</p>
<p>- new: check_fastfilecrypt.asm &#8211; added FastFileCrypt v1.6 Public  detection</p>
<p>- new: check_fatalzcrypt.asm &#8211; added Fatalz Crypt v2.14a detection</p>
<p>- new: check_flashbackprot.asm &#8211; added Flashback Protector v1.0 detection</p>
<p>- new: check_gieprotector.asm &#8211; added Gie Protector v0.2 detection</p>
<p>- new: check_imppacker.asm &#8211; added IMP-Packer v1.0 detection</p>
<p>- new: check_kcryptor.asm &#8211; added K!Cryptor v0.11 detection</p>
<p>- new: check_kgbcrypter.asm &#8211; added KGB Cypter v1.0a detection</p>
<p>- new: check_leetcryptor.asm &#8211; added 1337 Cryptor v2 detection</p>
<p>- new: check_lilithcrypter.asm &#8211; added Lilith Crypter detection</p>
<p>- new: check_maxtocode.asm &#8211; added MaxtoCode .Net Encryption detection</p>
<p>- new: check_minke.asm &#8211; added Minke v1.0.1 Executable Crypter detection</p>
<p>- new: check_moneycrypter.asm &#8211; added Money Crypter detection</p>
<p>- new: check_morphna.asm &#8211; added Morphna Beta 2 detection</p>
<p>- new: check_mortalteamcrypter.asm &#8211; added Mortal Team Crypter v2  detection</p>
<p>- new: check_mpress.asm &#8211; added MPRESS NET compressor detection</p>
<p>- new: check_mushroomcrypter.asm &#8211; added Mu$hr00M CryPtOR v1.0 detection</p>
<p>- new: check_nme.asm &#8211; added NME Executable Crypter v1.1 detection</p>
<p>- new: check_npack.asm &#8211; added nPack v1.1.500.2008 Beta detections</p>
<p>- new: check_obfuscatornet.asm &#8211; added Macrobject Obfuscator.NET  detection</p>
<p>- new: check_privateexe.asm &#8211; added version detection for v2.00 &#8211; v2.25 and  v2.30 &#8211; v2.70</p>
<p>- new: check_puricrypt.asm &#8211; added Puri Crypt v1.2 detection</p>
<p>- new: check_quickpacknt.asm &#8211; added QuickPack NT v0.1 detection</p>
<p>- new: check_rcryptor.asm &#8211; added RCryptor v1.6d detection</p>
<p>- new: check_rdgpack.asm &#8211; added RDG Pack Lite Edition v0.2 detection</p>
<p>- new: check_rdgtejoncrypter.asm &#8211; added RDG Tejon Crypter v0.3 detection</p>
<p>- new: check_rlp.asm &#8211; added ReversingLabs Protector v0.7.4 beta  detection</p>
<p>- new: check_rlpack.asm &#8211; added RLPack v1.20 detection</p>
<p>- new: check_roguepack.asm &#8211; added RoguePack v3.3 detection</p>
<p>- new: check_russiancryptor.asm &#8211; added Russian Cryptor v1.0 detection</p>
<p>- new: check_securepe.asm &#8211; added SecurePE v1.5 detection</p>
<p>- new: check_secureshade.asm &#8211; added Secure Shade v1.8 detection</p>
<p>- new: check_snoopcrypt.asm &#8211; added SnoopCrypt detection</p>
<p>- new: check_thinstall.asm &#8211; added THInstall detection</p>
<p>- new: check_tstcrypter.asm &#8211; added TsT Crypter detection</p>
<p>- new: check_undergroundcrypter.asm &#8211; added UndergroundCrypter v1.0  detection</p>
<p>- new: check_unlimitedcrypter.asm &#8211; added UnLimited Crypter v1.0  detection</p>
<p>- new: check_unopix.asm &#8211; added UnoPiX v0.94 detection</p>
<p>- new: check_upxlock.asm &#8211; added UPX Lock v1.01 &#8211; v1.02 detection</p>
<p>- new: check_weruscrypter.asm &#8211; added Werus Crypter v1.0 detection</p>
<p>- new: check_wildtangent.asm &#8211; added Wild Tangent v2.1 Activation  detection</p>
<p>- new: check_windofcrypt.asm &#8211; added WindOfCrypt detection</p>
<p>- new: check_wingscrypt.asm &#8211; added Wingscrypt v2.0 detection</p>
<p>- new: check_winutilitiesexeprot.asm &#8211; added WinUtilities EXE Protector v2.1  detection</p>
<p>- new: check_wlcrypt.asm &#8211; added WL-Crypt v1.0 detection</p>
<p>- new: check_xenocode.asm &#8211; added XenoCode .NET protector detection</p>
<p>- new: check_xenocode.asm &#8211; added XenoCode Postbuild 2007 + 2008 for .NET  detection</p>
<p>- new: check_xhackercryptor.asm &#8211; added xHacker Cryptor detection</p>
<p>- new: check_xshell.asm &#8211; added XShell v1.5 detection</p>
<p>- new: check_zprotect.asm &#8211; added ZProtect v1.4.3 detection</p>
<p>- new: check_zylomwrapper.asm &#8211; added Zylom Wrapper Crypted Game.exe  detection</p>
<p>- new: license_nalpeiron_scan.asm &#8211; added Nalpeiron Licensing Service  detection</p>
<p>- new: installer_install4y.asm &#8211; added Install4j Wizard Module detection</p>
<p>- new: installer_installshield.asm &#8211; added InstallShield v12 BETA Version  detection</p>
<p>- new: installer_squeezesfx.asm &#8211; added Squeeze Self Extractor Module  detection</p>
<p>- new: installer_trymediadownload.asm &#8211; added Trymedia Systems Download  Manager detection</p>
<p>- new: msi and 7zip file type reporting is now done to the log window</p>
<p>(similar to the .rar, zip etc reporting)</p>
<p>- new: added in quick detection for starforce protected pdf file</p>
<p>- update: check_aspack.asm &#8211; added additional check for ASPack 2.x to avoid a  false positive</p>
<p>when scanning a file wrapped by FlashBack with ASPack  entrypoint signature</p>
<p>- update: check_codelok.asm &#8211; improved detection</p>
<p>- update: check_dotnetreactor.asm &#8211; some parts recoded to be more generic  &amp; faster</p>
<p>- update: check_execryptor2.asm &#8211; improved detection with heuristic checks</p>
<p>- update: check_laserlok.asm &#8211; updated to handle older (v3) versions of  laserlok</p>
<p>- update: check_passlock2000.asm &#8211; improved detection</p>
<p>- update: check_reflexivearcade.asm &#8211; executables builds are now reported (if  found)</p>
<p>- update: check_safedisc.asm &#8211; updated to detect safedisc lite</p>
<p>- update: check_securom.asm &#8211; updated to handle VERY old versions &amp;  updated to detect a modified paul.dll</p>
<p>- update: check_solidshield.asm &#8211; minor modifications, but results in better  reporting</p>
<p>- update: check_starforce.asm &#8211; updated to handle the new variant (v5.5) and  also report bitness of the exe</p>
<p>- update: check_sysiphus.asm &#8211; optimized detection</p>
<p>- update: check_themida.asm &#8211; updated to handle dll protected Themida  files</p>
<p>- update: check_vmprotect.asm &#8211; added new generic detection code (catches now  dlls we missed before)</p>
<p>- update: check_upx.asm &#8211; improved to be &#8216;more generic&#8217;</p>
<p>- update: check_vob.asm.asm &#8211; updated to handle older version (4 or less)</p>
<p>- update: dongle_guardant.asm &#8211; added reporting of old Guardant Dongle  Protections</p>
<p>- update: dongle_hasphlenvelope.asm &#8211; improved detection</p>
<p>- update: license_sentinellm &#8211; improved for better detection</p>
<p>- update: installer_7zip.asm &#8211; improved detection</p>
<p>- bugfix: check_telock.asm &#8211; fixed v1.0 detection</p>
<p>- bugfix: check_yzpack.asm &#8211; fixed bug resulting in non detections</p>
<p>- bugfix: installer_installshield.asm &#8211; fixed possible non detections</p>
<p><span style="text-decoration: underline;">CD/DVD/Image file/sector  scan</span></p>
<p>- new: b6i image added into the supported file list</p>
<p>- new: added in &#8216;Extract Boot Sector&#8217;, now the boot sector from the cd/dvd  can</p>
<p>be &#8216;extracted&#8217; to a file.. for use with something else maybe <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> </p>
<p>- new: cddvd_cactus.scan.asm &#8211; Cactus Audio detection added to file scan in  cddvd module</p>
<p>- new: cddvd_protectdisc.scan.asm &#8211; added in sector scan module for  protectdisc / protectcd</p>
<p>- update: if a disk is detected as being protected when making the iso,</p>
<p>the user will be prompted to continue or not</p>
<p>- update: sector stuff &#8211; updated handler to handle udf format disks</p>
<p>(BEA01 header instead of CD001)</p>
<p>- update: sector scan &#8211; tweaked sector scan for tages a little</p>
<p>- update: sector scan &#8211; tweaked the safedisc detection code</p>
<p>- update: sector scan &#8211; updated to now NOT stop if a sector 16 read failure  happened</p>
<p>- update: sector scan &#8211; securom scan updated to handle version 4.x (and  probably lower),</p>
<p>which used a different &#8216;fingerprint&#8217; and some minor tweaks /  fixes</p>
<p>- update: sector scan &#8211; starforce + starforce keyless scan was heavily  updated..</p>
<p>reducing probability of false positives as well as catching  some we missed before</p>
<p>- bugfix: sector scan &#8211; codelok scan fixed</p>
<p><span style="font-weight: 700; text-decoration: underline;">2007.12.24</span></p>
<p>- update: version changed to 0.6.0.0 BETA XMAS 2007 PREVIEW</p>
<p>- update: pause/resume and event handing is now handled better, less  &#8216;pausing&#8217; in scans&#8230;</p>
<p>- bugfix: sfv tool &#8211; crcing large (&gt;4gig) files bug issue is now fixed</p>
<p>- new: check_celsiuscrypter.asm &#8211; added Celsius Crypter v2.1 detection</p>
<p>- new: check_fearzcrypter.asm &#8211; added fEaRz Crypter v1.0 Beta 1 detection</p>
<p>- new: check_fishpeshield.asm &#8211; added FishPe Shield v2.0.1 detection</p>
<p>- new: check_marjinzscrambler.asm &#8211; added MarjinZ ScramblerSE detection</p>
<p>- new: check_sexecrypter.asm &#8211; added Sexe Crypter v1.1 detection</p>
<p>- new: check_thebestcryptor.asm &#8211; added The Best Cryptor [by FsK]  detection</p>
<p>- new: check_unknowncrypter.asm &#8211; added unkOwn Crypter v1.0 detection</p>
<p>- update: check_securom.asm &#8211; updated for new paul version, code made more  generic too</p>
<p>- bugfix: check_air_exelock.asm &#8211; fixed possible crashbug</p>
<p>- bugfix: check_cexe.asm &#8211; fixed possible crashbug</p>
<p>- bugfix: check_exeprotector.asm &#8211;  fixed possible crashbug</p>
<p>- bugfix: check_forgot.asm &#8211;  fixed possible crashbug</p>
<p><span style="font-weight: 700; text-decoration: underline;">2007.11.28</span></p>
<p>- new: deferred window positioning system included into pid now depending on  &#8216;demand&#8217;</p>
<p>- new: added in &#8216;export as csv&#8217; and &#8216;export as txt&#8217; into the context menu,  allowing the protection report</p>
<p>(all of it.. not selections) to be exported to a file in 2  formats</p>
<p>- new: time added to the report</p>
<p>- new: added in an &#8216;eject cd/dvd&#8217; menu item now, allowing eject to be done  easily ;p</p>
<p>NOTE: This is ONLY available via right/left click on the systray  icon&#8230;</p>
<p>It is also disabled on non NT based systems</p>
<p>- new: cd/dvd sector scan &#8211; added in &#8216;action&#8217; code, where we can report  even</p>
<p>unknown protection found on the disk by using a heuristic  analysis.. <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> </p>
<p>- new: check_protectdisc.asm</p>
<p>- added Protect DiSC v8.0.2 detection</p>
<p>- added Protect DiSC v8.0.4 detection</p>
<p>- added Protect DiSC v8.0.5 detection</p>
<p>- new: check_packitbitch.asm &#8211; added PackItBitch v1.0 detection</p>
<p>- new: check_pezip.asm &#8211; added PE Zip v1.0 detection</p>
<p>- new: check_smartassembly.asm &#8211; added {smartassembly} DotNet Obfuscator  detection</p>
<p>- new: check_thunderbolt.asm &#8211; added Thunderbolt v0.0.2 detection</p>
<p>- new: check_ussr.asm &#8211; added USSR v0.31 detection</p>
<p>- new: check_vcrypt.asm &#8211; added VCrypt v0.9b detection</p>
<p>- new: check_xheocodeveil.asm &#8211; added XHEO CodeVeil generic, v1.2, v1.3  support</p>
<p>- new: check_xxpack.asm &#8211; added xxPack v0.1 detection</p>
<p>- new: installer_akinstaller.asm &#8211; added AKInstaller Module detection</p>
<p>- new: installer_zylomgames.asm &#8211; added Zylom Games Setup Module  detection</p>
<p>- update: check_protectdisc.asm &#8211; heavily cleaned, lookup tables used, and  better</p>
<p>output to the log and report window, code is also faster than  before</p>
<p>- update: check_solidshield.asm &#8211; got a huge update, now it uses ade32 for  processing of the</p>
<p>executable, and the code has been optimised a large bit, its  faster and more accurate</p>
<p>now, and caters for ALL versions currently using a generic algo  <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> </p>
<p>- update: check_armadillo.asm &#8211; improved specific version check for v4.64  &amp; v4.66</p>
<p>- update: check_execryptor2.asm &#8211; added exact version scanning in executables  where</p>
<p>.code section is uncompressed</p>
<p>- update: check_rlpack.asm &#8211; optimised code</p>
<p>- update: installer_nullsoft.asm &#8211; updated to detect the latest NullSoft  Installer Builds</p>
<p>- update: installer_rarsfx.asm &#8211; updated to detect newer versions of WinRAR  SFX Archive</p>
<p>- update: installer_wise.asm &#8211; updated to detect newer versions of the Wise  Installation Wizard</p>
<p>- update: installer_zupmakersfx.asm &#8211; updated to detect the latest UPX´ed  versions</p>
<p>- update: version updated to v0.5.81.13</p>
<p>- update: suspicious mz checking is now a LOT more intelligent</p>
<p>- update: cosmetic &#8211; config window has capitalised letters for every word</p>
<p>- update: task manager &#8211; context menus have accellerators now</p>
<p>- update: cd/dvd sector scanning menu item is now DELETED if a non NT based  system is found</p>
<p>- update: main menu -&gt; eject cd/dvd got boosted, now we have a &#8216;load&#8217; as  well</p>
<p>allowing you to eject/load cd/dvd disks into the system from  the systray&#8230;</p>
<p>(obviously requires hardware support, but most systems do  it)</p>
<p>now people dont need shitty little systray programs to  open/close their cd/dvd drives</p>
<p>pid does it&#8230; and much much much more&#8230; wheeeeeee ;p</p>
<p>- update: main menu -&gt; eject cd/dvd + load cd/dvd got made multi threaded,  because on &#8216;load&#8217; the gui could</p>
<p>appear frozen, while the operating system reads cd/dvd to get  toc and so on, which</p>
<p>does not look good, this way, it works and its responsive (main  aim is, that regardless</p>
<p>of what pid is doing, the gui should always be responsive, so  the user does not think it has hung&#8230;)</p>
<p>- update: sfv &#8216;keeps&#8217; its dir for saving the sfv file so its saved in the  same dir</p>
<p>- update: scratchpad &#8211; ctrl+a to select all is now implimented (requested by  Blazkowicz),</p>
<p>this is now global for the other subclassed editboxes  too&#8230;.</p>
<p>- update: if window position is not recorded (or if its fucked), pid will  start centred on the desktop</p>
<p>- update: cd/dvd sector scan is now toggleable, and does not require you to  reload pid to set/unset it&#8230;.</p>
<p>- update: deferred window positioning system included into pid now depending  on &#8216;demand&#8217;</p>
<p>- bugfix: seh minidump &#8211; minidumps are now saved, there was a minor bug in  the routine</p>
<p>(bad ptr) also for uac compatability, pid will save the dump  file to the user folder</p>
<p>if creation in the local folder failed somehow</p>
<p>- bugfix: check sfv &#8211; gui might be wrong on big files / last output</p>
<p>- bugfix: memory optimiser &#8211; gui adjusted, check boxes were too close  together</p>
<p>for some.. now they&#8217;re nicely spaced out&#8230;</p>
<p>- bugfix: cd/dvd sector scan code was somehow broken</p>
<p>- bugfix: disable inet access, do a right click and select &#8216;update&#8217;,</p>
<p>it will crash (reported by Blazkowicz) &#8211; fixed</p>
<p>- bugfix: output of a filename with an umlaut caused a crash (because seh  data wasn&#8217;t there) &#8211; fixed</p>
<p><span style="font-weight: 700; text-decoration: underline;">2007.10.14</span></p>
<p>- new: configuration option &#8216;supress cd/serial string reporting&#8217; and &#8216;cd/dvd  checks&#8217;</p>
<p>- new: added in smooth window transitions configuration setting, allows  you</p>
<p>to choose if you want fast or smooth window changing</p>
<p>- new: added in -safe commandline to force pid to launch in safemode (where  plugins etc</p>
<p>will not be loaded) registry will still be processed etc, but any  bad data will be</p>
<p>reset, and plugins will not be loaded this allows the user to  recover from fuckups.</p>
<p>current commandline list:</p>
<p>-auto -&gt; loads pid with windows when it loads (auto start)</p>
<p>-cons -&gt; starts pid in console mode (test purposes only)</p>
<p>-scdf -&gt; scan drive/folder mode (additional params in commandline  expected)</p>
<p>-sfvc -&gt; checks sfv file (sfv filename expected to be an  additional param in the commandline)</p>
<p>-scan -&gt; scans file (filename expected to be an additional param  in the commandline)</p>
<p>-safe -&gt; impliments safe mode (action is not taken yet tho)</p>
<p>- new: pid reports if safemode is active in the log window</p>
<p>- new: check_protectdisc.asm</p>
<p>- added Protect DiSC v7.8.1 detection</p>
<p>- added Protect DiSC v8.0.0 detection</p>
<p>- added Protect DiSC v8.0.3 detection</p>
<p>- new: check_starforcedll.asm &#8211; added TradeName detection (Basic, Builder,  Pro)</p>
<p>- new: check_sysiphus.asm &#8211; added Sysiphus DVD Copy Protection detection</p>
<p>- new: check_avercryptor.asm &#8211; added Aver Cryptor v1.00 &amp; v1.02 Beta  detection</p>
<p>- new: check_cryptic.asm &#8211; added Cryptic v2.0 detection</p>
<p>- new: check_exeevil.asm &#8211; added EXE Evil v1.0 detection</p>
<p>- new: check_fearzpacker.asm &#8211; added fEaRz Packer v0.3 detection</p>
<p>- new: check_mucruncher.asm &#8211; added MuCruncher detection</p>
<p>- new: check_netz.asm &#8211; added .NetZ detection</p>
<p>- new: check_obsidium.asm &#8211; added Obsidium v1.3.4.1 detection</p>
<p>- new: check_qryptor.asm &#8211; added QrYPt0r v1.0 detection</p>
<p>- new: check_rlpack.asm &#8211; added RLPack exact version detection for v1.16,  v1.17, v1.18, v1.19</p>
<p>- new: check_shrinkwrap.asm &#8211; added Shrink Wrap v1.4 detection</p>
<p>- new: check_vpacker.asm &#8211; added VPacker v0.02.10 detection</p>
<p>- update: check_fsg.asm &#8211; minor improvements</p>
<p>- update: version number increased 5.75.12</p>
<p>- update: adjusted status window messaging system, its now on an  interval,</p>
<p>result is that scans are much faster</p>
<p>- update: seh now reports thread that crashed too, along with its  name&#8230;.</p>
<p>handier for reporting, it also only reports scan previous/next  etc if the</p>
<p>crash actually happened within the main scanning thread&#8230;.</p>
<p>- update: started updating code for app verifier compliance</p>
<p>- update: app verifier presence reported in misc tools info output</p>
<p>- update: auto start with windows works (vista support soon)</p>
<p>- update: added detection for windows server 2008 (misc tools report)</p>
<p>- update: IsVista proc updated to handle for windows server 2008</p>
<p>- update: shortcut making system is operational. we can now make  shortcuts</p>
<p>on desktop for pid, safe mode etc..</p>
<p>- update: more settings stored in registry &#8211; including current version of  pid</p>
<p>- update: folder queue window supports drag and drop</p>
<p>- update: configuration auto enables/disables the &#8216;safe mode&#8217; shortcut  setting if</p>
<p>desktop shortcut is not checked&#8230; looks better</p>
<p>- update: suspicious mz reporting now tightened (also, possiblity of  e_lfanew</p>
<p>being null and causing crash also fixed)</p>
<p>- update: adjusted drag and drop functionality for windows and sub  windows</p>
<p>ie:  window currently shown is the &#8216;active&#8217; drag/drop target,  if you see the &#8216;+&#8217; appear</p>
<p>on the cursor when dragging, the window supports  drag/drop, if you see the &#8216;no&#8217; sign</p>
<p>appear then it doesnt.. before dragging anything onto the  pid window caused it to scan</p>
<p>the file&#8230; this behaviour has been changed&#8230; to have pid  scan a file on drag/drop</p>
<p>you MUST have the log window open&#8230; otherwise it goes to  the other handlers&#8230;</p>
<p>- update: check_ringprotech.asm &#8211; improved to detect more &#8216;versions&#8217;</p>
<p>- update: check_securom.asm &#8211; added SecuROM v7.02 detection with &#8216;double  layer crypt&#8217;</p>
<p>- update: check_solidshield.asm &#8211; added support for newer versions</p>
<p>- update: installer_siliconrealms.asm &#8211; recoded detection</p>
<p>- bugfix: bugfix in configuration, due to a duplicate resource some settings  were not saved correctly</p>
<p>- bugfix: bug in the system information (misc tools) ESI got corrupted, so  memory output was crap</p>
<p>- bugfix: drag/drop issue fixed on log window (didnt go multi threaded for  some odd reason&#8230;)</p>
<p>- bugfix: configuration, somehow the scanondemand setting on the registry was  made as</p>
<p>a DWORD, but set as a bool leading to regedit reporting &#8216;invalid  dword value&#8217;</p>
<p>- bugfix: bugfix in task manager &#8211; freesid called when  allocateandinitializesid wasnt (leading to app verifier bitching)</p>
<p>- bugfix: check_asprotect.asm &#8211; fixed possible crashbug</p>
<p><span style="font-weight: 700; text-decoration: underline;">2007.09.13</span></p>
<p>- new: added in experimental transparent mode for 2k or higher, where the  button bar will</p>
<p>appear to be &#8216;split&#8217; from the main window, and there will be  transparency in the gap..</p>
<p>available as &#8216;button bar split&#8217; in configuration, its enabled by  default</p>
<p>(you can click thru it <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> </p>
<p>- new: speech system integrated (speech isnt exactly perfect&#8230;)</p>
<p>configuration -&gt; allow speech -&gt; close pid and reload it  (says hello <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-feel_good.png' alt=';)' class='wp-smiley' /> </p>
<p>speech system is threaded, so no wait until its finished  talking</p>
<p>- new: protection report window now has a new option in its context menu</p>
<p>&#8216;Open Command Prompt in location&#8217;, which (if selected) opens a  command prompt console</p>
<p>in the directory where the file is located&#8230; quite useful</p>
<p>- new: icon added near pid caption in main window &#8211; it reflects the user  level</p>
<p>- 4 color &#8216;shield&#8217; &#8211; pid not running in admin mode</p>
<p>- green shield &#8211; pid running as admin</p>
<p>- new: check_armadillo.asm &#8211; added exact version detection for v3.50</p>
<p>- new: check_cdsss.asm &#8211; added CDS SS 1.0 Beta 1 detection</p>
<p>- new: check_kaspersky_pack.asm &#8211; added KasperSky Pack detection</p>
<p>- new: check_obsidium.asm &#8211; added Obsidium v1.3.2.2 detection</p>
<p>- new: check_poisenivy.asm &#8211; added Poisen Ivy Crypter v1 detection</p>
<p>- new: check_rlpack.asm &#8211; added RLPack [generic] detection</p>
<p>- new: check_securom.asm &#8211; now detects securom pa (paul.dll)</p>
<p>- new: dongle_guardant.asm &#8211; added Novex Guardant DONGLE detection</p>
<p>- new: installer_installaware.asm &#8211; added InstallAware Setup Module  detection</p>
<p>- update: Task Manager &#8211; pressing the delete key in task manager now kills  the selected process</p>
<p>(requested by Blazkowicz)</p>
<p>- update: update downloader automatically puts .rar extension now on saved  downloaded updates</p>
<p>- update: scratch pad automatically puts .txt extension on saved files</p>
<p>- update: iso maker now has the .iso extension if the user doesnt type in  .iso as</p>
<p>the extension and that the &#8216;auto filename&#8217; thing is enabled in  configuration</p>
<p>- update: taskmanger now has icons in the menus</p>
<p>- update: images/icons now loaded as shared &#8211; prevents resource leak due to  duplication</p>
<p>- update: admin/non admin shield icons are now sized properly and  recolored</p>
<p>- update: richedit in log window has had its flickering reduced, it can still  flicker though</p>
<p>but the effect has been reduced</p>
<p>- update: scan files on cd/dvd has now been moved to a multi threaded code  block, this</p>
<p>stops gui &#8216;freeze&#8217; when selecting to scan files on cd/dvd</p>
<p>- update: added in uptime reporting to the misc tools window&#8230;</p>
<p>yes, it does handle &gt; 49days too&#8230; (GetTickCount has a  limitation of 49 days)</p>
<p>- update: misc tools &#8211; system information also now reports admin status</p>
<p>- update: edit boxes in update, scratch pad, host/ip resolver all now have  an</p>
<p>ownerdrawn menu, similar to the log window menu, so our &#8216;look&#8217;  is now consistant</p>
<p>- update: editbox subclassing now has a &#8216;select all&#8217; entry in the menu too,  for this to be</p>
<p>enabled, the window MUST be the one with keyboard focus</p>
<p>- update: paste added to context menu, only available on the new editboxes,  which are NOT set for readonly</p>
<p>- update: save portions from the menus, now also support the auto append  filename (if set)</p>
<p>- update: minimize button, magnetic button, exit button, all are now  iconized, topmost button</p>
<p>is now auto set to the right icon</p>
<p>- update: auto start with windows now enabled (registry key set now) with new  commandline for pid (-auto)</p>
<p>- update: window minimizing is now a thing of the past, instead we  intelligently handle the</p>
<p>window location and show/hide it (for -auto, we relocate off  screen and hide,</p>
<p>then when show is selected, we move the window to the recorded  coordinates</p>
<p>and then show&#8230;)</p>
<p>- update: right click context menu on edit boxes &#8211; save selection / save to  log is now completed, works fine <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> </p>
<p>- update: handle if window position recorded does not fit the current window  regions</p>
<p>(force reset to centre) could happen if pid was running, user  changed resolutions</p>
<p>to higher, moved pid, exited pid, switched resolution back, pid  would appear off screen ;p</p>
<p>- update: sfv handler can now handle sfv files using the following &#8216;format&#8217;  for new line</p>
<p>0d0ah  (was handled before in previous versions)</p>
<p>0a0dh  (was handled before in previous versions)</p>
<p>0dh     (new)</p>
<p>0ah     (new)</p>
<p>- update: check_cdkey_and_serial.asm &#8211; added new string check  &#8216;ActivationCode&#8217;</p>
<p>- update: check_solidshield.asm &#8211; recoded to detect SolidShield v1.8.3.0 (or  newer)</p>
<p>- bugfix: msinfo button bug &#8211; program files\common files is translated  differently</p>
<p>in other languages</p>
<p>- bugfix: sfv now properly handles the extension thing</p>
<p>- bugfix: tooltip for configurations were missing 1 tooltip</p>
<p>- bugfix: potential parse bug in commandline parser fixed (checked for space  after -xxxxx)</p>
<p>- bugfix: winspy window looked AWFUL in vista, the group boxes text was  centred</p>
<p>in the middle of the group window</p>
<p>- bugfix: fixed some resources in gui</p>
<p>- bugfix: new_pecode.asm &#8211; bugfixed in calculate_time_data proc</p>
<p>(months in system time start at 01 not 00)</p>
<p>- bugfix: new_pecode.asm.asm &#8211; issue in the get_real_module_name proc  happened when the</p>
<p>export info from a packed file was attempted to be read&#8230;  (reported by korn2006)</p>
<p>- bugfix: check_molebox.asm &#8211; optimized code (resulting in faster &amp; more  accurate detection)</p>
<p>- bugfix: check_vob.asm &#8211; fixed VOB Protect CD format output in Protection  Report</p>
<p>- bugfix: installer_clickteam.asm &#8211; fixed bug causing possible wrong  detections</p>
<p><span style="font-weight: 700; text-decoration: underline;">2007.08.27</span></p>
<p>- new: configuration -&gt; allow folder shredding</p>
<p>- new: configuration -&gt; auto filename extension</p>
<p>- new: commandline availability for sfv checking (protection_id -sfvc  sfvfilename.sfv)</p>
<p>- new: sfv association now incorporated into pid (context menu style, or  double click)</p>
<p>note: when sfv is clicked, selecting &#8216;open with protection id&#8217; will  cause the sfv</p>
<p>file to be processed, when its loaded, checking begins  automatically and active</p>
<p>pid window is also set to the sfv window..</p>
<p>- new: check_armadillo.asm</p>
<p>- added Armadillo version range detection for v2.xx &#8211; v3.xx,</p>
<p>v4.00 &#8211; v4.42, v4.44 &#8211; v4.62, v4.64 &#8211; v4.66, v5.00 &#8211; v5.02 in  case the specific</p>
<p>version can´t be detected</p>
<p>- added more detailed version detection for v2.00 &#8211; v2.61, v3.00 &#8211;  v3.10, v3.20,</p>
<p>v3.30 &#8211; v3.40, v3.50 &#8211; v3.61, v3.70, v3.75, v3.76, v3.78, v4.00  &#8211; v4.05,</p>
<p>v4.10 &#8211; v4.20, v4.30, v4.40, v4.40a, v4.40a Beta 2, v4.42,  v4.44a Beta 1, v4.44a</p>
<p>- new: check_dotnetguard.asm &#8211; added DotNet Guard detection</p>
<p>- new: check_encryptpe.asm &#8211; added Encrypt PE v2.2006.10.1 detection</p>
<p>- new: check_kbys.asm &#8211; added KByS Packer v0.28 Beta detection</p>
<p>- new: check_orien.asm &#8211; added ORiEN v2.12 detection</p>
<p>- new: check_epexepack.asm &#8211; added EP (EXE Pack) detection</p>
<p>- new: check_simplepack.asm &#8211; added SimplePack v1.11 detection</p>
<p>- new: installer_installshield &#8211; added InstallShield v11 detection</p>
<p>- update: added in support for windows version dependant programs in the  &#8216;misc tools&#8217;</p>
<p>- update: system information window in &#8216;misc tools&#8217; reportedly opens another  window in vista should now be fixed..</p>
<p>- update: button 7 on the misc tools (system info) should now show the right  window in vista</p>
<p>(problem was caused by vista changing lots of things.. like  parameters&#8230;)</p>
<p>- update: add new button in misc tools now disabled if the os is vista (vista  doesnt use this system anymore)</p>
<p>- update: sfv file also has .sfv appended to its name if user did not enter  .sfv when selecting the save filename</p>
<p>- update: added in&#8230;</p>
<p>add/remove programs</p>
<p>add new programs</p>
<p>add/remove windows components</p>
<p>set program access and defaults</p>
<p>windows security center (xp or higher)</p>
<p>control panel</p>
<p>Char(acter) Map</p>
<p>ClipBook</p>
<p>Help and Support Center</p>
<p>DirectX Diagnostics</p>
<p>Microsoft Paint</p>
<p>Notepad</p>
<p>Write</p>
<p>&#8230;to the &#8216;misc. tools&#8217; window</p>
<p>- update: check_securom.asm &#8211; code updated to handle fucked files, and also  report old (v4)</p>
<p>securom versions etc.. (v4.68.00 exe wasnt detected before)</p>
<p>- update: dongle_wibu.asm &#8211; improved generic detection</p>
<p>- bugfix: queue count in tooltip was wrong, always truncated to the 64th  character</p>
<p>- bugfix: &#8216;rare&#8217; screen flicker is now possibly fixed</p>
<p>- bugfix: fixed a potential bug in the shellexecute in the misc tools system  for the system</p>
<p>components, the paths weren&#8217;t really qualified, leading to to a  50/50 on the</p>
<p>launching for add/remove programs etc..</p>
<p>- bugfix: potential memory leak in the browse for folder code</p>
<p>- bugfix: check_armadillo.asm &#8211; fixed bug in generic detection</p>
<p>- bugfix: check_molebox.asm &#8211; fixed non detection due a bug</p>
<p>- bugfix: check_protectdisc.asm &#8211; fixed crashbug for older v6.x to v7.1</p>
<p><span style="font-weight: 700; text-decoration: underline;">2007.08.12</span></p>
<p>Note to WinXP [or higher] OS system users:</p>
<p>PID now does include Themes</p>
<p>- goto Configuration window</p>
<p>- enable &#8216;Allow Themes&#8217; -&gt; click &#8216;Apply&#8217;</p>
<p>- new: Protection ID is now signed with a certificate</p>
<p>- new: xp theme manifest added to resources</p>
<p>- new: theming enable/disable option now in settings</p>
<p>- new: core_code\themes.asm &#8211; themes are fully operational <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> </p>
<p>- new: right click context menu for folders and drives implimented in  registry stuff and core</p>
<p>(note: drive scan is file mode &#8211; NOT sector mode)</p>
<p>sector stuff is outdated and probably not used.. maybe we should  drop it?</p>
<p>- new: check_armadillo.asm &#8211; added Armadillo v2.xx &#8211; v3.xx and v4.xx &#8211; v5.xx  generic detection</p>
<p>and lots of specific version (still not all&#8230;)</p>
<p>- new: check_encryptpe.asm &#8211; added Encrypt PE v2.2007.4.11 detection</p>
<p>- new: check_intenium.asm &#8211; added INTENIUM Try &amp; Buy detection</p>
<p>- new: check_mkfpack.asm &#8211; added mkfPack detection</p>
<p>- new: check_sixxpack.asm &#8211; added Sixxpack .Net Compressor detetion</p>
<p>- new: check_softwarecompress.asm &#8211; added Software Compress v1.4  detection</p>
<p>- new: check_yzpack.asm &#8211; added YZPack v1.1 &amp; v1.2 detection</p>
<p>- update: version is now 0.5.45.07 BETA RC1 NON-DISTRO</p>
<p>- update: winspy portion done, its only reportative at the minute</p>
<p>- update: folderwatch &#8211; selected items can now be removed by pressing</p>
<p>the delete key (DEL) on the keyboard (suggested by  Blazkowicz)</p>
<p>- update: task manager now has sortable button like column selectors</p>
<p>(feature isn´t done yet, atm its just proof of whats  planned)</p>
<p>- update: protection report list now has more menu items&#8230; all  implimented</p>
<p>- open location in explorer</p>
<p>- clear all</p>
<p>- clear selected</p>
<p>(items can also be removed now by pressing the DEL key)</p>
<p>- update: check_activemark.asm &#8211; updated detections of newer ActiveMARK  wrapped exes</p>
<p>- update: check_armadillo.asdm &#8211; recoded, added one more generic Armadillo  check</p>
<p>- update: license_haspsl.asm &#8211; optimized HASP SL detection</p>
<p>- bugfix: nfoview code, drag and drop of multiple files resulted in a crash  (found by Muji-Fightr)</p>
<p>- bugfix: nfo viewer was black on black ;p somehow&#8230;.was a dirty buffer  (reported by muji-fghtr)</p>
<p>- bugfix: plugins should now unload properly if themes toggling is done</p>
<p>- bugfix: check_asdpack.asm &#8211; fixed possible crashbug</p>
<p>- bugfix: check_execryptor2.asm &#8211; fixed possible crashbug</p>
<p>- bugfix: check_gamehouse.asm &#8211; fixed crashbug when scanning MZ0oPE v1.0.6b  protected files</p>
<p>- bugfix: check_molebox.asm &#8211; fixed possible crashbug</p>
<p>- bugfix: check_solidshield.asm &#8211; crash when scanning DLLs with Entrypoint  00h (reported by Blazkowicz)</p>
<p>- bugfix: check_softwarecompress.asm &#8211; fixed possible crashbug</p>
<p>- bugfix: check_vob.asm &#8211; fixed possible crashbug</p>
<p>- bugfix: installer_inno.asm &#8211; fixed possible crashbug</p>
<p><span style="font-weight: 700; text-decoration: underline;">2007.08.03</span></p>
<p>- new: system info portion heavily updated, reports a lot more useful info  <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> </p>
<p>- new: task manager driver view now totally operational</p>
<p>- new: configuration &#8211; Scan during queuing (on demand)</p>
<p>- new: seh window now has minidump capabilities <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':)' class='wp-smiley' /> </p>
<p>- may only work in xp, depends on dbghelp.dll being present and  having the right export</p>
<p>- seh window output bug also now fixed (wsprintf limitation)</p>
<p>- new: now we report the amount of scan modules in the about box</p>
<p>- new: check_abccryptor.asm &#8211; added ABC Crypt v1.0 detection</p>
<p>- new: check_andpakk2.asm &#8211; added ANDpakk2 detection</p>
<p>- new: check_asdpack.asm &#8211; added ASDPack v2 detection</p>
<p>- new: check_beroexepacker.asm &#8211; added BeRoEXEPacker v1.00 detection</p>
<p>- new: check_berio.asm &#8211; added Berio v1.0 detection</p>
<p>- new: check_copyminder.asm &#8211; added CopyMinder detection</p>
<p>- new: check_dalcrypt.asm &#8211; added DalKrypt v1.0 detection</p>
<p>- new: check_dotnetprotector.asm &#8211; added dotNet Protector v4 &amp; v5  detection</p>
<p>- new: check_dotnetreactor.asm &#8211; added dotNet Reactor v2.0 &#8211; v2.9 &amp; v3.0  &#8211; v3.2 detection</p>
<p>- new: check_enigmaprotector.asm &#8211; added Enigma Protector v1.14 &amp; v1.16  detection</p>
<p>- new: check_exeshield.asm &#8211; added ExeShield v3.7 detection</p>
<p>- new: check_jdpack.asm &#8211; added JD Pack v2.00 detection</p>
<p><span id="_marker"> </span><br />
<h3>相关文章</h3>
<ul class="related_posts">
<li><a href="http://www.h4ck.org.cn/2010/06/restorator-2009-4-0-build-1807-cracked/" title="Restorator 2009 4.0 build 1807 Cracked" rel="bookmark inlinks">Restorator 2009 4.0 build 1807 Cracked</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/12/dup-2-21-beta-9/" title="dUP 2.21 BETA  9" rel="bookmark inlinks">dUP 2.21 BETA  9</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/05/cmpdisasm-v0-71/" title="CmpDisasm v0.71" rel="bookmark inlinks">CmpDisasm v0.71</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/12/uppp-v0-6-retail-patch-creater-by-ufo-pu55y/" title="uPPP.v0.6.Retail Patch Creater by UFO-pu55y" rel="bookmark inlinks">uPPP.v0.6.Retail Patch Creater by UFO-pu55y</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/04/imp64/" title="imp64" rel="bookmark inlinks">imp64</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/01/immunity-debugger-1-80/" title="Immunity Debugger 1.80" rel="bookmark inlinks">Immunity Debugger 1.80</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/03/simple-assembly-explorer-1-13-2/" title="Simple Assembly Explorer 1.13.2" rel="bookmark inlinks">Simple Assembly Explorer 1.13.2</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/12/total-commander-8-0-public-beta-10-x64-crack-log/" title="Total Commander 8.0 public beta 10 (x64) Crack Log" rel="bookmark inlinks">Total Commander 8.0 public beta 10 (x64) Crack Log</a><span class="count">( 0 )</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.h4ck.org.cn/2010/01/protection-id-v0-6-3-5-public-december-2009/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>P32dasm.v2.6 Cracked</title>
		<link>http://www.h4ck.org.cn/2009/12/p32dasm-v2-6-cracked/</link>
		<comments>http://www.h4ck.org.cn/2009/12/p32dasm-v2-6-cracked/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 02:07:04 +0000</pubDate>
		<dc:creator>obaby</dc:creator>
				<category><![CDATA[软件共享『SoftWare』]]></category>
		<category><![CDATA[PE]]></category>
		<category><![CDATA[PETools]]></category>

		<guid isPermaLink="false">http://www.h4ck.org.cn/?p=969</guid>
		<description><![CDATA[        -+-  P32Dasm 2.6  *  Copyright (C)  DARKER (SCF) 2oo9  -+-
        ==========================================================

P32Dasm is a VB PCode + Native code Decompiler. It can generate String, Numbers,
Objects, Import and Export function listing. There is also PCode Jump calculator.
You can set shortcut to your favorite hex editor for fast patching. I personally
prefer Hiew.

How to use it
=============
Load file by pressing F1, from command line or Drag and Drop.

Tips &#038; Tricks
=============
- You can edit output by pressing  button "Edit".  Now you can color interesting
  sections, write yours comments, etc ...
- For fast moving you can use Position manager. Set cursor to some position click
  in Position manager to  "Add" button and enter your description.  Any time you
  need fast jump to your location just doubleclick to your list.
- For VB Native code executables are generated only  MSVBVM,  External calls and
  string references. Usefull for setting BPX, you don't need search  in debugger
  where start some Command Button event etc ...
- On BIG apps I don't recommend use option "Use syntax highlight color" - it's 
  slow, use normal mode
- If you still need syntax highlighting you can use included Syntax highlighting
  for UltraEdit. Just add it to the end of original "wordfile.txt".
- By some problems you can decompile only some parts with "Decompile from offset"
  function. Experienced users only! or read below
- Procedure window has two modes:
  1) "Full Decompiling" ON - by DblClicking on procedure you can search it
  2) "Full Decompiling" OFF - by DblClicking you can manually decompile selected
  procedure. (you don't need decompile whole file, you can explore it on the fly,
  fastest decompile solution!)
- In Object list you can see Object Type displayed with appropriate Icon
- At the beginning of  decompiled output you can see sometime original procedure
  names - this helps you identify missing names for some procedures
- vbCRLF, vbCR, vbLF, vbNullChar, vbTab - are VB constants not strings
- You can easy search for Jumps  by clicking  on Offset and selecting from right
  MouseClick Option "Search:" and you can continue search with F3 key
- You can change Label of autogenerated Position with  "Label" button or current
  Position in main Screen with "Position" Button. There is possibility also save
  your own Position file.
- You can easy jump to specified Offset by clicking on Offset and selecting from
  right MouseClick Option "Internal HexEditor Offset:". Immediately start editor
  and you are on your offset so you can start patching.
- If you want use also HIEW for direct jump, then in Options set in path %1 e.g.
  "your_path\hiew.exe %1"  and in output click inside some offset and click run.
  P32Dasm has algo to detect if it's offset  or memory address.  Address must be
  in format XXXXXXXX:  (check if your HIEW version support jump from commandline
  /O param)
- You can generate  .map files which you can import to  DataRescue IDA  (LoadMap
  plugin) or to Olly Debugger (MapConv plugin).

Shortcut keys:
   F1  - Open exe to decompile
   F2  - Save generated output to file
   F3  - Search next
   F4  - Internal HexEditor start
   F5  - Position Manager
   F6  - External editor (Hiew)
   F8  - String References
   F9  - Number References
   F12 - Exit
   Ctrl + C - Copy to clipboard
   Ctrl + F - New search

Supported OCX and DLL:
======================
MSCOMCTL.OCX, RICHTX32.OCX, MSFLXGRD.OCX, MSCOMCT2.OCX, VBOLOCK.OCX, ACTBAR3.OCX
MSINET.OCX, MSWINSCK.OCX,  TABCTL32.OCX, COMCT332.OCX, COMCT32.OCX, JSBBAR16.OCX
COMCT232.OCX,  VSFLEX7L.OCX, THREED32.OCX,  THREED20.OCX, FM20.DLL, GRIDEX20.OCX
JSBBAR16.OCX,  MSDATLST.OCX, TOC.OCX,  SSSPLT30.OCX,  DBLIST32.OCX, DBGRID32.OCX
MSDATGRD.OCX, MSCOMM32.OCX, MSCHRT20.OCX, MSMASK32.OCX


Known limitations, Bugs
=======================
- Searching strings with regional characters can cause that no string is found!
  (this is M$ RichTextBox bug or some Unicode problems ...)
- In native code are sometimes displayed "???????????" strings, this can contain
  usefull strings, just ignore it if isn't interesting
- At the end of procedure (PCode) after ExitProcHresult you  get sometime random
  opcodes that are not valid - just ignore it. You can suppress  them by setting
  "Check End Bytes" to higher value, but you can get after some errors "Not found
  jump destination" then go down with this value :-)
- In "Decompile from offset" (PCode) mode are Strings,  Calls and Properties not
  displayed in case that you do not fit to the correct range.
- If P32Dasm speak your language it doesn't mean that it also fully support your
  language (displaying Objects from Executable ...)
- Always only one instance of internal HexEditor can be running in memory
- If you want reset settings to default values just delete in registry this key:
  HKEY_CURRENT_USER\Software\VB and VBA Program Settings\P32Dasm\Settings

System requirements
===================
For run you need Visual Basic 6 runtime MSVBVM60.DLL, MSCOMCTL.OCX, COMDLG32.OCX
and RICHTX32.OCX.  If not then you can download it from  web. (On Windows XP you
should already have it)

Credits
=======
Thank you:
  Sarge, VBgamer45 - for your help
  Eugegne Suslikov - for Hiew
  Hakeem, suddenLy, killlcn, llAmElliK, GPcH, Thomas, suCRACK - Translators
  Yoda - for 16Edit

Greetings: 
  JosephCo - You old man, remember me ? (This is first VB PCode Guru !)
  All known people from Exetools, -=[t4C]=- and Woodmann forum
  and all slovak crackers and hackers ...

Visit  http://progress-tools.110mb.com  for more information or updates.  If you
have some ideas, comments, improvements or you find some bug you can  mail to me
at  darker[at]inmail[dot]sk

History
=======
2.6 - [24.12.2009] - Christmas Release
+ Added procedure names identification
+ More objects recognition
+ Added reading more details (Enumerators, Constants, Events and Properties)
+ Added new Events icon for better resolution
+ Internal code tidy up and changes for displaying better debug info
+ More procedures details identified on some strange type apps (NCode)
- Removed displaying of procedure names list in output (moved to real names)
* fixed working of MRU files
* Fixed bug: missing end address in one procedure NCode object
* Fixed some GUI problems when app use visual styles

2.5 - [14.06.2009] - Slovakia Release
* Changed app font for better language support
* Fixed storing wrong window possition
* Fixed displaying other language characters (tested on Russian, check screen)
* Word over cursor support other languages (take word divided by spaces)
 (Beware! Due some RichTextBox bug or unicode problems some strings with special
  REGIONAL CHARACTERS will be not found in main window!)
* Fixed Word over cursor string length extraction for other languages
* Fixed crash on some VB5 apps
+ Possibility select and apply font charset for better output (language support)
+ Search in tree
+ Added support for Events of DBLIST32.OCX, DBGRID32.OCX, MSDATGRD.OCX,
  MSCOMM32.OCX, MSCHRT20.OCX, MSMASK32.OCX

2.4 - [03.11.2008] - Alex Release
+ Native code fast preview (display MSVBVM calls + string references)
+ Added new class types
+ Added designer identificaton
+ Posibility direct jump to offset in HIEW
+ Improoved Debug mode
+ Filter out not supported "In DB doesn't exist ..."
+ Added Possibility disable creation of Position Files
+ Added support for Events of  JSBBAR16.OCX,  MSDATLST.OCX,  GRIDEX20.OCX  and
  ACTBAR3.OCX
+ Faster decompiling
* Default syntax coloring Off (slow)
* New search shortcut changed from F7 to Ctrl + F
* Fixed External API scan
* Fixed crash when is missing 16Edit.dll
* Better Unicode String handling
- Removed "Output to file" settings

2.3 - [24.05.2006] - "Terezka" Release
* Fixed "On Top" displaying in Procedure/Object window
* Fixed "Edit Output" refresh on loading new file
+ Added Spanish translation

2.2 - [04.01.2006] - Birthday Release
* Fixed crash on some apps
* Fixed crash on exit by unsupported apps
* Fixed crash on strange SectionHeaders
* Fixed crash on some ImportTables
* Fixed VB5/VB6 recognition by unpacked apps
+ Added support to some obfuscated apps
+ Added some class types

2.1 - [03.11.2005] - "13th week" Release
+ Added Internal Hex Editor
+ Added Export events to .map Files (for IDA, Olly ...)
* Fixed default filename by saving Project

2.0 - [16.10.2005] - "Born to be Free" Release
+ Added support for Events of VSFLEX7L.OCX  THREED32.OCX  THREED20.OCX  and
    SSSPLT30.OCX
+ Added save last Dir
+ Added Support for rebuilded Apps
+ Small Speed Up
+ Added additional info by Timers
+ Added Russian and German translation
+ In Objects window by Copy function show also object type
* Fixed bug "On Top" in Position Screen

1.9 - [07.09.2005] - Engaged Release
+ Now you can tanslate P32Dasm into other languages
+ Added in List of Strings new Menu for fast view of other Objects
+ Added Posibility of saving Project as pure Text
* Fixed recognition of some OCX and their Events in VB5
* Fixed Position Manager problems by "Output to File" Setting
* Fixed rare bug with Procedure Names
* Fixed some screen Issues by switching between Windows
+ Added support for Events of FM20.DLL

1.8 - [19.08.2005] - "Make Peace No War!" Release
+ Really incredible  Speed Up by decompiling  with  "No Colors" and "Output
  to File" Option
+ Added identifing of some  VB Constant (vbCRLF,  vbCR,  vbLF,  vbNullChar,
  vbTab,  vbBack)
+ Added Search String under Cursor
+ Added to Position Manager: Save, Load, Update Label and Position

1.7 - [31.07.2005] - "Where is the fuc*ing Sun ?" Release
* Fixed some OCX Events recognition
+ More Procedures are now recognized (VB5)
+ Added listing of Procedures (only if exist)
+ Added Refresh button to Control/Procedure window
+ Added support for Events:
    TOC.OCX     : Toc

1.6 - [22.07.2005] - Summer Release
* Fixed Control recognition
+ Added support for Events:
    COMCT32.OCX : TabStrip, Toolbar, StatusBar, ProgressBar, TreeView,
                  ListView, Slider
    COMCT332.OCX: CoolBar
    COMCT232.OCX: Animation, UpDown

1.5 - [29.05.2005] - Sunny Release
+ Added some support for unpacked Apps
* Improved Error handling
+ Display offsets for NCode events (Usefull for setting BPX :-)

1.4b - [23.05.2005] - "Love is in the Air" Release
+ Change Font Option
* Fixed decompiling of dummy Procedures (P32Dasm stop responding)
+ Added support for Events:
    MSINET.OCX  : Inet
    MSWINSCK.OCX: Winsock
    TABCTL32.OCX: SSTab
* Fixed Crash on non-english Windows

1.3 - [12.05.2005] - Ice Hockey Release (Canada - Slovakia 5:4, Damn! :-)
+ Added displaying of Object by unknown Events
+ Added type Icons for Controls (You can see now Type of Control)
+ Added support for Events:
    MSCOMCT2.OCX: Animation, UpDown, MonthView, DTPicker, FlatScrollBar
    VBOLOCK.OCX : LockIt
+ Added "Allways on Top"
* Fixed bug on some rare Import Tables

1.2 - [04.05.2005] - VB5 Release
+ Added VB5 support
* Fixed 2 opcodes
* Fixed one rare bug on some applications
+ Show Options screen in taskbar
* Fixed "Check file" function in case that file doesn't exist
* Fixed working on chinese system (Thanx SunYJ for testing)

1.1 - [19.04.2005] - Dll Release
+ Added VB6 Dll and OCX support
* Small speed optimization
+ Added support for Events:
    MSFLXGRD.OCX: MSFlexGrid

1.0 - [14.04.2005] - Green Release
* Improved Objects listing
+ Added Procedure listing with two modes:
  1) Find selected procedure on DblClick
  2) Decompile selected procedure on DblClick (you don't need decompile 
     whole file, you can explore it on the fly)
+ Added Syntax highlighting for PCode to UltraEdit

0.9 - [09.04.2005] - Soya Release
* Fixed apps with no controls
+ Improved Import, Export Dll recognition
+ Identifing SubMain procedure
+ Added Partial decompilation (Start Step - End Step)
* Fixed some opcodes
+ Error handling

0.8 - [05.04.2005] - Ladybird Release
* BIG! Speed Up by processing large apps
+ Added MRU files
+ Moved storing settings from ini to registry
* Fixed some opcodes
+ Detection VB5 apps (but not supported yet)

0.7 - [27.03.2005] - Easter Release
+ Added Properties recognition
+ Added recognition of 24 new objects
* Better procedure ending
* Fixed Control recognition
+ Unknown counter added
* Fixed some opcodes
+ Added Buttons separators, Removed customizing
+ Jumps Speed Up
* Fixed Jumps recognitions
+ Added Syntax Coloring OFF

0.6 - [17.03.2005] - Optimization Release
* Fixed OCX recognition
+ Add Options window
+ Add OCX Library name to Object window
+ Add Menu popup on right click mouse
* Better handling end of procedure (Check End Bytes Option)
+ Compacting DB, from 64kb to 33kb by same functionality :-)
+ Optimized code for better speed

0.5 - [13.03.2005] - OCX Release
+ Display Caption to objects:  Text,  Label,  Form, CheckBox, OptionButton,
    Frame, Menu
+ Stop button (Break process)
* Fixed some opcodes
+ Added support for Events:
    MSCOMCTL.OCX Controls: ListView, Toolbar, StatusBar, ImageCombo,
                           ProgressBar, TreeView, TabStrip, Slider
    RICHTX32.OCX: RichTextBox
* Fixed menu decompiling
]]></description>
			<content:encoded><![CDATA[<p>-+-  P32Dasm 2.6  *  Copyright (C)  DARKER (SCF) 2oo9  -+-<br />
==========================================================</p>
<p>P32Dasm is a VB PCode + Native code Decompiler. It can generate String, Numbers,<br />
Objects, Import and Export function listing. There is also PCode Jump calculator.<br />
You can set shortcut to your favorite hex editor for fast patching. I personally<br />
prefer Hiew.</p>
<p>How to use it<br />
=============<br />
Load file by pressing F1, from command line or Drag and Drop.</p>
<p>Tips &amp; Tricks<br />
=============<br />
- You can edit output by pressing  button “Edit”.  Now you can color interesting<br />
sections, write yours comments, etc &#8230;<br />
- For fast moving you can use Position manager. Set cursor to some position click<br />
in Position manager to  “Add” button and enter your description.  Any time you<br />
need fast jump to your location just doubleclick to your list.<br />
- For VB Native code executables are generated only  MSVBVM,  External calls and<br />
string references. Usefull for setting BPX, you don&#8217;t need search  in debugger<br />
where start some Command Button event etc &#8230;<br />
- On BIG apps I don&#8217;t recommend use option “Use syntax highlight color” &#8211; it&#8217;s<br />
slow, use normal mode<br />
- If you still need syntax highlighting you can use included Syntax highlighting<br />
for UltraEdit. Just add it to the end of original “wordfile.txt”.<br />
- By some problems you can decompile only some parts with “Decompile from offset”<br />
function. Experienced users only! or read below</p>
<p>Downloadlink：<a href="http://www.cracklab.ru/_dl2/centner/decompilers/p32dasm.v2.6.zip">http://www.cracklab.ru/_dl2/centner/decompilers/p32dasm.v2.6.zip</a><br />
<span id="more-969"></span></p>
<p><a rel="lightbox" href="http://www.h4ck.org.cn/wp-content/uploads/2009/12/pdasm.png" title="pdasm"><img title="pdasm" src="http://www.h4ck.org.cn/wp-content/uploads/2009/12/pdasm.png" alt="pdasm" width="515" height="439" /></a></p>
<p>- Procedure window has two modes:<br />
1) “Full Decompiling” ON &#8211; by DblClicking on procedure you can search it<br />
2) “Full Decompiling” OFF &#8211; by DblClicking you can manually decompile selected<br />
procedure. (you don&#8217;t need decompile whole file, you can explore it on the fly,<br />
fastest decompile solution!)<br />
- In Object list you can see Object Type displayed with appropriate Icon<br />
- At the beginning of  decompiled output you can see sometime original procedure<br />
names &#8211; this helps you identify missing names for some procedures<br />
- vbCRLF, vbCR, vbLF, vbNullChar, vbTab &#8211; are VB constants not strings<br />
- You can easy search for Jumps  by clicking  on Offset and selecting from right<br />
MouseClick Option “Search:” and you can continue search with F3 key<br />
- You can change Label of autogenerated Position with  “Label” button or current<br />
Position in main Screen with “Position” Button. There is possibility also save<br />
your own Position file.<br />
- You can easy jump to specified Offset by clicking on Offset and selecting from<br />
right MouseClick Option “Internal HexEditor Offset:”. Immediately start editor<br />
and you are on your offset so you can start patching.<br />
- If you want use also HIEW for direct jump, then in Options set in path %1 e.g.<br />
“your_path\hiew.exe %1&#8243;  and in output click inside some offset and click run.<br />
P32Dasm has algo to detect if it&#8217;s offset  or memory address.  Address must be<br />
in format XXXXXXXX:  (check if your HIEW version support jump from commandline<br />
/O param)<br />
- You can generate  .map files which you can import to  DataRescue IDA  (LoadMap<br />
plugin) or to Olly Debugger (MapConv plugin).</p>
<p>Shortcut keys:<br />
F1  &#8211; Open exe to decompile<br />
F2  &#8211; Save generated output to file<br />
F3  &#8211; Search next<br />
F4  &#8211; Internal HexEditor start<br />
F5  &#8211; Position Manager<br />
F6  &#8211; External editor (Hiew)<br />
F8  &#8211; String References<br />
F9  &#8211; Number References<br />
F12 &#8211; Exit<br />
Ctrl + C &#8211; Copy to clipboard<br />
Ctrl + F &#8211; New search</p>
<p>Supported OCX and DLL:<br />
======================<br />
MSCOMCTL.OCX, RICHTX32.OCX, MSFLXGRD.OCX, MSCOMCT2.OCX, VBOLOCK.OCX, ACTBAR3.OCX<br />
MSINET.OCX, MSWINSCK.OCX,  TABCTL32.OCX, COMCT332.OCX, COMCT32.OCX, JSBBAR16.OCX<br />
COMCT232.OCX,  VSFLEX7L.OCX, THREED32.OCX,  THREED20.OCX, FM20.DLL, GRIDEX20.OCX<br />
JSBBAR16.OCX,  MSDATLST.OCX, TOC.OCX,  SSSPLT30.OCX,  DBLIST32.OCX, DBGRID32.OCX<br />
MSDATGRD.OCX, MSCOMM32.OCX, MSCHRT20.OCX, MSMASK32.OCX</p>
<p>Known limitations, Bugs<br />
=======================<br />
- Searching strings with regional characters can cause that no string is found!<br />
(this is M$ RichTextBox bug or some Unicode problems &#8230;)<br />
- In native code are sometimes displayed “???????????” strings, this can contain<br />
usefull strings, just ignore it if isn&#8217;t interesting<br />
- At the end of procedure (PCode) after ExitProcHresult you  get sometime random<br />
opcodes that are not valid &#8211; just ignore it. You can suppress  them by setting<br />
“Check End Bytes” to higher value, but you can get after some errors “Not found<br />
jump destination” then go down with this value <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':-)' class='wp-smiley' /> <br />
- In “Decompile from offset” (PCode) mode are Strings,  Calls and Properties not<br />
displayed in case that you do not fit to the correct range.<br />
- If P32Dasm speak your language it doesn&#8217;t mean that it also fully support your<br />
language (displaying Objects from Executable &#8230;)<br />
- Always only one instance of internal HexEditor can be running in memory<br />
- If you want reset settings to default values just delete in registry this key:<br />
HKEY_CURRENT_USER\Software\VB and VBA Program Settings\P32Dasm\Settings</p>
<p>System requirements<br />
===================<br />
For run you need Visual Basic 6 runtime MSVBVM60.DLL, MSCOMCTL.OCX, COMDLG32.OCX<br />
and RICHTX32.OCX.  If not then you can download it from  web. (On Windows XP you<br />
should already have it)</p>
<p>Credits<br />
=======<br />
Thank you:<br />
Sarge, VBgamer45 &#8211; for your help<br />
Eugegne Suslikov &#8211; for Hiew<br />
Hakeem, suddenLy, killlcn, llAmElliK, GPcH, Thomas, suCRACK &#8211; Translators<br />
Yoda &#8211; for 16Edit</p>
<p>Greetings:<br />
JosephCo &#8211; You old man, remember me ? (This is first VB PCode Guru !)<br />
All known people from Exetools, -=[t4C]=- and Woodmann forum<br />
and all slovak crackers and hackers &#8230;</p>
<p>Visit  http://progress-tools.110mb.com  for more information or updates.  If you<br />
have some ideas, comments, improvements or you find some bug you can  mail to me<br />
at  darker[at]inmail[dot]sk</p>
<p>History<br />
=======<br />
2.6 &#8211; [24.12.2009] &#8211; Christmas Release<br />
+ Added procedure names identification<br />
+ More objects recognition<br />
+ Added reading more details (Enumerators, Constants, Events and Properties)<br />
+ Added new Events icon for better resolution<br />
+ Internal code tidy up and changes for displaying better debug info<br />
+ More procedures details identified on some strange type apps (NCode)<br />
- Removed displaying of procedure names list in output (moved to real names)<br />
* fixed working of MRU files<br />
* Fixed bug: missing end address in one procedure NCode object<br />
* Fixed some GUI problems when app use visual styles</p>
<p>2.5 &#8211; [14.06.2009] &#8211; Slovakia Release<br />
* Changed app font for better language support<br />
* Fixed storing wrong window possition<br />
* Fixed displaying other language characters (tested on Russian, check screen)<br />
* Word over cursor support other languages (take word divided by spaces)<br />
(Beware! Due some RichTextBox bug or unicode problems some strings with special<br />
REGIONAL CHARACTERS will be not found in main window!)<br />
* Fixed Word over cursor string length extraction for other languages<br />
* Fixed crash on some VB5 apps<br />
+ Possibility select and apply font charset for better output (language support)<br />
+ Search in tree<br />
+ Added support for Events of DBLIST32.OCX, DBGRID32.OCX, MSDATGRD.OCX,<br />
MSCOMM32.OCX, MSCHRT20.OCX, MSMASK32.OCX</p>
<p>2.4 &#8211; [03.11.2008] &#8211; Alex Release<br />
+ Native code fast preview (display MSVBVM calls + string references)<br />
+ Added new class types<br />
+ Added designer identificaton<br />
+ Posibility direct jump to offset in HIEW<br />
+ Improoved Debug mode<br />
+ Filter out not supported “In DB doesn&#8217;t exist &#8230;”<br />
+ Added Possibility disable creation of Position Files<br />
+ Added support for Events of  JSBBAR16.OCX,  MSDATLST.OCX,  GRIDEX20.OCX  and<br />
ACTBAR3.OCX<br />
+ Faster decompiling<br />
* Default syntax coloring Off (slow)<br />
* New search shortcut changed from F7 to Ctrl + F<br />
* Fixed External API scan<br />
* Fixed crash when is missing 16Edit.dll<br />
* Better Unicode String handling<br />
- Removed “Output to file” settings</p>
<p>2.3 &#8211; [24.05.2006] &#8211; “Terezka” Release<br />
* Fixed “On Top” displaying in Procedure/Object window<br />
* Fixed “Edit Output” refresh on loading new file<br />
+ Added Spanish translation</p>
<p>2.2 &#8211; [04.01.2006] &#8211; Birthday Release<br />
* Fixed crash on some apps<br />
* Fixed crash on exit by unsupported apps<br />
* Fixed crash on strange SectionHeaders<br />
* Fixed crash on some ImportTables<br />
* Fixed VB5/VB6 recognition by unpacked apps<br />
+ Added support to some obfuscated apps<br />
+ Added some class types</p>
<p>2.1 &#8211; [03.11.2005] &#8211; “13th week” Release<br />
+ Added Internal Hex Editor<br />
+ Added Export events to .map Files (for IDA, Olly &#8230;)<br />
* Fixed default filename by saving Project</p>
<p>2.0 &#8211; [16.10.2005] &#8211; “Born to be Free” Release<br />
+ Added support for Events of VSFLEX7L.OCX  THREED32.OCX  THREED20.OCX  and<br />
SSSPLT30.OCX<br />
+ Added save last Dir<br />
+ Added Support for rebuilded Apps<br />
+ Small Speed Up<br />
+ Added additional info by Timers<br />
+ Added Russian and German translation<br />
+ In Objects window by Copy function show also object type<br />
* Fixed bug “On Top” in Position Screen</p>
<p>1.9 &#8211; [07.09.2005] &#8211; Engaged Release<br />
+ Now you can tanslate P32Dasm into other languages<br />
+ Added in List of Strings new Menu for fast view of other Objects<br />
+ Added Posibility of saving Project as pure Text<br />
* Fixed recognition of some OCX and their Events in VB5<br />
* Fixed Position Manager problems by “Output to File” Setting<br />
* Fixed rare bug with Procedure Names<br />
* Fixed some screen Issues by switching between Windows<br />
+ Added support for Events of FM20.DLL</p>
<p>1.8 &#8211; [19.08.2005] &#8211; “Make Peace No War!” Release<br />
+ Really incredible  Speed Up by decompiling  with  “No Colors” and “Output<br />
to File” Option<br />
+ Added identifing of some  VB Constant (vbCRLF,  vbCR,  vbLF,  vbNullChar,<br />
vbTab,  vbBack)<br />
+ Added Search String under Cursor<br />
+ Added to Position Manager: Save, Load, Update Label and Position</p>
<p>1.7 &#8211; [31.07.2005] &#8211; “Where is the fuc*ing Sun ?” Release<br />
* Fixed some OCX Events recognition<br />
+ More Procedures are now recognized (VB5)<br />
+ Added listing of Procedures (only if exist)<br />
+ Added Refresh button to Control/Procedure window<br />
+ Added support for Events:<br />
TOC.OCX     : Toc</p>
<p>1.6 &#8211; [22.07.2005] &#8211; Summer Release<br />
* Fixed Control recognition<br />
+ Added support for Events:<br />
COMCT32.OCX : TabStrip, Toolbar, StatusBar, ProgressBar, TreeView,<br />
ListView, Slider<br />
COMCT332.OCX: CoolBar<br />
COMCT232.OCX: Animation, UpDown</p>
<p>1.5 &#8211; [29.05.2005] &#8211; Sunny Release<br />
+ Added some support for unpacked Apps<br />
* Improved Error handling<br />
+ Display offsets for NCode events (Usefull for setting BPX <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':-)' class='wp-smiley' /> </p>
<p>1.4b &#8211; [23.05.2005] &#8211; “Love is in the Air” Release<br />
+ Change Font Option<br />
* Fixed decompiling of dummy Procedures (P32Dasm stop responding)<br />
+ Added support for Events:<br />
MSINET.OCX  : Inet<br />
MSWINSCK.OCX: Winsock<br />
TABCTL32.OCX: SSTab<br />
* Fixed Crash on non-english Windows</p>
<p>1.3 &#8211; [12.05.2005] &#8211; Ice Hockey Release (Canada &#8211; Slovakia 5:4, Damn! <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':-)' class='wp-smiley' /> <br />
+ Added displaying of Object by unknown Events<br />
+ Added type Icons for Controls (You can see now Type of Control)<br />
+ Added support for Events:<br />
MSCOMCT2.OCX: Animation, UpDown, MonthView, DTPicker, FlatScrollBar<br />
VBOLOCK.OCX : LockIt<br />
+ Added “Allways on Top”<br />
* Fixed bug on some rare Import Tables</p>
<p>1.2 &#8211; [04.05.2005] &#8211; VB5 Release<br />
+ Added VB5 support<br />
* Fixed 2 opcodes<br />
* Fixed one rare bug on some applications<br />
+ Show Options screen in taskbar<br />
* Fixed “Check file” function in case that file doesn&#8217;t exist<br />
* Fixed working on chinese system (Thanx SunYJ for testing)</p>
<p>1.1 &#8211; [19.04.2005] &#8211; Dll Release<br />
+ Added VB6 Dll and OCX support<br />
* Small speed optimization<br />
+ Added support for Events:<br />
MSFLXGRD.OCX: MSFlexGrid</p>
<p>1.0 &#8211; [14.04.2005] &#8211; Green Release<br />
* Improved Objects listing<br />
+ Added Procedure listing with two modes:<br />
1) Find selected procedure on DblClick<br />
2) Decompile selected procedure on DblClick (you don&#8217;t need decompile<br />
whole file, you can explore it on the fly)<br />
+ Added Syntax highlighting for PCode to UltraEdit</p>
<p>0.9 &#8211; [09.04.2005] &#8211; Soya Release<br />
* Fixed apps with no controls<br />
+ Improved Import, Export Dll recognition<br />
+ Identifing SubMain procedure<br />
+ Added Partial decompilation (Start Step &#8211; End Step)<br />
* Fixed some opcodes<br />
+ Error handling</p>
<p>0.8 &#8211; [05.04.2005] &#8211; Ladybird Release<br />
* BIG! Speed Up by processing large apps<br />
+ Added MRU files<br />
+ Moved storing settings from ini to registry<br />
* Fixed some opcodes<br />
+ Detection VB5 apps (but not supported yet)</p>
<p>0.7 &#8211; [27.03.2005] &#8211; Easter Release<br />
+ Added Properties recognition<br />
+ Added recognition of 24 new objects<br />
* Better procedure ending<br />
* Fixed Control recognition<br />
+ Unknown counter added<br />
* Fixed some opcodes<br />
+ Added Buttons separators, Removed customizing<br />
+ Jumps Speed Up<br />
* Fixed Jumps recognitions<br />
+ Added Syntax Coloring OFF</p>
<p>0.6 &#8211; [17.03.2005] &#8211; Optimization Release<br />
* Fixed OCX recognition<br />
+ Add Options window<br />
+ Add OCX Library name to Object window<br />
+ Add Menu popup on right click mouse<br />
* Better handling end of procedure (Check End Bytes Option)<br />
+ Compacting DB, from 64kb to 33kb by same functionality <img src='http://www.h4ck.org.cn/wp-content/plugins/smilies-themer/Julianus/20x20-big_smile.png' alt=':-)' class='wp-smiley' /> <br />
+ Optimized code for better speed</p>
<p>0.5 &#8211; [13.03.2005] &#8211; OCX Release<br />
+ Display Caption to objects:  Text,  Label,  Form, CheckBox, OptionButton,<br />
Frame, Menu<br />
+ Stop button (Break process)<br />
* Fixed some opcodes<br />
+ Added support for Events:<br />
MSCOMCTL.OCX Controls: ListView, Toolbar, StatusBar, ImageCombo,<br />
ProgressBar, TreeView, TabStrip, Slider<br />
RICHTX32.OCX: RichTextBox<br />
* Fixed menu decompiling<br />
<h3>相关文章</h3>
<ul class="related_posts">
<li><a href="http://www.h4ck.org.cn/2011/04/api-monitor-v2r6-x86x64/" title="API Monitor v2r6 x86/x64" rel="bookmark inlinks">API Monitor v2r6 x86/x64</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/01/cracklb-sun-dvd-2010/" title="CRACKL@B SUN DVD 2010" rel="bookmark inlinks">CRACKL@B SUN DVD 2010</a><span class="count">( 5 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/12/dup-2-21-beta-9/" title="dUP 2.21 BETA  9" rel="bookmark inlinks">dUP 2.21 BETA  9</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/09/diablo2oo2s-universal-patcher-v2-23/" title="diablo2oo2's Universal Patcher v2.23" rel="bookmark inlinks">diablo2oo2&#8242;s Universal Patcher v2.23</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/03/simple-assembly-explorer-1-13-2/" title="Simple Assembly Explorer 1.13.2" rel="bookmark inlinks">Simple Assembly Explorer 1.13.2</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/05/cmpdisasm-v0-71/" title="CmpDisasm v0.71" rel="bookmark inlinks">CmpDisasm v0.71</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/01/vmprotect-1-70-4-%e7%a0%b4%e8%a7%a3%e7%89%88/" title="VMProtect 1.70.4 破解版" rel="bookmark inlinks">VMProtect 1.70.4 破解版</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/12/uppp-v0-6-retail-patch-creater-by-ufo-pu55y/" title="uPPP.v0.6.Retail Patch Creater by UFO-pu55y" rel="bookmark inlinks">uPPP.v0.6.Retail Patch Creater by UFO-pu55y</a><span class="count">( 0 )</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.h4ck.org.cn/2009/12/p32dasm-v2-6-cracked/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>常见语言编写的exe入口点代码</title>
		<link>http://www.h4ck.org.cn/2009/08/pe-entry-point/</link>
		<comments>http://www.h4ck.org.cn/2009/08/pe-entry-point/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:45:11 +0000</pubDate>
		<dc:creator>obaby</dc:creator>
				<category><![CDATA[破解/汇编『Crack/Asm』]]></category>
		<category><![CDATA[PE]]></category>

		<guid isPermaLink="false">http://www.h4ck.org.cn/?p=73</guid>
		<description><![CDATA[Ddelphi:
<pre lang="asm" line="1">
55            PUSH EBP
8BEC          MOV EBP,ESP
83C4 F0       ADD ESP,-10
B8 A86F4B00   MOV EAX,PE.004B6FA8
</pre> ]]></description>
			<content:encoded><![CDATA[<p>Ddelphi:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="asm" style="font-family:monospace;"><span style="color: #0000ff;">55</span>            <span style="color: #00007f; font-weight: bold;">PUSH</span> <span style="color: #00007f;">EBP</span>
<span style="color: #adadad; font-style: italic;">8BEC</span>          <span style="color: #00007f; font-weight: bold;">MOV</span> <span style="color: #00007f;">EBP</span><span style="color: #339933;">,</span><span style="color: #00007f;">ESP</span>
<span style="color: #adadad; font-style: italic;">83C4</span> F0       <span style="color: #00007f; font-weight: bold;">ADD</span> <span style="color: #00007f;">ESP</span><span style="color: #339933;">,-</span><span style="color: #0000ff;">10</span>
B8 A86F4B00   <span style="color: #00007f; font-weight: bold;">MOV</span> <span style="color: #00007f;">EAX</span><span style="color: #339933;">,</span>PE<span style="color: #339933;">.</span>004B6FA8</pre></td></tr></table></div>

<p><span id="more-73"></span><br />
VC++</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="asm" style="font-family:monospace;"><span style="color: #0000ff;">55</span>            <span style="color: #00007f; font-weight: bold;">PUSH</span> <span style="color: #00007f;">EBP</span>
<span style="color: #adadad; font-style: italic;">8BEC</span>          <span style="color: #00007f; font-weight: bold;">MOV</span> <span style="color: #00007f;">EBP</span><span style="color: #339933;">,</span><span style="color: #00007f;">ESP</span>
<span style="color: #adadad; font-style: italic;">83EC</span> <span style="color: #0000ff;">44</span>       <span style="color: #00007f; font-weight: bold;">SUB</span> <span style="color: #00007f;">ESP</span><span style="color: #339933;">,</span><span style="color: #0000ff;">44</span>
<span style="color: #0000ff;">56</span>            <span style="color: #00007f; font-weight: bold;">PUSH</span> <span style="color: #00007f;">ESI</span></pre></td></tr></table></div>

<p>VB:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="asm" style="font-family:monospace;"><span style="color: #adadad; font-style: italic;">00401166</span>  <span style="color: #339933;">-</span> FF25 6C104000   <span style="color: #00007f; font-weight: bold;">JMP</span> <span style="color: #000000; font-weight: bold;">DWORD</span> <span style="color: #000000; font-weight: bold;">PTR</span> <span style="color: #00007f;">DS</span><span style="color: #339933;">:</span><span style="color: #009900; font-weight: bold;">&#91;</span>&amp;lt<span style="color: #666666; font-style: italic;">;&amp;amp;MSVBVM60.#100&amp;gt;]      ; MSVBVM60.ThunRTMain</span>
<span style="color: #adadad; font-style: italic;">0040116C</span> &amp;gt<span style="color: #666666; font-style: italic;">;  68 147C4000     PUSH PACKME.00407C14</span>
<span style="color: #adadad; font-style: italic;">00401171</span>    E8 F0FFFFFF     <span style="color: #00007f; font-weight: bold;">CALL</span> &amp;lt<span style="color: #666666; font-style: italic;">;JMP.&amp;amp;MSVBVM60.#100&amp;gt;</span>
<span style="color: #adadad; font-style: italic;">00401176</span>    <span style="color: #0000ff;">0000</span>            <span style="color: #00007f; font-weight: bold;">ADD</span> <span style="color: #000000; font-weight: bold;">BYTE</span> <span style="color: #000000; font-weight: bold;">PTR</span> <span style="color: #00007f;">DS</span><span style="color: #339933;">:</span><span style="color: #009900; font-weight: bold;">&#91;</span><span style="color: #00007f;">EAX</span><span style="color: #009900; font-weight: bold;">&#93;</span><span style="color: #339933;">,</span><span style="color: #00007f;">AL</span>
<span style="color: #adadad; font-style: italic;">00401178</span>    <span style="color: #0000ff;">0000</span>            <span style="color: #00007f; font-weight: bold;">ADD</span> <span style="color: #000000; font-weight: bold;">BYTE</span> <span style="color: #000000; font-weight: bold;">PTR</span> <span style="color: #00007f;">DS</span><span style="color: #339933;">:</span><span style="color: #009900; font-weight: bold;">&#91;</span><span style="color: #00007f;">EAX</span><span style="color: #009900; font-weight: bold;">&#93;</span><span style="color: #339933;">,</span><span style="color: #00007f;">AL</span>
<span style="color: #adadad; font-style: italic;">0040117A</span>    <span style="color: #0000ff;">0000</span>            <span style="color: #00007f; font-weight: bold;">ADD</span> <span style="color: #000000; font-weight: bold;">BYTE</span> <span style="color: #000000; font-weight: bold;">PTR</span> <span style="color: #00007f;">DS</span><span style="color: #339933;">:</span><span style="color: #009900; font-weight: bold;">&#91;</span><span style="color: #00007f;">EAX</span><span style="color: #009900; font-weight: bold;">&#93;</span><span style="color: #339933;">,</span><span style="color: #00007f;">AL</span>
<span style="color: #adadad; font-style: italic;">0040117C</span>    <span style="color: #0000ff;">3000</span>            <span style="color: #00007f; font-weight: bold;">XOR</span> <span style="color: #000000; font-weight: bold;">BYTE</span> <span style="color: #000000; font-weight: bold;">PTR</span> <span style="color: #00007f;">DS</span><span style="color: #339933;">:</span><span style="color: #009900; font-weight: bold;">&#91;</span><span style="color: #00007f;">EAX</span><span style="color: #009900; font-weight: bold;">&#93;</span><span style="color: #339933;">,</span><span style="color: #00007f;">AL</span></pre></td></tr></table></div>

<p>BC++</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="asm" style="font-family:monospace;"><span style="color: #adadad; font-style: italic;">0040163C</span> &amp;gt<span style="color: #666666; font-style: italic;">; $ /EB 10         JMP SHORT BCLOCK.0040164E</span>
<span style="color: #adadad; font-style: italic;">0040163E</span>     |<span style="color: #0000ff;">66</span>            <span style="color: #000000; font-weight: bold;">DB</span> <span style="color: #0000ff;">66</span>                                    <span style="color: #666666; font-style: italic;">;  CHAR 'f'</span>
<span style="color: #adadad; font-style: italic;">0040163F</span>     |<span style="color: #0000ff;">62</span>            <span style="color: #000000; font-weight: bold;">DB</span> <span style="color: #0000ff;">62</span>                                    <span style="color: #666666; font-style: italic;">;  CHAR 'b'</span>
<span style="color: #adadad; font-style: italic;">00401640</span>     |3A            <span style="color: #000000; font-weight: bold;">DB</span> 3A                                    <span style="color: #666666; font-style: italic;">;  CHAR ':'</span>
<span style="color: #adadad; font-style: italic;">00401641</span>     |<span style="color: #0000ff;">43</span>            <span style="color: #000000; font-weight: bold;">DB</span> <span style="color: #0000ff;">43</span>                                    <span style="color: #666666; font-style: italic;">;  CHAR 'C'</span>
<span style="color: #adadad; font-style: italic;">00401642</span>     |2B            <span style="color: #000000; font-weight: bold;">DB</span> 2B                                    <span style="color: #666666; font-style: italic;">;  CHAR '+'</span>
<span style="color: #adadad; font-style: italic;">00401643</span>     |2B            <span style="color: #000000; font-weight: bold;">DB</span> 2B                                    <span style="color: #666666; font-style: italic;">;  CHAR '+'</span>
<span style="color: #adadad; font-style: italic;">00401644</span>     |<span style="color: #0000ff;">48</span>            <span style="color: #000000; font-weight: bold;">DB</span> <span style="color: #0000ff;">48</span>                                    <span style="color: #666666; font-style: italic;">;  CHAR 'H'</span>
<span style="color: #adadad; font-style: italic;">00401645</span>     |<span style="color: #0000ff;">4F</span>            <span style="color: #000000; font-weight: bold;">DB</span> <span style="color: #0000ff;">4F</span>                                    <span style="color: #666666; font-style: italic;">;  CHAR 'O'</span>
<span style="color: #adadad; font-style: italic;">00401646</span>     |<span style="color: #0000ff;">4F</span>            <span style="color: #000000; font-weight: bold;">DB</span> <span style="color: #0000ff;">4F</span>                                    <span style="color: #666666; font-style: italic;">;  CHAR 'O'</span>
<span style="color: #adadad; font-style: italic;">00401647</span>     |4B            <span style="color: #000000; font-weight: bold;">DB</span> 4B                                    <span style="color: #666666; font-style: italic;">;  CHAR 'K'</span>
<span style="color: #adadad; font-style: italic;">00401648</span>     |<span style="color: #0000ff;">90</span>            <span style="color: #00007f; font-weight: bold;">NOP</span>
<span style="color: #adadad; font-style: italic;">00401649</span>     |E9            <span style="color: #000000; font-weight: bold;">DB</span> E9
<span style="color: #adadad; font-style: italic;">0040164A</span>   <span style="color: #339933;">.</span> |98E04E00      <span style="color: #000000; font-weight: bold;">DD</span> <span style="color: #000000; font-weight: bold;">OFFSET</span> BCLOCK<span style="color: #339933;">.</span>___CPPdebugHook
<span style="color: #adadad; font-style: italic;">0040164E</span>   &amp;gt<span style="color: #666666; font-style: italic;">; \A1 8BE04E00   MOV EAX,DWORD PTR DS:[4EE08B]</span>
<span style="color: #adadad; font-style: italic;">00401653</span>   <span style="color: #339933;">.</span>  C1E0 <span style="color: #0000ff;">02</span>       <span style="color: #00007f; font-weight: bold;">SHL</span> <span style="color: #00007f;">EAX</span><span style="color: #339933;">,</span><span style="color: #0000ff;">2</span>
<span style="color: #adadad; font-style: italic;">00401656</span>   <span style="color: #339933;">.</span>  A3 8FE04E00   <span style="color: #00007f; font-weight: bold;">MOV</span> <span style="color: #000000; font-weight: bold;">DWORD</span> <span style="color: #000000; font-weight: bold;">PTR</span> <span style="color: #00007f;">DS</span><span style="color: #339933;">:</span><span style="color: #009900; font-weight: bold;">&#91;</span>4EE08F<span style="color: #009900; font-weight: bold;">&#93;</span><span style="color: #339933;">,</span><span style="color: #00007f;">EAX</span>
<span style="color: #adadad; font-style: italic;">0040165B</span>   <span style="color: #339933;">.</span>  <span style="color: #0000ff;">52</span>            <span style="color: #00007f; font-weight: bold;">PUSH</span> <span style="color: #00007f;">EDX</span>
<span style="color: #adadad; font-style: italic;">0040165C</span>   <span style="color: #339933;">.</span>  6A <span style="color: #0000ff;">00</span>         <span style="color: #00007f; font-weight: bold;">PUSH</span> <span style="color: #0000ff;">0</span>                                   <span style="color: #666666; font-style: italic;">; /pModule = NULL</span>
<span style="color: #adadad; font-style: italic;">0040165E</span>   <span style="color: #339933;">.</span>  E8 DFBC0E00   <span style="color: #00007f; font-weight: bold;">CALL</span> &amp;lt<span style="color: #666666; font-style: italic;">;JMP.&amp;amp;KERNEL32.GetModuleHandleA&amp;gt;    ; \GetModuleHandleA</span>
<span style="color: #adadad; font-style: italic;">00401663</span>   <span style="color: #339933;">.</span>  8BD0          <span style="color: #00007f; font-weight: bold;">MOV</span> <span style="color: #00007f;">EDX</span><span style="color: #339933;">,</span><span style="color: #00007f;">EAX</span></pre></td></tr></table></div>

<p>Dasm:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="asm" style="font-family:monospace;"><span style="color: #adadad; font-style: italic;">00401000</span> &amp;gt<span style="color: #666666; font-style: italic;">;/$  6A 00         PUSH 0                                   ; /pModule = NULL</span>
<span style="color: #adadad; font-style: italic;">00401002</span>  |<span style="color: #339933;">.</span>  E8 C50A0000   <span style="color: #00007f; font-weight: bold;">CALL</span> &amp;lt<span style="color: #666666; font-style: italic;">;JMP.&amp;amp;KERNEL32.GetModuleHandleA&amp;gt;    ; \GetModuleHandleA</span>
<span style="color: #adadad; font-style: italic;">00401007</span>  |<span style="color: #339933;">.</span>  A3 0C354000   <span style="color: #00007f; font-weight: bold;">MOV</span> <span style="color: #000000; font-weight: bold;">DWORD</span> <span style="color: #000000; font-weight: bold;">PTR</span> <span style="color: #00007f;">DS</span><span style="color: #339933;">:</span><span style="color: #009900; font-weight: bold;">&#91;</span>40350C<span style="color: #009900; font-weight: bold;">&#93;</span><span style="color: #339933;">,</span><span style="color: #00007f;">EAX</span>
<span style="color: #adadad; font-style: italic;">0040100C</span>  |<span style="color: #339933;">.</span>  E8 B50A0000   <span style="color: #00007f; font-weight: bold;">CALL</span> &amp;lt<span style="color: #666666; font-style: italic;">;JMP.&amp;amp;KERNEL32.GetCommandLineA&amp;gt;     ; [GetCommandLineA</span>
<span style="color: #adadad; font-style: italic;">00401011</span>  |<span style="color: #339933;">.</span>  A3 <span style="color: #0000ff;">10354000</span>   <span style="color: #00007f; font-weight: bold;">MOV</span> <span style="color: #000000; font-weight: bold;">DWORD</span> <span style="color: #000000; font-weight: bold;">PTR</span> <span style="color: #00007f;">DS</span><span style="color: #339933;">:</span><span style="color: #009900; font-weight: bold;">&#91;</span><span style="color: #0000ff;">403510</span><span style="color: #009900; font-weight: bold;">&#93;</span><span style="color: #339933;">,</span><span style="color: #00007f;">EAX</span>
<span style="color: #adadad; font-style: italic;">00401016</span>  |<span style="color: #339933;">.</span>  6A 0A         <span style="color: #00007f; font-weight: bold;">PUSH</span> 0A                                  <span style="color: #666666; font-style: italic;">; /Arg4 = 0000000A</span>
<span style="color: #adadad; font-style: italic;">00401018</span>  |<span style="color: #339933;">.</span>  FF35 <span style="color: #0000ff;">10354000</span> <span style="color: #00007f; font-weight: bold;">PUSH</span> <span style="color: #000000; font-weight: bold;">DWORD</span> <span style="color: #000000; font-weight: bold;">PTR</span> <span style="color: #00007f;">DS</span><span style="color: #339933;">:</span><span style="color: #009900; font-weight: bold;">&#91;</span><span style="color: #0000ff;">403510</span><span style="color: #009900; font-weight: bold;">&#93;</span>               <span style="color: #666666; font-style: italic;">; |Arg3 = 00000000</span>
<span style="color: #adadad; font-style: italic;">0040101E</span>  |<span style="color: #339933;">.</span>  6A <span style="color: #0000ff;">00</span>         <span style="color: #00007f; font-weight: bold;">PUSH</span> <span style="color: #0000ff;">0</span>                                   <span style="color: #666666; font-style: italic;">; |Arg2 = 00000000</span>
<span style="color: #adadad; font-style: italic;">00401020</span>  |<span style="color: #339933;">.</span>  FF35 0C354000 <span style="color: #00007f; font-weight: bold;">PUSH</span> <span style="color: #000000; font-weight: bold;">DWORD</span> <span style="color: #000000; font-weight: bold;">PTR</span> <span style="color: #00007f;">DS</span><span style="color: #339933;">:</span><span style="color: #009900; font-weight: bold;">&#91;</span>40350C<span style="color: #009900; font-weight: bold;">&#93;</span>               <span style="color: #666666; font-style: italic;">; |Arg1 = 00000000</span></pre></td></tr></table></div>

<h3>相关文章</h3>
<ul class="related_posts">
<li><a href="http://www.h4ck.org.cn/2011/01/pe-header-editor-v1-0/" title="PE头移位工具 v1.0" rel="bookmark inlinks">PE头移位工具 v1.0</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/12/restorator-2009-4-0-build-1807-patch/" title="Restorator 2009 4.0 build 1807 Patch" rel="bookmark inlinks">Restorator 2009 4.0 build 1807 Patch</a><span class="count">( 1 )</span></li>
<li><a href="http://www.h4ck.org.cn/2009/12/p32dasm-v2-6-cracked/" title="P32dasm.v2.6 Cracked" rel="bookmark inlinks">P32dasm.v2.6 Cracked</a><span class="count">( 2 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/02/explorersuite-13-12-09/" title="ExplorerSuite.13.12.09" rel="bookmark inlinks">ExplorerSuite.13.12.09</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/01/protection-id-v0-6-3-5-public-december-2009/" title="Protection ID v0.6.3.5 Public DECEMBER 2009    " rel="bookmark inlinks">Protection ID v0.6.3.5 Public DECEMBER 2009    </a><span class="count">( 5 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/07/ida-pe6-dll-unpack/" title="实战IDA PE+ DLL脱壳" rel="bookmark inlinks">实战IDA PE+ DLL脱壳</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2011/03/ildasm-4-0-fixed/" title="ildasm 4.0 修改版" rel="bookmark inlinks">ildasm 4.0 修改版</a><span class="count">( 0 )</span></li>
<li><a href="http://www.h4ck.org.cn/2010/01/cracklb-sun-dvd-2010/" title="CRACKL@B SUN DVD 2010" rel="bookmark inlinks">CRACKL@B SUN DVD 2010</a><span class="count">( 5 )</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.h4ck.org.cn/2009/08/pe-entry-point/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

