<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Tired of being hacked? Here is the fix"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Tired of being hacked? Here is the fix"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Tired of being hacked? Here is the fix</title>
				<description><![CDATA[ Tired of being hacked?<br /> <br /> Guide to the ultimate protection.<br /> <br /> 1) create new file and name it anything you want .php<br /> 2) insert this code (comes straight from proxy2.de site)<br /> <br /> [code]&lt;?PHP<br /> <br /> // include this file where you want to limit access. <br /> <br /> $username =  &quot;test&quot;;<br /> $password =  &quot;123&quot;;<br /> <br /> function authenticate&#40;&#41; &#123;<br />   Header&#40; &quot;WWW-authenticate&#58; basic realm=\&quot;Protected\&quot;&quot;&#41;;<br />   Header&#40; &quot;HTTP/1.0 401 Unauthorized&quot;&#41;;<br />   echo   &quot;You must enter a valid login ID and password!\n&quot;;<br />   exit;<br /> &#125;<br /> <br /> function CheckPwd&#40;$user,$pass&#41; &#123;<br />   global $username,$password;<br />   return &#40;$user != $username || $pass != $password&#41; ? false &#58; true;<br /> &#125;<br /> <br /> if&#40;!isset&#40;$PHP_AUTH_USER&#41;&#41; &#123;<br />   authenticate&#40;&#41;;<br /> &#125;<br /> elseif&#40;!CheckPwd&#40;$PHP_AUTH_USER,$PHP_AUTH_PW&#41;&#41; &#123;<br />   authenticate&#40;&#41;;<br /> &#125;<br /> ?&gt;<br /> [/code]<br /> <br /> 4)<br /> open up admin.php and on the second line directly after &lt;?php<br /> place this<br /> <br /> [code]include &quot;/home/httpd/yourhost/yourdomainpath/www/guestbook/password_file.php&quot;;[/code]<br /> <br /> now, make sure that the password in the authentication file matches YOUR password to the guestbook.<br /> <br /> 5) rename the admin.php to something other than admin.php<br /> 6) update /admin/config.inc.php file to reflect the new name of admin.php file<br /> 7) remove any and all links in guestbook to administration area<br /> <br /> 8)guestbook is completly secured from everyone...except you.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/8821.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/8821.php</link>
				<pubDate><![CDATA[Sat, 26 Jun 2004 13:49:58]]> GMT</pubDate>
				<author><![CDATA[ Jared]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Does this work with GB version 2.2. Thanks in advance. <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" /> Also in which directory of GB do you place the new code in. Admin???]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/8825.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/8825.php</link>
				<pubDate><![CDATA[Sat, 26 Jun 2004 17:09:43]]> GMT</pubDate>
				<author><![CDATA[ JTD]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Since I have had guestbook 2.2 in the past, the admin file pretty much works the same. I don't see any reason why it would not work.<br /> <br /> The password file, which you can name anything you want, is also placed in the root of the guestbook folder. You will just do a php include statement in the admin file so that it runs the script on startup. This will give you a .htaccess/.htpasswd file type of user prompt.<br /> <br /> Make sure you rename the admin.php file to something only you will know. It is also important to remove the links to the administration area, because once you have updated /admin/config.inc.php it will show the new file name in those links.<br /> <br /> I have noticed that Chi Kien Uong (proxy2.de) has done the same to his guestbook on this site, only he has not renamed the admin.php file.<br /> <br /> you don't have to rename the admin.php file, but it is just increased security.<br /> <br /> the nice thing is that once you enter the password, it takes you directly into the admin area. But you have to make sure that both user name and password sets match.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/8827.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/8827.php</link>
				<pubDate><![CDATA[Sat, 26 Jun 2004 17:47:35]]> GMT</pubDate>
				<author><![CDATA[ Jared]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I did this and it worked great - for two days.  Who knows why, but on the third day I couldn't get into admin.  Even though I hadn't changed anything else, it was once again looking for a file named admin.php.  so, I had to put everything back like it originally was... Go figure.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9621.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9621.php</link>
				<pubDate><![CDATA[Wed, 4 Aug 2004 07:48:45]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Carbonize has a much easier and simpler fix.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9624.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9624.php</link>
				<pubDate><![CDATA[Wed, 4 Aug 2004 08:38:21]]> GMT</pubDate>
				<author><![CDATA[ JTD]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Just a couple of errors in your instructions Jared.<br /> [code]include &quot;/home/httpd/yourhost/yourdomainpath/www/guestbook/password_file.php&quot;;[/code] First I would use [b]require[/b] and not [b]include[/b] as this way if the password file is not found the script wont run.<br /> <br /> Second the path will vary for every user. But given that, hopefully, the password script will be in the same directory as the admin.php we could use [code]require &quot;passwordlock.php&quot;;[/code] This is also assuming that they named the file [b]passwordlock.php[/b].<br /> <br /> Basically users want to open notepad and copy the first bit of script from jareds post into it. You then want to save the file as [b]passwordlock.php[/b] and then upload the file to your guestbooks directory. Make sure that the file ends in .php and that your text editor has not added an extension on the end. Now open up [b]admin.php[/b] and just after the [b]&lt;?[/b] put [code]require &quot;passwordlock.php&quot;;[/code].<br /> <br /> I personally don't like this method for various reasons but it will do the job.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9626.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9626.php</link>
				<pubDate><![CDATA[Wed, 4 Aug 2004 08:51:51]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Just a couple of errors in your instructions Jared.<br /> [code]include &quot;/home/httpd/yourhost/yourdomainpath/www/guestbook/password_file.php&quot;;[/code] First I would use [b]require[/b] and not [b]include[/b] as this way if the password file is not found the script wont run.[/quote]<br /> <br /> If the file that contains the script is not found then how can the script run anyway??<br /> <br /> Also you may wish to re-write your notes on Jared' method of securing the <br /> guestbook since its doesn't make much sense.<br /> <br /> _ Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9627.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9627.php</link>
				<pubDate><![CDATA[Wed, 4 Aug 2004 14:12:28]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ If the PHP engine doesnt find the file indicated in the [b]include[/b] it will report an error but carry on with the rest of ths script. If it doesn't find the file indicated in [b]require[/b] it will stop running the script at that point.<br /> <br /> My instructions<br /> 1 - Open up your favourite text editor, notepad for example.<br /> 2 - Place the following in the empty file remembering to make the password the same as your guestbook password[code]&lt;?PHP <br /> <br /> // include this file where you want to limit access. <br /> <br /> $username =  &quot;test&quot;; <br /> $password =  &quot;123&quot;; <br /> <br /> function authenticate&#40;&#41; &#123; <br />   Header&#40; &quot;WWW-authenticate&#58; basic realm=\&quot;Protected\&quot;&quot;&#41;; <br />   Header&#40; &quot;HTTP/1.0 401 Unauthorized&quot;&#41;; <br />   echo   &quot;You must enter a valid login ID and password!\n&quot;; <br />   exit; <br /> &#125; <br /> <br /> function CheckPwd&#40;$user,$pass&#41; &#123; <br />   global $username,$password; <br />   return &#40;$user != $username || $pass != $password&#41; ? false &#58; true; <br /> &#125; <br /> <br /> if&#40;!isset&#40;$PHP_AUTH_USER&#41;&#41; &#123; <br />   authenticate&#40;&#41;; <br /> &#125; <br /> elseif&#40;!CheckPwd&#40;$PHP_AUTH_USER,$PHP_AUTH_PW&#41;&#41; &#123; <br />   authenticate&#40;&#41;; <br /> &#125; <br /> ?&gt; [/code]<br /> 3 - Save the file as [b]passwordlock.php[/b] making sure your text editor has not added a different extension to the end.<br /> 4 - Upload the new [b]passwordlock.php[/b] file into your guestbooks directory.<br /> 5 - Open up [b]admin.php[/b] and just after the &lt;?php put[code]require &quot;passwordlock.php&quot;;[/code] now save [b]admin.php[/b] back to your server.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9628.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9628.php</link>
				<pubDate><![CDATA[Wed, 4 Aug 2004 15:29:37]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I'm going to try this.  Just wanted to know if I can substitute another name for "passwordlock.php" if the other name is also used in step 5.  Sounds logical?<br /> <br /> [quote]3 - Save the file as passwordlock.php making sure your text editor has not added a different extension to the end. <br /> 4 - Upload the new passwordlock.php file into your guestbooks directory. <br /> 5 - Open up admin.php and just after the &lt;?php put Code: <br /> require ("passwordlock.php"); <br /> now save admin.php back to your server.[/quote]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9635.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9635.php</link>
				<pubDate><![CDATA[Wed, 4 Aug 2004 18:37:15]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yup sounds perfectly logical to me. My main gripe was that Jared had said to save the initial file as anything you want.php and then used a specific include path and file name. I was mainly pointing out that this may confuse a lot of people and that the full path they used would not apply to all as every server is set up differently.<br /> <br /> I still prefer my fix.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9636.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9636.php</link>
				<pubDate><![CDATA[Wed, 4 Aug 2004 18:43:02]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Well, this is giving me the header errors.  Did anybody else have this problem?  After removing the blank lines, I still end up with the following error:<br /> <br /> Warning: Cannot modify header information - headers already sent by (output started at /home/xxxxx/public_html/modules/guestbook/passwordlock.php:23) <br /> /home/xxxxx/public_html/modules/guestbook/admin.php on line 205<br /> <br /> Line 205 is:<br /> <br />                  [code]header&#40;&quot;Location&#58; $base_url&quot;&#41;;[/code]<br /> <br /> Could this have something to do with Phpnuke, and do you know how I can fix it? Until then, I will have to disable it.<br /> <br /> Also, (and I know this is on a different subject), the logout redirect instructions do not work with Phpnuke either.<br /> <br /> Thanks.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9637.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9637.php</link>
				<pubDate><![CDATA[Wed, 4 Aug 2004 19:22:54]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ change the admn.php file to anything you want. BE SURE to change /admin/config.inc.php with the new name of the renamed admin.php file]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9650.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9650.php</link>
				<pubDate><![CDATA[Wed, 4 Aug 2004 22:08:37]]> GMT</pubDate>
				<author><![CDATA[ Jared]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ They will also need to edit the admin_enter.php if they use 2.2 as the target for the form data is hard coded into it as [code]action=&quot;admin.php&quot;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9652.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9652.php</link>
				<pubDate><![CDATA[Wed, 4 Aug 2004 22:49:29]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I was able to access the admin by following the instructions here, but I can no see previously posted messages.  Plus the /index.php file is still that hacked message.<br /> <br /> Help!!<br /> <br /> R. Jones<br /> <br /> <a class="snap_shots" href="http://www.afrovoices.com/" target="_blank" rel="nofollow">http://www.afrovoices.com/</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9679.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9679.php</link>
				<pubDate><![CDATA[Thu, 5 Aug 2004 20:47:08]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Get me on msn Now plus check your email]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/9680.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/9680.php</link>
				<pubDate><![CDATA[Thu, 5 Aug 2004 20:50:16]]> GMT</pubDate>
				<author><![CDATA[ JTD]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I am new here and my guestbook was just hacked...I did this that carbonize mentioned and now I am getting this error when trying to access the admin<br /> <br /> Fatal error: Call to undefined function: phprequire() in /home/mikespe/public_html/huesped/admin.php on line 1<br /> <br /> any ideas?<br /> <br /> Thx]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/13181.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/13181.php</link>
				<pubDate><![CDATA[Wed, 19 Jan 2005 01:37:12]]> GMT</pubDate>
				<author><![CDATA[ hawkeye]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Password Lock? - This didn't work for me because I am using Phpnuke.  I have not tried it in my non-nuke guestbooks.<br /> <br /> Once the 2.2 exploit is fixed or the book is upgraded to 2.3, and html code is always disabled, there is no evidence of the guestbook being hacked.  The only exception I can think of would be those guestbooks where the admin got caught in the admin loop after upgrading and mistakenly reverted back to the version 2.2 session.class.php.  That's where the exploit is.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/13187.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/13187.php</link>
				<pubDate><![CDATA[Wed, 19 Jan 2005 04:17:57]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title>Followed instructions but will not let me in</title>
				<description><![CDATA[ Which directory does the passwordlock.php file belong.  The enter network password box appears but will not let me in when using the default test 123 user/passwords.  TIA TOm]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/13196.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/13196.php</link>
				<pubDate><![CDATA[Wed, 19 Jan 2005 13:44:58]]> GMT</pubDate>
				<author><![CDATA[ tcjay]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote]Fatal error: Call to undefined function: phprequire() in /home/mikespe/public_html/huesped/admin.php on line 1 [/quote]Lost me. Where did this phprequire call coem from? It's not in my admin.php and I don't remember anything in the image verification mod that involved the admin.php file.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/13199.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/13199.php</link>
				<pubDate><![CDATA[Wed, 19 Jan 2005 20:21:58]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I pasted this in the admin.php like you mentioned in the above posts...and as a result this is the error I got...<br /> <br /> This is not the image verication mod..this is the fix to stop from getting hacked...<br /> <br /> <br /> <br /> [code]require &#40;&quot;passwordlock.php&quot;&#41;;[/code]<br /> <br /> You did say to put this in the admin.php correct?<br /> <br /> Thx]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/13208.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/13208.php</link>
				<pubDate><![CDATA[Wed, 19 Jan 2005 23:31:05]]> GMT</pubDate>
				<author><![CDATA[ hawkeye]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Try removing the ()'s so it's just [b]require "passwordlock.php";[/b].]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/13214.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/13214.php</link>
				<pubDate><![CDATA[Thu, 20 Jan 2005 09:56:50]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thank you Carbonize...I will try it when I get home from work and post back here the results...<br /> <br /> On a side note...I sent you an email via your MSN address...I waswondering if you got it?<br /> <br /> Thx<br /> <br /> hawkeye]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/13218.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/13218.php</link>
				<pubDate><![CDATA[Thu, 20 Jan 2005 14:21:46]]> GMT</pubDate>
				<author><![CDATA[ hawkeye]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No as my hotmail account only exists to let me use MSN messenger. My email address is on my website and at the bottom of every post I make in the forum.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/13222.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/13222.php</link>
				<pubDate><![CDATA[Thu, 20 Jan 2005 16:22:53]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Not able to login</title>
				<description><![CDATA[ I put the passwordlock on thew geustbook. <br /> But now i have the following problem.<br /> I have put in the password lock the right password and username.<br /> but when i want to login thru the password box, it keeps hanging in a loop.<br /> When i remove the passwordlock.php and adjust admin.php then i can just login normal with the password i have appleid.<br /> <br /> How can i solve this]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/16216.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/16216.php</link>
				<pubDate><![CDATA[Sun, 22 May 2005 10:36:09]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ If you are using Advanced Guestbook 2.3.1 or 2.3.2 there is no need to go to this extreme.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/16217.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/16217.php</link>
				<pubDate><![CDATA[Sun, 22 May 2005 10:55:36]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thx i'm using 2.3.2<br /> And i'm really happy with it.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/16218.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/16218.php</link>
				<pubDate><![CDATA[Sun, 22 May 2005 11:26:53]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi,<br /> <br /> I am using 2.3.2 now and the admin login is from browser instead of a pop-up password window.<br /> <br /> Should I make a change in accoding to the modification posted here? Are the changes work for 2.3.2?<br /> <br /> Please advice and thanks in advance.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/16347.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/16347.php</link>
				<pubDate><![CDATA[Sat, 4 Jun 2005 04:57:18]]> GMT</pubDate>
				<author><![CDATA[ akira]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ 2.3.2 is secure so I'd just leave it as it is.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/16348.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/16348.php</link>
				<pubDate><![CDATA[Sat, 4 Jun 2005 07:25:41]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks Carbonize.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/16350.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/16350.php</link>
				<pubDate><![CDATA[Sat, 4 Jun 2005 07:32:27]]> GMT</pubDate>
				<author><![CDATA[ akira]]></author>
			</item>
			<item>
				<title>Tired of being hacked? Here is the fix</title>
				<description><![CDATA[ It,s problem!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/26138.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/26138.php</link>
				<pubDate><![CDATA[Sun, 26 Feb 2012 06:37:15]]> GMT</pubDate>
				<author><![CDATA[ Severynin322]]></author>
			</item>
			<item>
				<title>Tired of being hacked? Here is the fix</title>
				<description><![CDATA[ [quote=Severynin322]It,s problem![/quote]<br /> <br /> What?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/26139.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/26139.php</link>
				<pubDate><![CDATA[Sun, 26 Feb 2012 10:40:18]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Re:Tired of being hacked? Here is the fix</title>
				<description><![CDATA[ I should change accoding posting the changes here? Changes in the work of 2.3.2?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3283/26173.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3283/26173.php</link>
				<pubDate><![CDATA[Wed, 18 Apr 2012 04:48:06]]> GMT</pubDate>
				<author><![CDATA[ deragoku]]></author>
			</item>
	</channel>
</rss>