<?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>IIXMedia.com - Blog &#187; Hosting</title>
	<atom:link href="http://iixmedia.com/blog/category/hosting/feed" rel="self" type="application/rss+xml" />
	<link>http://iixmedia.com/blog</link>
	<description>Indonesia Hosting &#38; Media Center</description>
	<lastBuildDate>Thu, 18 Mar 2010 09:13:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>10 Tips for Tune and Secure your cPanel Server</title>
		<link>http://iixmedia.com/blog/10-tips-for-tune-and-secure-your-cpanel-server.im</link>
		<comments>http://iixmedia.com/blog/10-tips-for-tune-and-secure-your-cpanel-server.im#comments</comments>
		<pubDate>Thu, 18 Mar 2010 09:13:58 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://iixmedia.com/blog/?p=233</guid>
		<description><![CDATA[Please note that these tips are suggestions only and cPanel takes no  responsibility for modifications to individual servers, or the security  practices of individual servers. Server security is a collection of  compromises, as any server that allows connections could be insecure.  These tips are to be followed at your own risk.
1) [...]]]></description>
			<content:encoded><![CDATA[<p>Please note that these tips are suggestions only and cPanel takes no  responsibility for modifications to individual servers, or the security  practices of individual servers. Server security is a collection of  compromises, as any server that allows connections could be insecure.  These tips are to be followed at your own risk.</p>
<div>1) <strong>Use secure passwords!</strong></div>
<div>Insecure  passwords are the most common security vulnerability for most servers.  If an account password is insecure and is compromised, client sites can  be defaced, infected, or used to spread viruses. Having secure passwords  is paramount to having a secure server.</div>
<div>You can edit  /etc/login.defs to configure many password options on your system. It is  well do*****ented.</div>
<div>Generally, a password utilizing at  least 8 characters including alphanumeric and grammatical symbols is  sufficient. Never use passwords based upon dictionary words or  significant dates. If you are uncertain about the security of a  password, then you can test it using <a href="http://www.openwall.com/john/">JTR cracker</a>. If a password can  be broken in a few hours, then it is probably too insecure and should  not be used. You can also install tools like <a href="http://www.openwall.com/passwdqc/">pam_passwdqc</a> to check the  strength of passwords.</div>
<div>2) <strong>Secure SSH </strong></div>
<div>Enable  public key authentication for SSH and disable password authentication <a href="http://www.cpanel.net/security/publickeyauth.htm">read more  &gt;&gt;</a></div>
<div>Move SSH access to a different port. People  are looking for port 22 as a possible way to access your servers. Moving  SSH to a different port will add a simple way to deter those without  specific knowledge of your server from easily discovering your SSH port.</div>
<div>You  can modify the port that SSH runs on within /etc/ssh/sshd_config.  Change the line that says #Port 22 to a different port such as: <strong>Port  1653</strong><em>. </em>Make sure to keep your current SSH session open  when testing the new port so you can change back to port 22 if the new  port doesn&#8217;t work.</div>
<div>You should always use SSHv2 only as  SSHv1 is not secure. Make sure to change the line in  /etc/ssh/sshd_config that says #Protocol 2,1 to <strong>Protocol 2</strong>.</div>
<div>You may also wish to set Shell Resource Limits for you  users to prevent applications and scripts from using all up your  resources and taking down your server. You can configure shell resource  limits in <em>/etc/security/limits.conf</em> on most Linux systems.</div>
<div>3)  <strong>Secure Apache</strong></div>
<div>The most readily available  way to access a web server, is of course, the web server application.  It is important to take steps to secure your Apache installation.</div>
<div>One  of the best tools for preventing malicious Apache use is mod_security.  This can be installed in <strong>Addon Modules</strong> in the <strong>cPanel</strong> section of WebHost Manager. You can find information about mod_security  at <a href="http://www.modsecurity.org/">http://www.modsecurity.org/</a>.</div>
<div>When  compiling Apache, you should include suexec to ensure that CGI  applications and scripts run as the user that owns / executes them. This  will help identify where malicious scripts are and who is running them.  It will also enforce permission and environment controls.</div>
<div>We  also recommend compiling Apache + PHP with PHPsuexec. PHPsuexec forces  all PHP scripts to run as the user who owns the script. This means that  you will be able to identify the owner of all PHP scripts running on  your server. If one is malicious, you will be able to find it&#8217;s owner  quickly and resolve the issue. To compile Apache + PHP with PHPsuexec,  select the PHPSuexec option in the Apache Upgrade interface in WHM or  when running /scripts/easyapache from the command line.</div>
<div>You  should enable PHP&#8217;s open_basedir protection. This protection will  prevent users from open files outside of their home directory with PHP.  This can be enabled in <strong>Tweak Security</strong> within WebHost  Manager.</div>
<div>You may also wish to include safe_mode for PHP  5.x and below. Safe_mode ensures that the owner of a PHP script matches  the owner of any files to be operated on. You can enable safe_mode by  changing the safe_mode = line in php.ini to <strong>safe_mode = On</strong>.</div>
<div>4) <strong>Secure your /tmp partition </strong></div>
<div>We  recommend that you use a separate partition for /tmp that is mounted  with<em> nosetuid</em>. Nosetuid will force a process to run with the  privileges of it&#8217;s executor. You may also wish to mount /tmp with <em>noexec</em> after installing cPanel. Check the mount man page for more information.</div>
<div>Also,  Running /scripts/securetmp will mount your /tmp partition to a  temporary file for extra security.</div>
<div>5) <strong>Upgrade  your mail to maildir format</strong></div>
<div>Maildir format adds  extra security and speed to your mail system. Newer installs use maildir  by default. If you&#8217;re running an older copy of cPanel, you&#8217;ll probably  want to upgrade using <em>/scripts/convert2maildir</em>. Make sure to  back up your current mail before converting to maildir, this can be done  within /scripts/convert2maildir. If you see <strong>maildir is enabled </strong>when  running /scripts/convert2maildir, you are already using maildir, and  will not need to convert.</div>
<div>6) <strong>Lock down your  system&#8217;s compilers</strong></div>
<div>Most users do not require the  use of C and C++ compilers. You can use the <strong>Compilers Tweak </strong>within  <strong>Tweak Security</strong> in WebHost Manager to turn off use of  the compilers for all unprivileged users, or to disable them for  specific users only. Many pre-packaged exploits require working  compilers. Disabling compilers will help protect against many exploits.</div>
<div>7)<strong> Turn off unused services and daemons</strong></div>
<div>Any service  or daemon that allows a connection to be established to your server is  away for hackers to gain access. To reduce security risks, you should  disable all services and daemons that are not being used.</div>
<div>For  Daemons on Linux:</div>
<div>Check /etc/xinetd.conf for services you  are not using. For example, cupsd (printing daemon) and nfs/statd  (network file system daemons) are not used on many systems.</div>
<div>For  Services:</div>
<div>Go to the <strong>Service Manager </strong>in  the <strong>Service Configuration</strong> section of WHM and disable  any services that you are not using.</div>
<div> <img src='http://iixmedia.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> <strong>Monitor  your system</strong></div>
<div>It is important to be up to date on  what is going on with your system. Make sure that you know when accounts  are being created, what software is being installed, when software  needs updates, etc.</div>
<div>Check your system frequently to  ensure it is functioning in the way you expect. Make sure to check  things like:</div>
<div><strong>netstat -anp</strong> : Look for  programs attached to ports that you did not install / authorize</div>
<div><strong>find  / ( -perm -a+w ) ! -type l &gt;&gt; world_writable.txt</strong> <strong>: </strong>Look at world_writable.txt to see all world writable files and  directories. This will reveal locations where an attacker can store  files on your system. NOTE: Fixing permissions on some PHP/CGI scripts  that are not properly coded will break them.</div>
<div><strong>find /  -nouser -o -nogroup </strong><strong>&gt;&gt; no_owner.txt </strong>:  Look at no_owner for all files that do not have a user or group  associated with them. All files should be owned by a specific user or  group to restrict access to them.</div>
<div><strong>ls /var/log/</strong>:  There are many different logs on your system which can be valuable  resources. Check your system logs, apache logs, mail logs, and other  logs frequently to make sure your system is functioning as expected.</div>
<div>There  are many readily available utilities to monitor your system and to  detect rootkits, backdoors, etc. Here are some commonly available  utilities:</div>
<ul>
<li>Tripwire &#8211; Monitors checksums of files and  reports changes.<br />
http://tripwire.com or  http://sourceforge.net/projects/tripwire</li>
<li>Chrookit &#8211; Scans for  common rootkits, backdoors, etc.<br />
http://www.chkrootkit.org</li>
<li>Rkhunter  &#8211; Scans for common rootkits, backdoors, etc.<br />
http://www.rootkit.nl/projects/rootkit_hunter.html</li>
<li>Logwatch &#8211; Monitors and reports on daily system activity.<br />
http://logwatch.org</li>
</ul>
<div>9)<strong> Enable a Firewall</strong></div>
<div>Installing  a firewall to limit access to your server is useful. Removing all  unused software on your system is more useful. Before you have the  chance to remove all unused services and daemons, or the chance to  figure out which services / daemons are unused, you can enable a  firewall to prevent unwanted access.</div>
<div>The following will  show the ports cPanel and WHM need open to function properly and what  the port is used for:</div>
<div><a href="http://faq.cpanel.net/show.cgi?qa=104689180407630">http://faq.cpanel.net/show.cgi?qa=104689180407630</a></div>
<div>If  you are using APF, see:</div>
<div><a href="http://faq.cpanel.net/show.cgi?qa=108499296901804">http://faq.cpanel.net/show.cgi?qa=108499296901804</a></div>
<div>Please note that these ports are for all services that  can be used by cPanel and WHM, you may or may not be using all of these  services or other services and should adjust your rules accordingly.</div>
<div>Remember  to set a cron job to disable your firewall every 5 minutes when testing  your rules, or you may be locked out of your server.</div>
<div>10)  <strong>Stay up to date</strong></div>
<div>It is important to make  sure that you are running the latest stable versions of the software on  your system to ensure that it has been patched of any security issues  that past versions may be susceptible to. Make sure to keep on top of  updates for:</div>
<ul>
<li>Kernel</li>
<li>cPanel and WHM*</li>
<li>User  Applications (bulletin boards, CMS, blog engines, etc)**</li>
<li>System  Software*</li>
</ul>
<div>*These can be set to automatically update  in WebHost Manager under <strong>Update Config </strong>in the <strong>Server  Configuration</strong> section.</div>
<div>**You can upgrade all  cPAddon installations through <strong>Manage cPAddons</strong> in the <strong>cPanel</strong> section of WebHost Manager.</div>
]]></content:encoded>
			<wfw:commentRss>http://iixmedia.com/blog/10-tips-for-tune-and-secure-your-cpanel-server.im/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sekarang orderan anda bisa disetup Otomatis dalam 3 langkah saja</title>
		<link>http://iixmedia.com/blog/sekarang-orderan-anda-bisa-disetup-otomatis-dalam-3-langkah-saja.im</link>
		<comments>http://iixmedia.com/blog/sekarang-orderan-anda-bisa-disetup-otomatis-dalam-3-langkah-saja.im#comments</comments>
		<pubDate>Fri, 03 Jul 2009 02:41:22 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Domain]]></category>
		<category><![CDATA[Fantastico]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Member]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[inovation]]></category>

		<guid isPermaLink="false">http://iixmedia.com/blog/?p=210</guid>
		<description><![CDATA[Bagaimana anda biasanya melakukan tahapan agar hostingan anda aktif?
Hmm, umumnya hosting lain mempunyai beberapa tahapan seperti berikut:

Melakukan order
Melakukan pembayaran
Konfirmasi Pembayaran
Menunggu aktifasi dari hosting bersangkutan
Dan mengecek informasi cPanel lewat email

Nah itu kan biasa&#8230;
Bagaimana kalau iixmedia menawarkan 3 langkah saja untuk anda:

Melakukan order
Melakukan pembayaran
Konfirmasi Pembayaran
Menunggu aktifasi dari hosting bersangkutan
Dan mengecek informasi cPanel lewat email

Artinya, anda cukup:

Melakukan order
Melakukan [...]]]></description>
			<content:encoded><![CDATA[<p>Bagaimana anda biasanya melakukan tahapan agar hostingan anda aktif?</p>
<p>Hmm, umumnya hosting lain mempunyai beberapa tahapan seperti berikut:</p>
<ol>
<li>Melakukan order</li>
<li>Melakukan pembayaran</li>
<li>Konfirmasi Pembayaran</li>
<li>Menunggu aktifasi dari hosting bersangkutan</li>
<li>Dan mengecek informasi cPanel lewat email</li>
</ol>
<p>Nah itu kan biasa&#8230;</p>
<p>Bagaimana kalau iixmedia menawarkan 3 langkah saja untuk anda:</p>
<ol>
<li>Melakukan order</li>
<li>Melakukan pembayaran</li>
<li><span style="text-decoration: line-through;">Konfirmasi Pembayaran</span></li>
<li><span style="text-decoration: line-through;">Menunggu aktifasi dari hosting bersangkutan</span></li>
<li>Dan mengecek informasi cPanel lewat email</li>
</ol>
<p>Artinya, anda cukup:</p>
<ol>
<li>Melakukan order</li>
<li>Melakukan pembayaran</li>
<li>Dan mengecek informasi cPanel lewat email</li>
</ol>
<p>Tanpa perlu konfirmasi kepada kami..</p>
<p>Nah ini baru bukan biasa&#8230; he2</p>
<p>Yap,</p>
<p>Saat ini anda dapat lebih menghemat waktu anda tanpa perlu menunggu kami aktifasi, karena sistem kami akan melakukan pengecekan pembayaran anda langsung ke bank pembayaran, sehingga apabila pembayaran anda terdeteksi maka pesanan anda akan langsung diaktifkan.</p>
<p>Adapun ketentuannya dalam setiap pembayaran anda harus menyertakan keterangan:</p>
<p><code>INVOICE-[nomor-invoice]</code></p>
<p>contoh:</p>
<p><code>INVOICE-2009</code></p>
<p>Gampang bukan <img src='http://iixmedia.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  jadi sangat menghemat waktu anda dan yang penting lebih simple</p>
<p>Sekali lagi saatnya hosting berinovasi dan tunggu inovasi lain dari kami <img src='http://iixmedia.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>&#8212;-<br />
FYI: Saat ini tersedia hanya untuk transfer malalui bank BCA, untuk yang lainnya dalam pengerjaan</p>
]]></content:encoded>
			<wfw:commentRss>http://iixmedia.com/blog/sekarang-orderan-anda-bisa-disetup-otomatis-dalam-3-langkah-saja.im/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

