<?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>CodeWord: Apokalyptik &#187; Security</title>
	<atom:link href="http://blog.apokalyptik.com/category/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.apokalyptik.com</link>
	<description>The random things that spew forth from my brain...</description>
	<lastBuildDate>Tue, 27 Dec 2011 17:43:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19620</generator>
		<item>
		<title>Debian, ProFTPD,  FTPS, TLS, SSL, and SSL23_GET_SERVER_HELLO:unknown protocol</title>
		<link>http://blog.apokalyptik.com/2011/12/27/debian-proftpd-ftps-tls-ssl-and-ssl23_get_server_hellounknown-protocol/</link>
		<comments>http://blog.apokalyptik.com/2011/12/27/debian-proftpd-ftps-tls-ssl-and-ssl23_get_server_hellounknown-protocol/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 17:43:19 +0000</pubDate>
		<dc:creator>apokalyptik</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ProFTPD]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[tls]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[FTPS]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[TLS]]></category>

		<guid isPermaLink="false">http://blog.apokalyptik.com/?p=953</guid>
		<description><![CDATA[Recently I needed to test against an FTPS server. No big deal, I thought to myself, I&#8217;ll just set one up real quick. Boy did I end up having a hard time with that. Not because the task was actually hard but because there&#8217;s a bit of a general haziness about the whole idea of [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I needed to test against an FTPS server.  No big deal, I thought to myself, I&#8217;ll just set one up real quick.  Boy did I end up having a hard time with that.  Not because the task was actually hard but because there&#8217;s a bit of a general haziness about the whole idea of what FTPS is.  More on that later.</p>
<p>The first thing I did was setup my Debian ProFTPD server via the included /etc/proftpd/tls.conf.  Restarted ProFTPD, and then tried curl -v -v -k &#8216;ftps://localhost&#8217; which immediately resulted in the following error</p>
<pre>
* About to connect() to localhost port 990 (#0)
*   Trying 127.0.0.1... Connection refused
* couldn't connect to host
* Closing connection #0
curl: (7) couldn't connect to host
</pre>
<p>Oh, right, It&#8217;s listening on port 21 not port 990&#8230; curl -v -v -k ftps://localhost:21/ which gave me this error</p>
<pre>
* About to connect() to localhost port 21 (#0)
*   Trying 127.0.0.1... connected
* Connected to localhost (127.0.0.1) port 21 (#0)
* successfully set certificate verify locations:
*   CAfile: none
  CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
* error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
* Closing connection #0
curl: (35) error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
</pre>
<p>Believe it, or not, I got stuck here for more than an entire day.  Which is kind of embarrassing.  I googled the hell out of this issue, and got lots of advice which centered about generating appropriate certs, and using &#8220;openssl s_client -connect 127.0.0.1:21&#8243; to test (which resulted in, essentially, the same error: &#8220;14996:error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol:s23_clnt.c:607:&#8221; )</p>
<p>With the help of a friend from work we found what I had been overlooking. You see FTPS can mean one of two very different things.  </p>
<p>FTPS can mean FTP with explicit SSL.  This is where you connect to FTP, then give a command to encrypt the session after the initial plaintext connection has been established.</p>
<p>FTPS can also mean FTP with implicit SSL.  This is where you connect to the ftp server and the connection is encrypted before any commands are sent (this is like having HTTP on port 80 and HTTPS on port 443, except using 21 and 990 for FTP.)</p>
<p>The two types of FTPS are not compatible with one another.  Apparently FTPS/Implicit is no longer a part of the standard, but still &#8220;around&#8221; and &#8220;supported&#8221; by &#8220;things&#8221;.  And curl thinks you mean this when you give it a url of ftps://something.  FTPS/Implicit is also the kind of stream that &#8220;openssl s_client -connect 127.0.0.1:21&#8243; would test.  FTPS/Implicit is not the configuration setup by /etc/proftpd/tls.conf.  Which is why my testing failed, frustratingly, for so long.</p>
<p>Since ProFTPD uses FTPS/Explicit by default&#8230; how do you test? With very similar commands to the ones I used previously (lending to the confusion&#8230;)</p>
<pre>
openssl s_client -connect 127.0.0.1:21 -starttls ftp
</pre>
<pre>
curl -v -v -k --ftp-ssl ftp://localhost:21/
</pre>
<p>Ok. Now I&#8217;m able to setup and test an FTP/E server. What if I also need to setup and test an FTP/I server too?  Thats pretty simple.  in ProFTPD 1.3.3rc2, the mod_tls module was enhanced to support implicit FTPS via the UseImplicitSSL TLSOption.  So by adding &#8220;TLSOption UseImplicitSSL&#8221; on an appropriately new version of ProFTPD and mod_tls you can have a server that works with &#8220;curl -v -v -k ftps://localhost:21/&#8221; and &#8220;openssl s_client -connect 127.0.0.1:21&#8243;</p>
<p>I hope that this saves someone else the headaches that going through all of this gave me.  Had I read through <a href="http://www.proftpd.org/docs/howto/TLS.html">the ProFTPD TLS howto</a> carefully, instead of just searching for what I thought I needed, I would have solved this all much more quickly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.apokalyptik.com/2011/12/27/debian-proftpd-ftps-tls-ssl-and-ssl23_get_server_hellounknown-protocol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Erlang + HTML5 + IRC = pretty much awesome</title>
		<link>http://blog.apokalyptik.com/2010/12/02/erlang-html5-irc-pretty-much-awesome/</link>
		<comments>http://blog.apokalyptik.com/2010/12/02/erlang-html5-irc-pretty-much-awesome/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 17:48:18 +0000</pubDate>
		<dc:creator>apokalyptik</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Erlang]]></category>
		<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Stuff]]></category>

		<guid isPermaLink="false">http://blog.apokalyptik.com/?p=742</guid>
		<description><![CDATA[as someone who uses IRC every day for work&#8230; I find this to be a very cool idea, even though I can&#8217;t really trust sending my traffic through a 3rd party. IRCCloud.com]]></description>
			<content:encoded><![CDATA[<p>as someone who uses IRC every day for work&#8230; I find this to be a very cool idea, even though I can&#8217;t really trust sending my traffic through a 3rd party.</p>
<p><a href="http://www.vedetta.com/irccloud.com-review-with-screenshots-ajax-irc-client-bouncer-bnc"> IRCCloud.com </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.apokalyptik.com/2010/12/02/erlang-html5-irc-pretty-much-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a second authentication factor to WordPress</title>
		<link>http://blog.apokalyptik.com/2010/11/16/adding-a-second-authentication-factor-to-wordpress/</link>
		<comments>http://blog.apokalyptik.com/2010/11/16/adding-a-second-authentication-factor-to-wordpress/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 07:36:04 +0000</pubDate>
		<dc:creator>apokalyptik</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Stuff]]></category>

		<guid isPermaLink="false">http://blog.apokalyptik.com/?p=730</guid>
		<description><![CDATA[UPDATE: I&#8217;ve added the plugin to the WordPress.org repository. If it gathers interest/attention then I may develop it further and add more stuff like SMS gateway support, configuration, etc&#8230; See: http://wordpress.org/extend/plugins/second-factor/ I really don&#8217;t know why, but the idea of adding a second authentication factor to WordPress blogs took hold of my brain tonight and [...]]]></description>
			<content:encoded><![CDATA[<p><em>UPDATE: I&#8217;ve added the plugin to the WordPress.org repository.  If it gathers interest/attention then I may develop it further and add more stuff like SMS gateway support, configuration, etc&#8230; See: <a href="http://wordpress.org/extend/plugins/second-factor/">http://wordpress.org/extend/plugins/second-factor/</a></em></p>
<p>I really don&#8217;t know why, but the idea of adding a second authentication factor to WordPress blogs took hold of my brain tonight and needed an outlet.  So I made this little proof of concept plugin: <a href="/files/second-factor/second-factor-1.0.phps">Second Factor</a>.  What it does is pretty simple:</p>
<ol>
<li>When you log in it goes through a series of cryptographic routines and generates some info which is stored in the database as a user option.</li>
<li>A key is generated for you, and an email is sent to your listed email address.</li>
<li>When you attempt to access a page while logged in it blocks you, asking for the key that was emailed to you</li>
<li>Finally after entering this second authentication token you are allowed access to the site</li>
</ol>
<p>I could see this being extended to Instant Messaging, SMS, IRC, or even integrated with a text-to-phone service to make an actual phone call which reads off the numbers to you.</p>
<p>What I don&#8217;t know is if anyone actually wants this&#8230; If this is even worthwhile.  For me it was mainly a thought experiment.  Would you want to have this kind of added security on your WP Installation?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.apokalyptik.com/2010/11/16/adding-a-second-authentication-factor-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Using PHP and OpenSSH with username/password auth</title>
		<link>http://blog.apokalyptik.com/2010/08/28/using-php-and-openssh-with-usernamepassword-auth/</link>
		<comments>http://blog.apokalyptik.com/2010/08/28/using-php-and-openssh-with-usernamepassword-auth/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 19:35:57 +0000</pubDate>
		<dc:creator>apokalyptik</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Stuff]]></category>

		<guid isPermaLink="false">http://blog.apokalyptik.com/?p=662</guid>
		<description><![CDATA[It turns out that this is actually a tricky problem. It&#8217;s super easy to use the OpenSSH command line stuff via PHP when you have key based authentication set up, but it&#8217;s not at all easy to use when you want to go the user/pass route. This is for a couple of reasons: First you [...]]]></description>
			<content:encoded><![CDATA[<p>It turns out that this is actually a tricky problem.  It&#8217;s super easy to use the OpenSSH command line stuff via PHP when you have key based authentication set up, but it&#8217;s not at all easy to use when you want to go the user/pass route.  This is for a couple of reasons:</p>
<p>First you cannot specify the password on the command line.  Second you cannot use the php process controls directly to give the password (well this isn&#8217;t 100% true, if you want to recompile your PHP binary with pty support then you probably could bypass everything I&#8217;m about to say and just use proc_open straight). And there&#8217;s a third reason that I&#8217;ll get to in a bit.</p>
<p>OpenSSH supports getting a password from an executable program via the SSH_ASKPASS environment variable &#8212; with two notable gotchas.  First this only works if you also specify a DISPLAY environment variable, and second it does NOT work if the controlling process has a tty or pty.</p>
<p>The code below works&#8230; but if you just paste it into a script file and run it directly with php ./myscript.php it fails. Why?</p>
<pre lang="php">
function ssh_user_pass_port_forward( $hostname, $username, $password, $localport, $remotehost, $remoteport ) {
	$descriptorspec = array(
	        0 => array("pipe", "r"),  // stdin is a pipe that the child will read from
	        1 => array("pipe", "w"),  // stdout is a pipe that the child will write to
	        2 => array("pipe", "w")   // stderr is a file to write to
	);
	$script = tempnam( '/tmp/', 'askpass-');
	file_put_contents(
		$script,
		"#!/bin/bash\necho -n ".escapeshellarg( $password )
	);
	chmod( $script, 0755 );
	$env = array(
		'DISPLAY' => '0',
		'SSH_ASKPASS' => $script
	);
	$forward = sprintf(
		"%d:%s:%d",
		$localport,
		$remotehost,
		$remoteport
	);
	$command = sprintf(
		"/usr/bin/ssh -n -o StrictHostKeyChecking=no -l %s -L %s -N %s",
		escapeshellarg( $username ),
		escapeshellarg( $forward ),
		escapeshellarg( $hostname )
	);
	return proc_open( $command, $descriptorspec, $pipes, getcwd(), $env);
}
</pre>
<p>The answer is that you are running it, and you&#8217;re running it from a shell which has a tty or pty attached, and the script inherits those and OpenSSH sees this and then ignores the SSH_ASKPASS variable completely.  The trick to testing/using this code is to execute it without running it from a terminal.  If you execute the command below (roughly) it looks like it hangs. but if you open another terminal you should be able to use the port forward just created.</p>
<p>ssh myserver.com &#8220;php /path/to/myscript.php&#8221;</p>
<p>This is because since you&#8217;re sshing for the sole purpose of running that command and not using a shell the system doesn&#8217;t allocate you a pty like it would normally.  I&#8217;m guessing that executing it via an http request would do something similar.</p>
<p>Since I previously posted some hard-won advice for working with ssh2_* in php I thought I would share this equally tricky bit that I&#8217;d also figured out in the process.</p>
<p>Remember that there is ALWAYS more than one way to skin a problem, and every problem can be skinned with enough effort.</p>
<p>Again, this is itch-scratch-ware, YMMV, this is meant as a starting point on a journey to a solution and not a drop-in-works-everywhere bit of code. It&#8217;s just the hard stuff. The useful stuff is still up to you <img src='http://blog.apokalyptik.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.apokalyptik.com/2010/08/28/using-php-and-openssh-with-usernamepassword-auth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP SSH2 code</title>
		<link>http://blog.apokalyptik.com/2010/08/27/php-ssh2-code/</link>
		<comments>http://blog.apokalyptik.com/2010/08/27/php-ssh2-code/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 02:43:48 +0000</pubDate>
		<dc:creator>apokalyptik</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Stuff]]></category>

		<guid isPermaLink="false">http://blog.apokalyptik.com/?p=659</guid>
		<description><![CDATA[I&#8217;ve had a need to use the PHP SSH2 PECL recently (working on making a product, at work, more efficient) And thought I would share some of the preliminary code. You can find it here: vpssh.phps The most interesting thing is not vpssh_core or it&#8217;s exec (though it&#8217;s good code) the really interesting thing is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had a need to use the PHP SSH2 PECL recently (working on making a product, at work, more efficient)  And thought I would share some of the preliminary code.  You can find it here: <a href="http://blog.apokalyptik.com/files/phpssh2/vpssh.phps">vpssh.phps</a></p>
<p>The most interesting thing is not vpssh_core or it&#8217;s exec (though it&#8217;s good code) the really interesting thing is the vpssh_tunnel class and the accompanying examples at the top of the file.  This really shows some advanced usage of ssh2_tunnel that you can&#8217;t really find anywhere else.</p>
<p>It&#8217;s just the beginnings of some useful code, but it&#8217;s probably a huge jumping off point for anyone seriously looking into the ssh2 pecl functionality.  Oh, it also works with both password and key based authentication.</p>
<p>This code is less than 12 hours old, and it works for me so far, YMMV. Feedback welcome &#8230; or not&#8230; Whatever.  Hope it helps someone out.  And I hope it helps me out later when I need this kind of thing again.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.apokalyptik.com/2010/08/27/php-ssh2-code/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Postfix, DKIMproxy, Spamc</title>
		<link>http://blog.apokalyptik.com/2008/11/14/postfix-dkimproxy-spamc/</link>
		<comments>http://blog.apokalyptik.com/2008/11/14/postfix-dkimproxy-spamc/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 22:08:39 +0000</pubDate>
		<dc:creator>apokalyptik</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Funny Stuff]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Stuff]]></category>

		<guid isPermaLink="false">http://blog.apokalyptik.com/?p=304</guid>
		<description><![CDATA[If you&#8217;re running any moderately busy mail server you&#8217;re probably using spamassassins spamc/spamd to check for spam because its tons more efficient than piping the mail through the spamassassin cli. Assuming that you do, and that you plan on adding DKIM proxy to the mix to verify  and sign emails you need to put things [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re running any moderately busy mail server you&#8217;re probably using spamassassins spamc/spamd to check for spam because its tons more efficient than piping the mail through the spamassassin cli. Assuming that you do, and that you plan on adding DKIM proxy to the mix to verify  and sign emails you need to put things in the right order, to save you some headache here&#8217;s what I did:</p>
<ol>
<li>smtp|smtps =&gt; -o smtpd_proxy_filter=127.0.0.1:10035 # outgoing dkim verify port</li>
<li>127.0.0.1:10036 =&gt; -o content_filter=spamassassin</li>
<li>spamassassin =&gt;  pipe user=nobody argv=/usr/bin/spamc -f -e /usr/sbin/sendmail -oi -f ${sender} ${recipient} # this delivers to the &#8220;pickup&#8221; service</li>
<li>pickup =&gt; -o content_filter=dksign:127.0.0.1:10037 # outgoing dkim signing port</li>
<li>127.0.0.1:10038 =&gt; -o content_filter= # the buck stops here</li>
</ol>
<p>If you arent careful with these (which I wasnt) you&#8217;ll end up causing an infinite loop between your filters (which I did).  Thus concludes our public service announcement.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.apokalyptik.com/2008/11/14/postfix-dkimproxy-spamc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Any&#8230; good&#8230; php devs out there looking for some side work?</title>
		<link>http://blog.apokalyptik.com/2007/05/17/any-good-php-devs-out-there-looking-for-some-side-work/</link>
		<comments>http://blog.apokalyptik.com/2007/05/17/any-good-php-devs-out-there-looking-for-some-side-work/#comments</comments>
		<pubDate>Fri, 18 May 2007 03:04:57 +0000</pubDate>
		<dc:creator>apokalyptik</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Stuff]]></category>

		<guid isPermaLink="false">http://blog.apokalyptik.com/2007/05/17/any-good-php-devs-out-there-looking-for-some-side-work/</guid>
		<description><![CDATA[I know a group of guys looking to do some cool stuff who could use a few good contractors. Drop me an e-mail with maybe a sample or something cool you did in php and I&#8217;ll pass it on. apokalyptik apokalyptik com &#8212; Subject: &#8220;PHP Consulting&#8221; (I&#8217;ll likely completely overlook your mail if you use [...]]]></description>
			<content:encoded><![CDATA[<p>I know a group of guys looking to do some cool stuff who could use a few good contractors.  Drop me an e-mail with maybe a sample or something cool you did in php and I&#8217;ll pass it on.</p>
<p>apokalyptik apokalyptik com &#8212; Subject: &#8220;PHP Consulting&#8221; (I&#8217;ll likely completely overlook your mail if you use some subject not starting with that string)</p>
<p>Cheers</p>
<p>DK</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.apokalyptik.com/2007/05/17/any-good-php-devs-out-there-looking-for-some-side-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This cold of mine just WILL NOT quit&#8230;</title>
		<link>http://blog.apokalyptik.com/2007/02/09/this-cold-of-mine-just-will-not-quit/</link>
		<comments>http://blog.apokalyptik.com/2007/02/09/this-cold-of-mine-just-will-not-quit/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 16:13:53 +0000</pubDate>
		<dc:creator>apokalyptik</dc:creator>
				<category><![CDATA[Funny Stuff]]></category>
		<category><![CDATA[In The News]]></category>
		<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.apokalyptik.com/2007/02/09/this-cold-of-mine-just-will-not-quit/</guid>
		<description><![CDATA[It&#8217;s still hanging in there like a monkey on my back.  Speaking of colds&#8230; Vista is off to a cold start, security wise, isn&#8217;t it? Already a privilege escalation vulnerability letting local restricted users become local admins.  &#8220;UNBREAKABLE ORACLE VISTA!&#8221;]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s still hanging in there like a monkey on my back.  Speaking of colds&#8230; Vista is off to a cold start, security wise, isn&#8217;t it? Already a privilege escalation vulnerability letting local restricted users become local admins.  &#8220;UNBREAKABLE <strike>ORACLE</strike> VISTA!&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.apokalyptik.com/2007/02/09/this-cold-of-mine-just-will-not-quit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trying out NoListing</title>
		<link>http://blog.apokalyptik.com/2007/01/23/trying-out-nolisting/</link>
		<comments>http://blog.apokalyptik.com/2007/01/23/trying-out-nolisting/#comments</comments>
		<pubDate>Tue, 23 Jan 2007 08:02:14 +0000</pubDate>
		<dc:creator>apokalyptik</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Web Stuff]]></category>

		<guid isPermaLink="false">http://blog.apokalyptik.com/2007/01/23/trying-out-nolisting/</guid>
		<description><![CDATA[I&#8217;m trying out this &#8220;nolisting&#8221; idea which is, really clever. Of course I read about it on slashdot. I&#8217;ll be very interested to see how well it works on apokalyptik.com e-mail.  If I remember both to check and to report I&#8217;ll put up some graphs. This post ought to serv both as a reminder for [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying out <a target="_blank" href="http://www.joreybump.com/code/howto/nolisting.html">this &#8220;nolisting&#8221; idea</a> which is, really clever. <a target="_blank" href="http://it.slashdot.org/article.pl?sid=07/01/23/0220218&#038;from=rss">Of course I read about it on slashdot</a>. I&#8217;ll be very interested to see how well it works on apokalyptik.com e-mail.  If I remember both to check and to report I&#8217;ll put up some graphs. This post ought to serv both as a reminder for that and *when* the implementation was done.  This way I&#8217;ll be able to spot the, hopeful, drop off on my graphs.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.apokalyptik.com/2007/01/23/trying-out-nolisting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Down with HTML E-Mail!</title>
		<link>http://blog.apokalyptik.com/2007/01/12/down-with-html-e-mail/</link>
		<comments>http://blog.apokalyptik.com/2007/01/12/down-with-html-e-mail/#comments</comments>
		<pubDate>Fri, 12 Jan 2007 21:27:06 +0000</pubDate>
		<dc:creator>apokalyptik</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Excuses]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.apokalyptik.com/2007/01/12/down-with-html-e-mail/</guid>
		<description><![CDATA[Begin rant I&#8217;m with Jeremy on this one&#8230; Lets face it, e-mail is broken.  We have long since outgrown it, we have been living with the pains of ot for a long time now.  It&#8217;s everyones favorite internet whipping boy. &#8220;I hate spam&#8221; &#8220;I hate stupid forwards&#8221; &#8220;I hate huge attachments&#8221;.  We spend all our [...]]]></description>
			<content:encoded><![CDATA[<p>Begin rant</p>
<p>I&#8217;m with <a href="http://jeremy.linuxquestions.org/blog/_archives/2007/1/12/2643913.html">Jeremy</a> on <a href="http://www.campaignmonitor.com/blog/archives/2007/01/microsoft_takes_email_design_b.html">this one</a>&#8230; Lets face it, e-mail is broken.  We have long since outgrown it, we have been living with the pains of ot for a long time now.  It&#8217;s everyones favorite internet whipping boy. &#8220;I hate spam&#8221; &#8220;I hate stupid forwards&#8221; &#8220;I hate huge attachments&#8221;.  We spend all our time bitching about e-mail but them when something happens it&#8217;s &#8220;the sky is falling the sky is falling give me back my good sweet innocent e-mail the way it was before you broke it! It was JUST FINE THE WAY IT WAS WHY DID YOU HAVE TO CHANGE IT?!&#8221;</p>
<p>Go whine to somebody else, seriously. EMail is the black plague of the internet, its an infectious disease, a self sustaining spiral down the drain of absurdity. I, for one, will be happy when all of the people who depend on it, and who enable it, and who empower it finally go retire on some island somewhere and the kids take over and it&#8217;s all about text messaging, not e-mail.</p>
<p>Speaking of kids taking over: &#8220;SUCKS TO YOUR EMAIL!&#8221;</p>
<p>End rant</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.apokalyptik.com/2007/01/12/down-with-html-e-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using memcached
Page Caching using memcached
Database Caching 1/22 queries in 0.007 seconds using memcached
Object Caching 688/724 objects using memcached

Served from: blog.apokalyptik.com @ 2012-02-04 10:05:10 -->
