<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: Preparing a bugfix version of CFF Explorer	</title>
	<atom:link href="https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/feed/" rel="self" type="application/rss+xml" />
	<link>https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/</link>
	<description></description>
	<lastBuildDate>Sat, 10 Jun 2017 06:51:37 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>
		By: gho		</title>
		<link>https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-311</link>

		<dc:creator><![CDATA[gho]]></dc:creator>
		<pubDate>Sat, 10 Jun 2017 06:51:37 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=250#comment-311</guid>

					<description><![CDATA[A patch for my referred tool? Awful! Can&#039;t wait to see it. I couldn&#039;t have made DxWnd without it. Thank you and ... ciao!]]></description>
			<content:encoded><![CDATA[<p>A patch for my referred tool? Awful! Can&#8217;t wait to see it. I couldn&#8217;t have made DxWnd without it. Thank you and &#8230; ciao!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: user		</title>
		<link>https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-310</link>

		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Tue, 03 May 2016 16:47:52 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=250#comment-310</guid>

					<description><![CDATA[CFF bugs in processing managed resources: http://lifeinhex.com/cff-bugs-in-processing-managed-resources/

P.S. The download link can be found in http://ntcore.com/exsuite.php ( Hint: look for the lines starting with SHA1: )]]></description>
			<content:encoded><![CDATA[<p>CFF bugs in processing managed resources: <a href="http://lifeinhex.com/cff-bugs-in-processing-managed-resources/" rel="nofollow ugc">http://lifeinhex.com/cff-bugs-in-processing-managed-resources/</a></p>
<p>P.S. The download link can be found in <a href="http://ntcore.com/exsuite.php" rel="ugc">http://ntcore.com/exsuite.php</a> ( Hint: look for the lines starting with SHA1: )</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Daniel Pistelli		</title>
		<link>https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-309</link>

		<dc:creator><![CDATA[Daniel Pistelli]]></dc:creator>
		<pubDate>Thu, 01 Jan 2015 21:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=250#comment-309</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-308&quot;&gt;Charles&lt;/a&gt;.

Thank you for reporting the bug! :) If I ever do a bugfix for CFF I&#039;ll make sure to include the fix for the bug you reported. Thanks again for the detailed report.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-308">Charles</a>.</p>
<p>Thank you for reporting the bug! 🙂 If I ever do a bugfix for CFF I&#8217;ll make sure to include the fix for the bug you reported. Thanks again for the detailed report.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Charles		</title>
		<link>https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-308</link>

		<dc:creator><![CDATA[Charles]]></dc:creator>
		<pubDate>Fri, 14 Nov 2014 07:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=250#comment-308</guid>

					<description><![CDATA[Probably too late on this, but I noticed an issue with CFF Explorer&#039;s scripting issue today, so I figured I might as well report it (For reference, this is CFF Explorer 8.0.0.0):

Due to the 0-based array modifications made to CFF&#039;s lua implementation, the built-in &lt;b&gt;type&lt;/b&gt; function is currently reporting incorrect types for the supplied values. I&#039;ve reproduced this issue in the following script:
&lt;code&gt;
-- Create a log of type evaluations.
-- 
local typeFixes = {
	[&#039;nil&#039;] = &#039;boolean&#039;,       -- LUA_TNIL =&#062; LUA_TBOOLEAN
	[&#039;boolean&#039;] = &#039;userdata&#039;,  -- LUA_TBOOLEAN =&#062; LUA_TLIGHTUSERDATA
	[&#039;userdata&#039;] = &#039;number&#039;,   -- LUA_TLIGHTUSERDATA =&#062; LUA_TNUMBER
	[&#039;number&#039;] = &#039;string&#039;,     -- LUA_TNUMBER =&#062; LUA_TSTRING
	[&#039;string&#039;] = &#039;table&#039;,      -- LUA_TSTRING =&#062; LUA_TTABLE
	[&#039;table&#039;] = &#039;function&#039;,    -- LUA_TTABLE =&#062; LUA_TFUNCTION
	[&#039;function&#039;] = &#039;userdata&#039;  -- LUA_TFUNCTION =&#062; LUA_TUSERDATA
	-- [&#039;userdata&#039;] = &#039;thread&#039; -- LUA_TFUNCTION =&#062; LUA_TTHREAD
}

local hLog = CreateLog(&#039;IncorrectTypes.log&#039;)

function LogType(value, code)
	LogPrint(hLog, string.format(&#039;type(%s) =&#062; &quot;%s&quot;\n&#039;, code, type(value)))
end

LogType(nil, &#039;nil&#039;)
LogType(true, &#039;true&#039;)
LogType(5, &#039;5&#039;)
LogType(&#039;foobar&#039;, &#039;&quot;foobar&quot;&#039;)
LogType({}, &#039;{}&#039;)
LogType(function() end, &#039;function() end&#039;)

CloseLog(hLog)
&lt;/code&gt;

That aside, I made a dump of the globals in CF&#039;s lua for my own reference, so I thought I&#039;d share it in hopes that it might be helpful to someone else: &lt;a href=&quot;https://gist.github.com/juntalis/ecae44d4eedf484c804f&quot; rel=&quot;nofollow ugc&quot;&gt;CFF-Explorer-Globals.lua&lt;/a&gt;

Thanks for the awesome tool.]]></description>
			<content:encoded><![CDATA[<p>Probably too late on this, but I noticed an issue with CFF Explorer&#8217;s scripting issue today, so I figured I might as well report it (For reference, this is CFF Explorer 8.0.0.0):</p>
<p>Due to the 0-based array modifications made to CFF&#8217;s lua implementation, the built-in <b>type</b> function is currently reporting incorrect types for the supplied values. I&#8217;ve reproduced this issue in the following script:<br />
<code><br />
-- Create a log of type evaluations.<br />
--<br />
local typeFixes = {<br />
	['nil'] = 'boolean',       -- LUA_TNIL =&gt; LUA_TBOOLEAN<br />
	['boolean'] = 'userdata',  -- LUA_TBOOLEAN =&gt; LUA_TLIGHTUSERDATA<br />
	['userdata'] = 'number',   -- LUA_TLIGHTUSERDATA =&gt; LUA_TNUMBER<br />
	['number'] = 'string',     -- LUA_TNUMBER =&gt; LUA_TSTRING<br />
	['string'] = 'table',      -- LUA_TSTRING =&gt; LUA_TTABLE<br />
	['table'] = 'function',    -- LUA_TTABLE =&gt; LUA_TFUNCTION<br />
	['function'] = 'userdata'  -- LUA_TFUNCTION =&gt; LUA_TUSERDATA<br />
	-- ['userdata'] = 'thread' -- LUA_TFUNCTION =&gt; LUA_TTHREAD<br />
}</p>
<p>local hLog = CreateLog('IncorrectTypes.log')</p>
<p>function LogType(value, code)<br />
	LogPrint(hLog, string.format('type(%s) =&gt; "%s"\n', code, type(value)))<br />
end</p>
<p>LogType(nil, 'nil')<br />
LogType(true, 'true')<br />
LogType(5, '5')<br />
LogType('foobar', '"foobar"')<br />
LogType({}, '{}')<br />
LogType(function() end, 'function() end')</p>
<p>CloseLog(hLog)<br />
</code></p>
<p>That aside, I made a dump of the globals in CF&#8217;s lua for my own reference, so I thought I&#8217;d share it in hopes that it might be helpful to someone else: <a href="https://gist.github.com/juntalis/ecae44d4eedf484c804f" rel="nofollow ugc">CFF-Explorer-Globals.lua</a></p>
<p>Thanks for the awesome tool.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Chromium		</title>
		<link>https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-307</link>

		<dc:creator><![CDATA[Chromium]]></dc:creator>
		<pubDate>Mon, 03 Mar 2014 11:38:06 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=250#comment-307</guid>

					<description><![CDATA[Hello,

&quot;UPDATE: Uploaded new version with the following improvements:&quot;

but where to find this version? downloaded from main page, but it is still the old 2012 version]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>&#8220;UPDATE: Uploaded new version with the following improvements:&#8221;</p>
<p>but where to find this version? downloaded from main page, but it is still the old 2012 version</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Edi Liu		</title>
		<link>https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-306</link>

		<dc:creator><![CDATA[Edi Liu]]></dc:creator>
		<pubDate>Tue, 31 Dec 2013 09:50:25 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=250#comment-306</guid>

					<description><![CDATA[Dear Daniel,
Your CFF Explorer is very great tool for us as a developer/reverser, i hope you still update this tool with an up-to-date features, two thumbs for your great works.

regards
Edi Liu]]></description>
			<content:encoded><![CDATA[<p>Dear Daniel,<br />
Your CFF Explorer is very great tool for us as a developer/reverser, i hope you still update this tool with an up-to-date features, two thumbs for your great works.</p>
<p>regards<br />
Edi Liu</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: PSXGamerPro1		</title>
		<link>https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-305</link>

		<dc:creator><![CDATA[PSXGamerPro1]]></dc:creator>
		<pubDate>Sat, 28 Sep 2013 06:45:03 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=250#comment-305</guid>

					<description><![CDATA[Can you update the UPX version to 3.9 or whatever is the latest.]]></description>
			<content:encoded><![CDATA[<p>Can you update the UPX version to 3.9 or whatever is the latest.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Daniel Pistelli		</title>
		<link>https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-304</link>

		<dc:creator><![CDATA[Daniel Pistelli]]></dc:creator>
		<pubDate>Sat, 08 Jun 2013 10:43:28 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=250#comment-304</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-303&quot;&gt;Stefan Achatz&lt;/a&gt;.

Hello Stefan,
please note that the 40 limitation can be changed from the settings, it&#039;s a &#039;security&#039; limitation in order to avoid loading files too large into memory.
Hope this helps
Daniel]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-303">Stefan Achatz</a>.</p>
<p>Hello Stefan,<br />
please note that the 40 limitation can be changed from the settings, it&#8217;s a &#8216;security&#8217; limitation in order to avoid loading files too large into memory.<br />
Hope this helps<br />
Daniel</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Stefan Achatz		</title>
		<link>https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-303</link>

		<dc:creator><![CDATA[Stefan Achatz]]></dc:creator>
		<pubDate>Mon, 03 Jun 2013 13:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=250#comment-303</guid>

					<description><![CDATA[Hi, your tool is my first choice when I have to look into PE file resources. I recently found out the Explorer has a 40MB limitation. Is that intentionally, could this be lifted and is the commercial version limited the same way? I found no info on that on the website.
Thanks
Stefan]]></description>
			<content:encoded><![CDATA[<p>Hi, your tool is my first choice when I have to look into PE file resources. I recently found out the Explorer has a 40MB limitation. Is that intentionally, could this be lifted and is the commercial version limited the same way? I found no info on that on the website.<br />
Thanks<br />
Stefan</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Daniel Pistelli		</title>
		<link>https://ntcore.com/preparing-a-bugfix-version-of-cff-explorer/#comment-302</link>

		<dc:creator><![CDATA[Daniel Pistelli]]></dc:creator>
		<pubDate>Mon, 18 Mar 2013 12:17:44 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=250#comment-302</guid>

					<description><![CDATA[I&#039;ll add this to the TODO list, along with the other suggestions. Right now there&#039;s already a single Zip file, what&#039;s missing is only the INI settings instead of registry.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll add this to the TODO list, along with the other suggestions. Right now there&#8217;s already a single Zip file, what&#8217;s missing is only the INI settings instead of registry.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
