<?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 Admin Zone &#187; ssl</title>
	<atom:link href="http://linuxadminzone.com/tag/ssl/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxadminzone.com</link>
	<description>Adding more reasons to celebrate Open Source.</description>
	<lastBuildDate>Wed, 09 May 2012 10:17:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Disable ssl ver 2 in apache for pci compliance</title>
		<link>http://linuxadminzone.com/disable-ssl-ver-2-in-apache-for-pci-compliance/</link>
		<comments>http://linuxadminzone.com/disable-ssl-ver-2-in-apache-for-pci-compliance/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 16:36:51 +0000</pubDate>
		<dc:creator>jagbir</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Web Server]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://linuxadminzone.com/?p=157</guid>
		<description><![CDATA[You need to disable SSL ver 2 and enable SSL ver 3 in apache for PCI compliance. Its very easy to do. Following settings will set SSL ver 3 and also disable older/unsecure cipher suite in Redhat/centos/fedora Linux server: 1. Open /etc/httpd/conf.d/ssl.conf and add or if these lines already there, edit them as per follows: [...]]]></description>
			<content:encoded><![CDATA[<p>You need to disable SSL ver 2 and enable SSL ver 3 in apache for PCI compliance. Its very easy to do. Following settings will set SSL ver 3 and also disable older/unsecure cipher suite in Redhat/centos/fedora Linux server:<br />
1. Open /etc/httpd/conf.d/ssl.conf and add or if these lines already there, edit them as per follows:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">## Disbale SSLv2 and enable SSLv3</span>
SSLProtocol <span style="color: #660033;">-All</span> +SSLv3 +TLSv1
SSLCipherSuite HIGH:<span style="color: #000000; font-weight: bold;">!</span>SSLv2:<span style="color: #000000; font-weight: bold;">!</span>ADH:<span style="color: #000000; font-weight: bold;">!</span>aNULL:<span style="color: #000000; font-weight: bold;">!</span>eNULL:<span style="color: #000000; font-weight: bold;">!</span>NULL</pre></div></div>

<p>2. Reload httpd service to apply the new settings:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># /etc/init.d/httpd reload</span></pre></div></div>

<p>3. Verify the settings by connecting to SSL ver 3 protocol:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># openssl s_client -connect localhost:443 -ssl3</span></pre></div></div>

<p>It should connect. you can also try connecting to SSL ver 2 which should result in error. Request the PCI test again and it should not complain about Apache SSL related issues. </p>
]]></content:encoded>
			<wfw:commentRss>http://linuxadminzone.com/disable-ssl-ver-2-in-apache-for-pci-compliance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

