<?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>Linux Servers cPanel webhosting blog &#187; Linux Permissions</title>
	<atom:link href="http://www.theperfectarts.com/category/linux-permissions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theperfectarts.com</link>
	<description>Basics cPanel tutorials / issue,mysql,php errors etc</description>
	<lastBuildDate>Wed, 08 Feb 2012 05:58:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Server wide permission issue after enabling suphp</title>
		<link>http://www.theperfectarts.com/2012/01/server-wide-permission-issue-after-enabling-suphp/</link>
		<comments>http://www.theperfectarts.com/2012/01/server-wide-permission-issue-after-enabling-suphp/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 09:24:01 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[cPanel + cPanel scripts]]></category>
		<category><![CDATA[Dedicated Server Issue]]></category>
		<category><![CDATA[Linux Administrator Interview Questions]]></category>
		<category><![CDATA[Linux Permissions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[resolve 500 Internal Server Error]]></category>
		<category><![CDATA[scrip to correct ownership]]></category>
		<category><![CDATA[script to correct permission]]></category>
		<category><![CDATA[script to correct server wide permission]]></category>
		<category><![CDATA[script to correct user ownership]]></category>
		<category><![CDATA[script to resolve 500 internal server error]]></category>
		<category><![CDATA[script to resolve suphp issue]]></category>
		<category><![CDATA[Server wide .htacces php value issue]]></category>
		<category><![CDATA[Server wide ownership issue]]></category>
		<category><![CDATA[Server wide permission issue]]></category>
		<category><![CDATA[Server wide solution script]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1877</guid>
		<description><![CDATA[After enabling the suphp on the server,many time 500 Internal Server Error occur due to the incorrect permission,ownership and incorrect php module defined in the .htaccess file and we can&#8217;t make the changes manually therefore we can use the following script to make the all the changes server. Login into the server as a root user [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-1685490665026631";
/* Big images */
google_ad_slot = "0185136902";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-1685490665026631";
/* Big images */
google_ad_slot = "0185136902";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript">// <![CDATA[
            var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   </p>
<p>(function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = </p>
<p>('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = </p>
<p>document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script><br />
After enabling the suphp on the server,many time 500 Internal Server Error occur due to the incorrect permission,ownership and incorrect php module defined in the .htaccess file and we can&#8217;t make the changes manually therefore we can use the following script to make the all the changes server.</p>
<p>Login into the server as a root user and follow the followings steps.</p>
<blockquote><p>
<strong>linux7802@server[~]#cat /root/suphppermission.sh</strong></p>
<p><strong>#!/bin/bash</strong></p>
<p><strong># Reset the directory permissions.</strong><br />
<strong>chmod 755 /opt/suphp</strong><br />
<strong>find /opt/suphp -type d -exec chmod 755 {} \;</strong></p>
<p><strong># Reset permission,ownership for cPanel user</strong><br />
<strong>for user in `/bin/ls /var/cpanel/users`; do</strong></p>
<p><strong>chown -R ${user}:${user} /home/${user}/public_html</strong><br />
<strong> chmod 755 /home/${user}/public_html</strong><br />
<strong> find /home/${user}/public_html -type f -exec chmod 644 {} \;</strong><br />
<strong> find /home/${user}/public_html -type d -exec chmod 755 {} \;</strong></p>
<p><strong># Remove <strong>php_values in the .htaccess file</strong>.</strong><br />
<strong> find /home/${user}/public_html -name &#8216;.htaccess&#8217; -exec sed -ie &#8216;s/php_value/#php_value/&#8217; {} \;</strong><br />
<strong> find /home/${user}/public_html -name &#8216;.htaccess&#8217; -exec sed -ie &#8216;s/php_flag/#php_flag/&#8217; {} \;</strong><br />
<strong>done</strong></p></blockquote>
<p>If you have any issue to copy the above content the download the script from following URL<br />
<a title="scr" href="http://theperfectarts.com/permission.txt" target="_blank">scr</a></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2012/01/server-wide-permission-issue-after-enabling-suphp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SuExec server permission issue?</title>
		<link>http://www.theperfectarts.com/2010/07/suexec-server-permission-issue/</link>
		<comments>http://www.theperfectarts.com/2010/07/suexec-server-permission-issue/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 21:56:09 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Common errors]]></category>
		<category><![CDATA[Linux Permissions]]></category>
		<category><![CDATA[Server Security]]></category>
		<category><![CDATA[/etc/trueuserdomains file]]></category>
		<category><![CDATA[500 Internal Server Error]]></category>
		<category><![CDATA[cat /etc/trueuserdomains file]]></category>
		<category><![CDATA[cPanel users files/directories ownership]]></category>
		<category><![CDATA[files directories ownership]]></category>
		<category><![CDATA[permission issue]]></category>
		<category><![CDATA[set 644 permission]]></category>
		<category><![CDATA[set 755 permission]]></category>
		<category><![CDATA[set default permission for files/directories]]></category>
		<category><![CDATA[SuExec server permission issue]]></category>
		<category><![CDATA[trueuserdomains]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1077</guid>
		<description><![CDATA[After enabling SuExec on server most users getting &#8220;500 Internal Server Error&#8221; at that time refer following steps. 1st)  Correct cPanel users files/directories ownership. —— for i  in `cat /etc/trueuserdomains   &#124; awk ‘{print $2}’` do chown $i.$i /home/$i -R; chown $i.mail /home/$i/etc -R; chown $i.nobody /home/$i/public_html; done; —– 2nd) Correct permission for files and directories [...]]]></description>
			<content:encoded><![CDATA[<p>After enabling SuExec on server most users getting &#8220;500 Internal Server Error&#8221; at that time refer following steps.</p>
<p>1st)  Correct cPanel users files/directories ownership.</p>
<p>——</p>
<p><strong>for i  in `cat /etc/trueuserdomains   | awk ‘{print $2}’`<br />
do<br />
chown $i.$i /home/$i -R;<br />
chown $i.mail /home/$i/etc -R;<br />
chown $i.nobody /home/$i/public_html;<br />
done;</strong></p>
<p>—–</p>
<p>2nd) Correct permission for files and directories for cPanel users from shell but make sure that you logged in as root user and running following command in /home partition.</p>
<p><strong>—–</strong></p>
<p><strong>find . -type d  -perm 777 -exec chmod 755 {} \;</strong></p>
<p><strong>find . -type  f  -perm 644 -exec chmod 755 {} \;</strong></p>
<p><strong>—–</strong></p>
<p><script type="text/javascript">// <![CDATA[
 google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script></p>
<p><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2010/07/suexec-server-permission-issue/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Horde session issue?</title>
		<link>http://www.theperfectarts.com/2010/01/horde-session-issue/</link>
		<comments>http://www.theperfectarts.com/2010/01/horde-session-issue/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 14:33:39 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[E-mails issue]]></category>
		<category><![CDATA[Linux Permissions]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[/var/cpanel/userhomes/cpanelhorde]]></category>
		<category><![CDATA[cpanelhorde]]></category>
		<category><![CDATA[horde]]></category>
		<category><![CDATA[Horde session issue]]></category>
		<category><![CDATA[session directory problem]]></category>
		<category><![CDATA[session issue with horde]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=976</guid>
		<description><![CDATA[There is a very common  issue where Horde prevents access to webmail by repeatedly redirecting viewers to Language Selection screen. The following commands, executed as root, will solve these issues: root@server[~]#/usr/local/cpanel/bin/checkperlmodules root@server[~]#/scripts/fullhordereset root@server[~]#myisamchk -r /var/lib/mysql/horde/horde_sessionhandler.MYI If still you have problem then check the ownership for session directory present in /var/cpanel/userhomes/cpanelhorde directory. root@server[~]#ll /var/cpanel/userhomes/cpanelhorde drwx&#8211;x&#8211;x 4 [...]]]></description>
			<content:encoded><![CDATA[<p>There is a very common  issue where Horde prevents access to webmail by repeatedly redirecting viewers to Language Selection screen. The following commands, executed as root, will solve these issues:</p>
<p><span style="color: #800000;">root@server[~]#/usr/local/cpanel/bin/checkperlmodules<br />
root@server[~]#/scripts/fullhordereset<br />
root@server[~]#myisamchk -r /var/lib/mysql/horde/horde_sessionhandler.MYI</span></p>
<p>If still you have problem then check the ownership for session directory present in <span style="color: #800000;">/var/cpanel/userhomes/cpanelhorde</span> directory.</p>
<p><span style="color: #800000;">root@server[~]#ll /var/cpanel/userhomes/cpanelhorde</span></p>
<p><span style="color: #800000;">drwx&#8211;x&#8211;x 4 cpanelhorde cpanelhorde 4096 Jun  5  2009 ./<br />
drwx&#8211;x&#8211;x 7 root        root        4096 Dec 17 01:48 ../<br />
drwxr-x&#8212; 2 cpanelhorde cpanelhorde 4096 Jun  5  2009 mail/<br />
drwx&#8212;&#8212; 2 cpanelhorde cpanelhorde 4096 Jan 27 14:01 sessions/</span><br />
Session directory should be cpanelhorde.cpanelhorde ownership recursively</p>
<p><span style="color: #800000;"><br />
</span><br />
<script type="text/javascript">// <![CDATA[
 google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script></p>
<p><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2010/01/horde-session-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problem with cgi script?</title>
		<link>http://www.theperfectarts.com/2009/10/problem-with-cgi-script/</link>
		<comments>http://www.theperfectarts.com/2009/10/problem-with-cgi-script/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 03:29:22 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[Few good queries and suggestions]]></category>
		<category><![CDATA[Linux Permissions]]></category>
		<category><![CDATA[cgi script]]></category>
		<category><![CDATA[cgi script in ASCII Mode]]></category>
		<category><![CDATA[Perl in binary mode]]></category>
		<category><![CDATA[Problem with cgi script]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=304</guid>
		<description><![CDATA[Most of the time cgi script is not working properly after uploading by using FTP but script is working fine on local machine, why? Because you need to be upload cgi script in ASCII Mode and Perl in BINARY Mode to run it without any problem. &#169;2012 Linux Servers cPanel webhosting blog. All Rights Reserved..]]></description>
			<content:encoded><![CDATA[<p>Most of the time cgi script is not working properly after uploading by using FTP but script is working fine on local machine, why?</p>
<p>Because you need to be upload cgi script in <span style="color: #800000;">ASCII Mode</span> and Perl in <span style="color: #800000;">BINARY Mode</span> to run it without any problem.<br />
<script type="text/javascript">// <![CDATA[
 google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script></p>
<p><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2009/10/problem-with-cgi-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disbale Directory listing for folders?</title>
		<link>http://www.theperfectarts.com/2009/09/how-to-disbale-directory-listing-for-folders/</link>
		<comments>http://www.theperfectarts.com/2009/09/how-to-disbale-directory-listing-for-folders/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 22:47:48 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[Browser problems]]></category>
		<category><![CDATA[Enable private PHP]]></category>
		<category><![CDATA[Linux Permissions]]></category>
		<category><![CDATA[Directory listing for folders]]></category>
		<category><![CDATA[disbale Directory listing for folders]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=208</guid>
		<description><![CDATA[To disable the Directory listing for folders you need to create the .htaccess file under the each an every folder under which you want to disable the Directory listing and insert the following code in .htaccess file. &#8212;&#8212;&#8212;&#8212; Options -Indexes &#8212;&#8212;&#8212;&#8212; Please contact us if you have any problem or queries&#8230;.. &#169;2012 Linux Servers cPanel [...]]]></description>
			<content:encoded><![CDATA[<p>To disable the Directory listing for folders you need to create the .htaccess file under the each an every folder under which you want to disable the Directory listing and insert the following code in .htaccess file.</p>
<p>&#8212;&#8212;&#8212;&#8212;<br />
Options -Indexes<br />
&#8212;&#8212;&#8212;&#8212;</p>
<p>Please contact us if you have any problem or queries&#8230;..<br />
<script type="text/javascript">// <![CDATA[
 google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script></p>
<p><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2009/09/how-to-disbale-directory-listing-for-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is crontab correct permission?</title>
		<link>http://www.theperfectarts.com/2009/07/what-is-crontab-corect-permission/</link>
		<comments>http://www.theperfectarts.com/2009/07/what-is-crontab-corect-permission/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 19:38:44 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Linux Permissions]]></category>
		<category><![CDATA[correct permission issue with linux server]]></category>
		<category><![CDATA[crontab correct permission]]></category>
		<category><![CDATA[crontab correct permission issue]]></category>
		<category><![CDATA[crontab file issue]]></category>
		<category><![CDATA[crontab issue]]></category>
		<category><![CDATA[crontab permission]]></category>
		<category><![CDATA[issue with crontab correct permission]]></category>
		<category><![CDATA[linux server crontab issue]]></category>
		<category><![CDATA[set correct permission for crontab file]]></category>
		<category><![CDATA[what is correct permission for crontab]]></category>
		<category><![CDATA[what is crontab correct permission]]></category>
		<category><![CDATA[why we use crontab correct permission]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=59</guid>
		<description><![CDATA[The crontab correct permission is 4755 and you can check the crontab binary path and set the correct permission by using the following command from the shell. Login in server as root user. root@admin#[~] # which crontab /usr/bin/crontab chmod 4755 /usr/bin/crontab &#169;2012 Linux Servers cPanel webhosting blog. All Rights Reserved..]]></description>
			<content:encoded><![CDATA[<p>The crontab correct permission is 4755 and you can check the crontab binary path and set the correct permission by using the following command from the shell.</p>
<p>Login in server as root user.</p>
<p><strong><span style="color: #800000;">root@admin#[~] # <span class="Apple-style-span" style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px; white-space: pre;">which crontab</span></span></strong></p>
<pre><strong><span style="color: #800000;">/usr/bin/crontab</span></strong></pre>
<p><span style="color: #800000;"><strong>chmod 4755 /usr/bin/crontab</strong></span></p>
<p><span style="color: #ffffff;"><br />
</span></p>
<p><script type="text/javascript">// <![CDATA[
 google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script></p>
<p><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2009/07/what-is-crontab-corect-permission/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check world-writable files on Server?</title>
		<link>http://www.theperfectarts.com/2009/07/how-to-check-world-writable-files-on-server/</link>
		<comments>http://www.theperfectarts.com/2009/07/how-to-check-world-writable-files-on-server/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 20:42:19 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Linux Permissions]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=34</guid>
		<description><![CDATA[You can check the world-writable files on your Server by using the following command from shell. admin@root# find / -perm -2 ! -type l -ls &#169;2012 Linux Servers cPanel webhosting blog. All Rights Reserved..]]></description>
			<content:encoded><![CDATA[<p>You can check the world-writable files on your Server by using the following command from shell.</p>
<p><strong><span style="color: #800000;">admin@root# find / -perm -2 ! -type l -ls</span></strong></p>
<p><script type="text/javascript">// <![CDATA[
 google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script></p>
<p><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2009/07/how-to-check-world-writable-files-on-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check SUID/SGID programs on your Server?</title>
		<link>http://www.theperfectarts.com/2009/07/how-to-check-suidsgid-programs-on-your-server/</link>
		<comments>http://www.theperfectarts.com/2009/07/how-to-check-suidsgid-programs-on-your-server/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 20:38:52 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Linux Permissions]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=28</guid>
		<description><![CDATA[You can check SUID/SGID programs on your systemSUID/SGID programs on your Server by using following command from your shell. admin@root# find / -type f \( -perm -04000 -o -perm -02000 \) &#169;2012 Linux Servers cPanel webhosting blog. All Rights Reserved..]]></description>
			<content:encoded><![CDATA[<p>You can check SUID/SGID programs on your systemSUID/SGID programs on your Server by using following command from your shell.</p>
<p><strong><span style="color: #800000;">admin@root# find / -type f \( -perm -04000 -o -perm -02000 \)</span></strong></p>
<p><script type="text/javascript">// <![CDATA[
 google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script></p>
<p><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2009/07/how-to-check-suidsgid-programs-on-your-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

