<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Testing HTTP/HTTPS through telnet/openssl</title>
	<atom:link href="http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/</link>
	<description>Ramblings of a Utah System Administrator</description>
	<lastBuildDate>Thu, 26 Aug 2010 16:31:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kevin Pendleton</title>
		<link>http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/comment-page-1/#comment-255</link>
		<dc:creator>Kevin Pendleton</dc:creator>
		<pubDate>Tue, 22 Sep 2009 22:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/#comment-255</guid>
		<description>Testing TLS:

openssl s_client -starttls smtp -crlf -connect mail.hostname.com:587

Force TLSv1:

openssl s_client -starttls smtp -crlf -tls1 -connect mail.hostname.com:587</description>
		<content:encoded><![CDATA[<p>Testing TLS:</p>
<p>openssl s_client -starttls smtp -crlf -connect mail.hostname.com:587</p>
<p>Force TLSv1:</p>
<p>openssl s_client -starttls smtp -crlf -tls1 -connect mail.hostname.com:587</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tommy McNeely</title>
		<link>http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/comment-page-1/#comment-189</link>
		<dc:creator>Tommy McNeely</dc:creator>
		<pubDate>Thu, 05 Mar 2009 00:22:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/#comment-189</guid>
		<description>Also, if your password has some &quot;special&quot; characters in it, it can be a pain with both the shell and perl trying to have their way with it. Here is an example on how to use openssl itself to encode it.

$ echo &#039;UserName:P@$$w()Rd!&#039; &#124; openssl base64 -e
VXNlck5hbWU6UEAkJHcoKVJkIQo=</description>
		<content:encoded><![CDATA[<p>Also, if your password has some &#8220;special&#8221; characters in it, it can be a pain with both the shell and perl trying to have their way with it. Here is an example on how to use openssl itself to encode it.</p>
<p>$ echo &#8216;UserName:P@$$w()Rd!&#8217; | openssl base64 -e<br />
VXNlck5hbWU6UEAkJHcoKVJkIQo=</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Pendleton</title>
		<link>http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/comment-page-1/#comment-185</link>
		<dc:creator>Kevin Pendleton</dc:creator>
		<pubDate>Wed, 25 Feb 2009 04:51:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/#comment-185</guid>
		<description>Cool, thanks for pointing out what I did wrong, Mike.  Not sure why I was thinking that I needed to crypt it first.</description>
		<content:encoded><![CDATA[<p>Cool, thanks for pointing out what I did wrong, Mike.  Not sure why I was thinking that I needed to crypt it first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Meyer</title>
		<link>http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/comment-page-1/#comment-183</link>
		<dc:creator>Mike Meyer</dc:creator>
		<pubDate>Tue, 24 Feb 2009 19:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/#comment-183</guid>
		<description>You&#039;re using to much encryption on your basic auth. Here&#039;s the perl line that works:

perl -MMIME::Base64 -e &#039;print encode_base64(&quot;username:password&quot;)&#039;

(yes, the password is plain text that&#039;s just base 64 encoded - it has basically no security.)

      &lt;mike</description>
		<content:encoded><![CDATA[<p>You&#8217;re using to much encryption on your basic auth. Here&#8217;s the perl line that works:</p>
<p>perl -MMIME::Base64 -e &#8216;print encode_base64(&#8220;username:password&#8221;)&#8217;</p>
<p>(yes, the password is plain text that&#8217;s just base 64 encoded &#8211; it has basically no security.)</p>
<p>      &lt;mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Pendleton</title>
		<link>http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/comment-page-1/#comment-66</link>
		<dc:creator>Kevin Pendleton</dc:creator>
		<pubDate>Fri, 11 Jan 2008 21:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/#comment-66</guid>
		<description>And here&#039;s the commands to test imap (the test1-3 words are just tags required for imap):

test1 login username password
test2 list &quot;Inbox&quot; &quot;*&quot;
test3 logout</description>
		<content:encoded><![CDATA[<p>And here&#8217;s the commands to test imap (the test1-3 words are just tags required for imap):</p>
<p>test1 login username password<br />
test2 list &#8220;Inbox&#8221; &#8220;*&#8221;<br />
test3 logout</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Pendleton</title>
		<link>http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/comment-page-1/#comment-61</link>
		<dc:creator>Kevin Pendleton</dc:creator>
		<pubDate>Mon, 03 Dec 2007 00:30:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.utahsysadmin.com/2007/11/08/testing-httphttps-through-telnetopenssl/#comment-61</guid>
		<description>To test pop3/tls (secure pop3):

openssl s_client -connect mail.hostname.com:995

Then the usual pop3 commands:

user user@domainname.com
pass password
list
quit</description>
		<content:encoded><![CDATA[<p>To test pop3/tls (secure pop3):</p>
<p>openssl s_client -connect mail.hostname.com:995</p>
<p>Then the usual pop3 commands:</p>
<p>user <a href="mailto:user@domainname.com">user@domainname.com</a><br />
pass password<br />
list<br />
quit</p>
]]></content:encoded>
	</item>
</channel>
</rss>
