<?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>Web Server Hosting Knowledge base &#187; Debian dedicated server</title>
	<atom:link href="http://www.bodhost.com/web-hosting/tag/debian-dedicated-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bodhost.com/web-hosting</link>
	<description></description>
	<lastBuildDate>Fri, 10 Feb 2012 04:31:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Debian Dedicated Web Server Hosting and Security</title>
		<link>http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/</link>
		<comments>http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/#comments</comments>
		<pubDate>Mon, 04 May 2009 02:16:45 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[Dedicated Server Hosting]]></category>
		<category><![CDATA[vps hosting]]></category>
		<category><![CDATA[Debian dedicated server]]></category>
		<category><![CDATA[Dedicated Web Server Hosting]]></category>

		<guid isPermaLink="false">http://www.bodhost.com/web-hosting/?p=961</guid>
		<description><![CDATA[Debian Dedicated Web Server Hosting Security Internet gateways are known to have the most threats in terms of server security. Basically, the traffic that is allowed through the network. When we speak of security, the first thing that comes into our mind is the storage of confidential data such as Credit Card nos. etc. Also, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Debian Dedicated Web Server Hosting Security</strong></p>
<p>Internet gateways are known to have the most threats in terms of server security. Basically, the traffic that is allowed through the network. When we speak of security, the first thing that comes into our mind is the storage of confidential data such as Credit Card nos. etc.</p>
<p>Also, Virus such as Worms or Trojans and preventions of any intrusions are part in Web Server security. Banking security, prevention of hacking attempts are all included in security provisioning. Any Web server that is connected to the internet has a direct threat.</p>
<p>In case of server breach, it can be used for spams, hacking other servers and running illlegal activities on the server. Infact, many illegal activities include DOS attacks to other web servers. A hacker can seriously damage a server without even the server owner knowing about it. We will learn more on Debian Server Security in this post. We can also set &#8220;honey pot&#8221; when we speak of server security. In this case, hackers are directly attracted to a honey pot. However, prior to setup a honey pot, make sure you have remote backup space in case to start from the basic. The first is to prevent unauthorized access to the server. Following are some of the security practices on servers :</p>
<p>- Operating System Security ardening<br />
- Application configuration<br />
- Perimeter security<br />
- Physical security</p>
<p>Operating System Security Hardening :</p>
<p>- Disable all default accounts<br />
- File system security configurations<br />
- Strong and long accounts password<br />
- In order to disable accounts, change default shell to /bin/false<br />
- Change startup configuration<br />
- Disable TCP/IP ports that are run to scan ports.<br />
- File system security<br />
- No usage of common names for groups to reduce the risk of hacks<br />
- TCP wrappers to run Internet-related daemons<br />
- Appropriate hosts.allow Configuration<br />
- Not running GUI<br />
- Log off from Server consoles when not required</p>
<p>Configurations of Applications :</p>
<p>Applications installation and configurations must be done with great care as they can be the source to server hack. Insecure applications can cause harm to your Debian dedicated web server. Applications may have vulnerability to buffer overflow attacks which provides access to hackers and security threats.</p>
<p>It&#8217;s advisable that you should notice the following points :</p>
<p>- Securing insecure applications<br />
- Check for Application updates<br />
- Application Port Opening &#8211; Only which is required<br />
- Secure CGI Scripts<br />
- SSI Security management<br />
- Secure FTP Access for Uploads<br />
- Blocking IPs<br />
- Latest Security Measures.</p>
<p>With DebianOS, disable open ports which are not required through by renaming their S symlinks in runlevel directory. Debian boots into runlevel 2 default by command : cd /etc/rc2.d</p>
<p>Search for symlink S20ssh which opens port for remote console and enhnaces security. Rename symlinks with command : mv S20ssh _S20ssh and this can be done for S20exim4, S20lpd, and S21nfs-common. Run netstat -ap command for /sbin/portmap is the applications has sunrpc port 111 open. NFS requires RPC. We can disable portmap in this case. We can rename symlinks with the following command :</p>
<p>mv /etc/rc2.d/S18portmap /etc/rc2.d/_S18portmap<br />
mv /etc/rcS.d/S43portmap /etc/rcS.d/_S43portmap</p>
<p>Once done, reboot your Debian Dedicated Web Server and then run netstat -a</p>
<p>- Configurations of chroot jail will allow applications directory appear from root of file system. Access to only applications that will reduce the risk to access the entire file system. Apache web server running on DebianOS can easily setup jail as we can use Apache module to complete the task. We can add one line to the configuration file by the following command :</p>
<p>apt-get install libapache-mod-chroot</p>
<p>This will install Apache modules and in case to select from packages or existing modules.conf, add the following link to modules.conf file :</p>
<p>/etc/apache/modules.conf file:</p>
<p>LoadModule choot_module /usr/lib/apache/1.3/mod_chroot.so</p>
<p>In this case, logs, CGI and directories are the same and we don&#8217;t need to create new directories or make any changes to the ownership of the directories.</p>
<p>Chroot Apache applications, Apache IDS module which will search for any threats and will block them. You can simply add the following line to /etc/apt/sources.list file :</p>
<p>http://etc.inittab.org/~agi/debian/libapache-mod-security/etch/</p>
<p>Once added, you can run the following command :</p>
<p>apt-get update</p>
<p>Apt will be aware of tge package at the website. In order to install and enable module, enter the following command :</p>
<p>apt-get install libapache-mod-security</p>
<p>Add the following line to /etc/apache/modules.conf :</p>
<p>LoadModule security_module /usr/lib/apache/1.3/mod_security.so</p>
<p>It will search for any threats, http / PHP requests and block them. We can also add rules to httpd.conf file in order to let it know to as what needs to be checked.</p>
<p>For starters, add the following lines to the bottom of your httpd.conf file:</p>
<p># *** MODULE CONFIG<br />
# Turn the filtering engine On or Off<br />
SecFilterEngine On<br />
# Make sure that URL encoding is valid<br />
SecFilterCheckURLEncoding On<br />
# Unicode encoding check<br />
SecFilterCheckUnicodeEncoding Off<br />
# Only allow bytes from this range<br />
SecFilterForceByteRange 0 255<br />
# Only log suspicious requests<br />
SecAuditEngine RelevantOnly<br />
# Server masking -<br />
# Don&#8217;t tell them it&#8217;s an Apache installation<br />
SecServerSignature &#8220;Lotus-Domino/6.x&#8221;<br />
# The name of the audit log file<br />
SecAuditLog /var/log/apache/audit.log<br />
# Debug level set to a minimum<br />
SecFilterDebugLog /var/log/apache/modsec_debug.log<br />
SecFilterDebugLevel 0<br />
# Should mod_security inspect POST payloads<br />
SecFilterScanPOST On<br />
# By default log and deny suspicious requests<br />
# with HTTP status 403<br />
SecFilterDefaultAction &#8220;deny,log,status:403&#8243;</p>
<p>Adding Fileter rules :</p>
<p>SecFilter /etc/passwd<br />
SecFilter /bin/ls<br />
SecFilter /bin/uname<br />
SecFilter /usr/bin/whoami<br />
SecFilter cd\x20/tmp<br />
SecFilter wget\x20<br />
# Block Santy.A worm<br />
SecFilterSelective ARG_highlight %27<br />
# Block drop table SQL injection attack<br />
SecFilter &#8220;drop[[:space:]]table&#8221;<br />
# Only accept request encodings we know how to handle<br />
# we exclude GET requests from this because some (automated)<br />
# clients supply &#8220;text/html&#8221; as Content-Type<br />
SecFilterSelective REQUEST_METHOD &#8220;!^(GET|HEAD)$&#8221; chain<br />
SecFilterSelective HTTP_Content-Type \<br />
&#8220;!(^application/x-www-form-urlencoded$|^multipart/form-data;)&#8221;<br />
# Do not accept GET or HEAD requests with bodies<br />
SecFilterSelective REQUEST_METHOD &#8220;^(GET|HEAD)$&#8221; chain<br />
SecFilterSelective HTTP_Content-Length &#8220;!^$&#8221;<br />
# Require browser headers from all user agents<br />
SecFilterSelective &#8220;HTTP_USER_AGENT|HTTP_HOST&#8221; &#8220;^$&#8221;<br />
# Require Content-Length to be provided with every POST request<br />
SecFilterSelective REQUEST_METHOD &#8220;^POST$&#8221; chain<br />
SecFilterSelective HTTP_Content-Length &#8220;^$&#8221;<br />
# Don&#8217;t accept transfer encodings we know we don&#8217;t handle<br />
SecFilterSelective HTTP_Transfer-Encoding &#8220;!^$&#8221;</p>
<p>Once done, please make sure you restart Apache with /etc/init.d/apache restart</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;title=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Del.icio.us" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;title=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To digg" alt="Add 'Debian Dedicated Web Server Hosting and Security' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Debian+Dedicated+Web+Server+Hosting+and+Security&amp;u=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/" title="Add 'Debian Dedicated Web Server Hosting and Security' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To FURL" alt="Add 'Debian Dedicated Web Server Hosting and Security' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;title=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To reddit" alt="Add 'Debian Dedicated Web Server Hosting and Security' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Debian+Dedicated+Web+Server+Hosting+and+Security&amp;url=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;version=0.7" title="Add 'Debian Dedicated Web Server Hosting and Security' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Feed Me Links" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/" title="Add 'Debian Dedicated Web Server Hosting and Security' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Technorati" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;t=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Yahoo My Web" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;h=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Newsvine" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;title=Debian+Dedicated+Web+Server+Hosting+and+Security&amp;description=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Ma.gnolia" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;title=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Stumble Upon" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;title=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Google Bookmarks" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/" title="Add 'Debian Dedicated Web Server Hosting and Security' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Squidoo" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;title=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Blogmarks" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/" title="Add 'Debian Dedicated Web Server Hosting and Security' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Bloglines" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;T=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Propeller" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;title=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Live-MSN" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Debian+Dedicated+Web+Server+Hosting+and+Security&amp;url=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/" title="Add 'Debian Dedicated Web Server Hosting and Security' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To SlashDot" alt="Add 'Debian Dedicated Web Server Hosting and Security' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;t=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To FaceBook" alt="Add 'Debian Dedicated Web Server Hosting and Security' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;title=Debian+Dedicated+Web+Server+Hosting+and+Security" title="Add 'Debian Dedicated Web Server Hosting and Security' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Mixx" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Debian+Dedicated+Web+Server+Hosting+and+Security&amp;c=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/" title="Add 'Debian Dedicated Web Server Hosting and Security' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To MySpace" alt="Add 'Debian Dedicated Web Server Hosting and Security' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/&amp;title=Debian+Dedicated+Web+Server+Hosting+and+Security&amp;srcURL=http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/" title="Add 'Debian Dedicated Web Server Hosting and Security' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Google Buzz" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'Debian Dedicated Web Server Hosting and Security' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'Debian Dedicated Web Server Hosting and Security' To Social Bookmarking Reloaded" alt="Add 'Debian Dedicated Web Server Hosting and Security' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Debian+Dedicated+Web+Server+Hosting+and+Security+http%3A%2F%2Ftinyurl.com%2F2czmaku" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Debian+Dedicated+Web+Server+Hosting+and+Security+http%3A%2F%2Ftinyurl.com%2F2czmaku" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/debian-dedicated-web-hosting-and-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

