<?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>Johannessen Design Bureau</title>
	<atom:link href="http://db.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://db.org</link>
	<description></description>
	<lastBuildDate>Sun, 01 Jan 2012 23:19:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Bi-monthly SSL certificate update</title>
		<link>http://db.org/2011/03/14/bi-monthly-ssl-certificate-update/</link>
		<comments>http://db.org/2011/03/14/bi-monthly-ssl-certificate-update/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 21:15:54 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://db.org/?p=249</guid>
		<description><![CDATA[About once every other month I&#8217;ve accumulated a list of SSL certificates that must be renewed. Now; all experience has show that it&#8217;s a good idea to verify that the service in question is actually using the renewed certificate. I&#8217;ve updated the wrong configuration file; I&#8217;ve forgotten to restart services to re-read the certificate and [...]]]></description>
			<content:encoded><![CDATA[<p>About once every other month I&#8217;ve accumulated a list of SSL certificates that must be renewed. Now; all experience has show that it&#8217;s a good idea to verify that the service in question is actually using the renewed certificate. I&#8217;ve updated the wrong configuration file; I&#8217;ve forgotten to restart services to re-read the certificate and I&#8217;ve had services claiming to have read the new configuration, but in reality still running with the old certificate. As a result I&#8217;ve picked up the habit of always checking that the new certificate is actually the one being used. For <code>HTTPS</code> this is simple enough; all browsers I use have a really simple way of checking the expiry date of a site certificate. But what about when you&#8217;re using <code>SMTPS</code>, <code>IMAPS</code> or <code>POP3S</code> (or <code>SMTP</code>, <code>IMAP</code> or <code>POP3</code> with <code>STARTTLS</code>). I know there&#8217;s a way, but I always forget, and have to ask Google. Well; not any more: Here&#8217;s how to fetch the certificate for such services:</p>
<h3>IMAPS</h3>
<pre>echo | \
openssl s_client -connect imap.example.com:993 -crlf 2>&#038;1 | \
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > cert</pre>
<h3>IMAP with STARTTLS</h3>
<pre>echo | \
openssl s_client -starttls imap -connect imap.example.com:143 -crlf 2>&#038;1 | \
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > cert</pre>
<h3>POP3S</h3>
<pre>echo | \
openssl s_client -connect pop3.example.com:995 -crlf 2>&#038;1 | \
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > cert</pre>
<h3>POP3 with STARTTLS</h3>
<pre>echo | \
openssl s_client -starttls pop3 -connect pop3.example.com:110 -crlf 2>&#038;1 | \
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > cert</pre>
<h3>SMTPS</h3>
<pre>echo | \
openssl s_client -connect smtp.example.com:465 -crlf 2>&#038;1 | \
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > cert</pre>
<h3>SMTP with STARTTLS</h3>
<pre>echo | \
openssl s_client -starttls smtp -connect smtp.example.com:587 -crlf 2>&#038;1 | \
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > cert</pre>
<p>Once you&#8217;ve got the certificate (the above commands will store it in a file named <code>cert</code> in the current working directory) use the following command to extract the expiry date:</p>
<pre>openssl x509 -in cert -noout -enddate</pre>
<h3>Sample output</h3>
<pre>notAfter=May 13 21:22:55 2012 GMT</pre>
<p>Simple as that&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://db.org/2011/03/14/bi-monthly-ssl-certificate-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Unbearable incompetence of GoDaddy</title>
		<link>http://db.org/2009/12/21/the-unbearable-incompetence-of-godaddy-part-1/</link>
		<comments>http://db.org/2009/12/21/the-unbearable-incompetence-of-godaddy-part-1/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 22:36:43 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[dns]]></category>

		<guid isPermaLink="false">http://db.org/?p=122</guid>
		<description><![CDATA[I moved the db.org domain to GoDaddy back in 2005/2006 in a desperate attempt to escape the predatory &#8220;competitive practise&#8221; of VeriSign/Network Solutions and the limitless incompetence of register.com. At the time this worked out great, and why wouldn&#8217;t it. It&#8217;s not rocket science! I don&#8217;t ask a lot of a registrar. Just make sure [...]]]></description>
			<content:encoded><![CDATA[<p>I moved the <code>db.org</code> domain to GoDaddy back in 2005/2006 in a desperate attempt to escape the predatory &#8220;competitive practise&#8221; of VeriSign/Network Solutions and the limitless incompetence of register.com. At the time this worked out great, and why wouldn&#8217;t it. It&#8217;s not rocket science!</p>
<p>I don&#8217;t ask a lot of a registrar. Just make sure the <code>TLD</code> publishes <code>NS</code> records for my domain along with any necessary glue records. And of course a way to modify said records. Sounds simple enough&#8230;</p>
<p>Sadly something has gone terribly wrong at GoDaddy since the last time I had to deal with them. Have a look at their web site. Where one would hope to find helpful technical information, you get pictures of b-list celebrities. Where one would hope to find tools for domain registration management, you get &#8220;special offers&#8221;, discounts and deals. Where one would hope to find customer support contact information, you get the always present, never ending drivel of &#8220;Bob Parsons, CEO&#8221;.</p>
<p>All I wanted to do was change the <code>NS</code> records for <code>botnegaten.org</code>. Not a lot to ask of a domain name registrar I thought. How wrong I was&#8230;</p>
<pre><strong>From: bob@db.org
To: support@godaddy.com
Subject: Setting nameservers for domain
Date: 2009-12-21 09:05 +0100</strong>

I'm trying to set:

a.ns.db.org
b.ns.db.org

as nameservers for botnegaten.org, but I keep getting the following
error message for both nameservers:

"Nameserver not registered."

What am i doing wrong?</pre>
<pre><strong>From: donotreply@godaddy.com
To: bob@db.org
Subject: Request Received - Incident ID 8026729
Date: 2009-12-21 09:07 +0100</strong>

Your question has been received. You should expect a response
within 24 hours.

This is your Incident ID: 8026729</pre>
<p><strong>Huh</strong>; the form where I filed the incident promised me a reply within 4 hours. Clever trick really; as they sent me the above auto-reply in just a few minutes, they have technically upheld their promise of a response within 4 hours&#8230;</p>
<pre><strong>From: support@godaddy.com
To: bob@db.org
Subject: Update [Incident ID: 8026729] - Support Question
Date: 2009-12-21 14:00 +0100</strong>

Dear B. Johannessen,
Thank you for contacting online support.

You are not required to register hosts, but if you intend to set up
your own Domain Name Server (DNS) service, you can register
your own hosts. You can enter up to 13 hosts, depending on the
maximum number of hosts the top-level domain (TLD) registry
allows.

WARNING: Unless you have a thorough understanding of this
process, we recommend that you do not use this feature.

To Register Your Own Hosts
Log in to your Account Manager.
In the My Products section, click Domain Manager.
Click the domain for which you want to create a host.
In the Host Summary section, click the add hyperlink in the header.
In the Host name field, enter the host name you want to register.
NOTE: Do not enter "www" as part of your host name.

In the Host IP fields, enter the IP address(es) you want to add to
the host.
Click OK.
It takes 4 to 8 hours to register hosts for .COM and .NET domains
and 24 to 48 hours for all other domain extensions.

Thank you,
Jennifer T.
Online Support</pre>
<p>Thanks &#8220;Jennifer&#8221;, I&#8217;m sure you&#8217;re right, but that&#8217;s not what I asked. Apparently <a href="mailto:support@godaddy.com">support@godaddy.com</a> is manned by the trained monkey squad, and the monkey training leaves a bit to be desired! Let&#8217;s see if we can get this escalated to someone with above room-temperature IQ (or a least a basic understanding of the DNS).</p>
<pre><strong>From: bob@db.org
To: support@godaddy.com
Subject: Re: Update [Incident ID: 8026729] - Support Question
Date: 2009-12-21 14:22 +0100</strong>

Please, please, PLEASE escalate this to someone qualified to do
something other then return a pre-written reply!

I'm trying to set the nameservers for botnegaten.org to A.NS.DB.ORG
and B.NS.DB.ORG, but when I do so, I get an error message saying
"Nameserver not registered." for both values.</pre>
<p>My father always says you should hope in one hand, spit in the other and check to see what hand ends up the fullest (sounds a lot better in Norwegian, but you get the idea). So; at this point I&#8217;m sitting back <em>hoping</em> for intelligent life at GoDaddy support&#8230;</p>
<pre><strong>From: donotreply@godaddy.com
To: bob@db.org
Subject: Request Received - Incident ID 8026729
Date: 2009-12-21 14:23 +0100</strong>

Your question has been received. You should expect a response within
24 hours.

This is your Incident ID: 8026729</pre>
<p>Good to know&#8230;</p>
<pre><strong>From: support@godaddy.com
To: bob@db.org
Subject: Update [Incident ID: 8026729] - Support Question
Date: 2009-12-21 19:13 +0100</strong>

Dear Bob,

We will need to see the exact error that you receiving when trying
to change the nameservers. The term screen shot refers to
"grabbing" a still image of the contents of your computer monitor
that can be saved as a graphic file and printed, faxed, or emailed.

Screen shots are very helpful in explaining what you are seeing on
your computer when working with customer support. It is often
easier for you and for the support representative if you take a
screen shot of what you are seeing and simply send it in.

Here is a quick step by step on how to do it:

...
...
...

Regards,
Alfonso P.
Online Support</pre>
<p>I&#8217;ve heard a picture is worth a thousand words, but this is ridiculous. Guess I was mistaken about who&#8217;s manning <a href="mailto:support@godaddy.com">support@godaddy.com</a>. The untrained monkey squad is clearly taking over!</p>
<pre><strong>From: bob@db.org
To: support@godaddy.com
Subject: Re: Update [Incident ID: 8026729] - Support Question
Date: 2009-12-21 20:54 +0100</strong>

I've told you what "the exact error" is two times already, but if
you find pictures easier to understand I guess that's my problem.

Please find attached a screenshot showing the "Nameserver not
registered." message in question.

Problem description: I'm getting this message when trying to
change the nameservers for botnegaten.org to A.NS.DB.ORG
and B.NS.DB.ORG.

Is it acceptable to include the problem description in plain text,
or would you prefer I make a screenshot of that too?

Attachment: <a href="http://db.org/wp-content/uploads/2009/12/godaddy.jpg">godaddy.jpg</a></pre>
<p>Wait for it&#8230;</p>
<pre><strong>From: donotreply@godaddy.com
To: bob@db.org
Subject: Request Received - Incident ID 8026729
Date: 2009-12-21 20:54 +0100</strong>

Your question has been received. You should expect a response
within 24 hours.

This is your Incident ID: 8026729</pre>
<p>Another fine answer. To bad it&#8217;s not an answer to anything I&#8217;ve asked..</p>
<pre><strong>From: support@godaddy.com
To: bob@db.org
Subject: Update [Incident ID: 8026729] - Support Question
Date: 2009-12-22 04:24 +0100</strong>

Dear Bob,

Upon review, neither of the nameservers given are
registered at this time. You would need to register them
and then add them to your domain in order for it to work.

You can setup custom nameservers for your domain
name by using the following instructions.

* Select "Domain Manager" from the gray "My Products"
drop down menu on the left side of the page.
* From the domain name list click the blue link that is
the domain name in question.
* Click the "Edit" link under "Host Summary" on the
lower left hand side of the screen.
* Enter the appropriate Host Names and IP Addresses
for the nameservers you wish to create.
* Click the Orange "OK" link to save the changes.

Note that you must still change the domain name's
nameservers to point a domain name to any custom
nameservers that you create.

To change the nameservers for a domain:

* Check the box to the left of any domain names that you
wish to change the nameservers for.
* Click on the "Nameservers" button in the row of buttons
just above the list of domain names.
* Under the "Custom Nameservers" tab you will be able to
enter the necessary nameservers for the domain name(s).
* Click the orange "OK" button on the right hand side of the
page to save the changes.

Please allow up to 24-48 hours for the changes made to
the domain name(s) to take effect.

Please let us know if we can assist you in any other way.

Sincerely,

Stacey P.
Online Support Team</pre>
<p>I&#8217;ve heard that given enough monkeys and enough typewriters, eventually one of those monkeys is bound to type out something useful. Clearly this is the strategy used in the GoDaddy support department. <strong>Hey guys! You need more monkeys!</strong></p>
<pre><strong>From: bob@db.org
To: support@godaddy.com
Subject: Re: Update [Incident ID: 8026729] - Support Question
Date: 2009-12-22 04:47 +0100</strong>

I ask once again that you escalate this to someone with a
clue. The procedure you're suggesting will only allow me
to register namservers in the botnegaten.org domain. I'm
trying to use nameservers in a *different* domain.

Once again; I'm trying to use a.ns.db.org and b.ns.db.org
as nameservers for the domain botnegaten.org. Using the
procedure you suggested would allow me to register
a.ns.botnegaten.org and b.ns.botnegaten.org for use as
nameservers, but this is *not* what I'm trying to do!

Either I'm missing some essential peace of information,
or it's not currently possible to preform this operation
using your web-interface.

Please see that this is escalated to someone capable of
understanding the problem!

    Bob</pre>
<p>Back to watching paint dry&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://db.org/2009/12/21/the-unbearable-incompetence-of-godaddy-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Breaking Bing Cashback</title>
		<link>http://db.org/2009/11/10/breaking-bing-cashback/</link>
		<comments>http://db.org/2009/11/10/breaking-bing-cashback/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 21:32:27 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://db.org/?p=105</guid>
		<description><![CDATA[Apparently Samir Meghani at the Bountii Team Blog decided on surrendering to Microsoft and Bing Cashback. Sadly for Microsoft, their lawyers was too dumb to make sure the same content was removed from Microsofts own &#8220;search engine&#8221; cache. http://cc.bingj.com/cache.aspx?d=4879267570255838&#038;mkt=en-CA&#038;setlang=en-US&#038;w=90157511,9ea4ebc5 Update: Microsoft removed it from Bing cache Just in case they should grow a clue, here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Apparently Samir Meghani at the <a href="http://bountii.com/blog/">Bountii Team Blog</a> decided on <a href="http://bountii.com/blog/2009/11/07/surrendering-to-microsoft-and-bing-cashback/">surrendering to Microsoft and Bing Cashback</a>. Sadly for Microsoft, their lawyers was too dumb to make sure the same content was removed from Microsofts own &#8220;search engine&#8221; cache.</p>
<p><a href="http://cc.bingj.com/cache.aspx?d=4879267570255838&#038;mkt=en-CA&#038;setlang=en-US&#038;w=90157511,9ea4ebc5">http://cc.bingj.com/cache.aspx?d=4879267570255838&#038;mkt=en-CA&#038;setlang=en-US&#038;w=90157511,9ea4ebc5</a></p>
<p><strong>Update</strong>: <a href="#comment-5">Microsoft removed it from Bing cache</a></p>
<p>Just in case they should grow a clue, here&#8217;s the description of the technical problem that Microsoft, in its infinite wisdom, decided to correct with lawyers instead of software engineers:</p>
<p>I’ve never bought anything using Bing Cashback, but the balance of my account is $2080.06. Apparently, I placed two $1 orders on January 24th of this year, and spent another $104,000 on October 24th. Let’s see how these transactions might have “accidentally” got credited to my account.</p>
<p><img src="http://db.org/wp-content/uploads/2009/11/bingbalance.jpg" alt="" /></p>
<p>First, we need to try to figure out how transactions get into Bing Cashback. Microsoft posted some documentation here. The explanation of how a merchant reports transactions to Bing starts on page 20.  Merchants have a few options for reporting, but Bing suggests using a tracking pixel. Basically, the merchant adds a tracking pixel to their order confirmation page, which will report the the transaction details back to Bing. The request for the tracking pixel looks something like this:</p>
<pre>https://ssl.search.live.com/cashback/pixel/index?
jftid=0&#038;jfoid=$ORDERID&#038;jfmid=$MERCHANTID&#038;m[0]=
$ITEMID&#038;p[0]=$PRICE&#038;q[0]=$QUANTITY</pre>
<p>This implementation, while easy for the merchant, has an obvious flaw. Anyone can simulate the tracking pixel requests, and post fake transactions to Bing. I’m not going to explain exactly how to generate the fake requests so that they actually post, but it’s not complicated. Bing doesn’t seem to be able to detect these fake transactions, at least not right away. The six cents I earned in January have “cleared,” and I’m guessing the remaining $2080 will clear on schedule, unless there is some manual intervention.</p>
<p>Even if Bing detects these fake transactions at some point in the future, the current implementation might have another interesting side effect. I haven’t done enough work to say it with confidence, but a malicious user might be able to block another user’s legitimate purchases from being reported correctly by Bing (I only tried this once, but it seemed to work). Posting a transaction to Bing requires sending them an order ID in the request. Bing performs a reasonable sanity check on the order ID, and will not post a transaction that repeats a previously reported order ID.  When a store uses predictable order ID’s (e.g. sequential), a malicious user can “use up” all the future order ID’s, and cause legitimate transactions to be ignored. Reporting would be effectively down for days, causing a customer service nightmare for both Bing and the merchant.</p>
<p>Based on what I’ve found, I wouldn’t implement Bing Cashback if I were a merchant.  And, as an end user and bargain hunter, it does not seem smart to rely on Bing Cashback for savings.  In our next blog post, I’ll demonstrate some other subtle but important reasons to avoid using Bing Cashback.</p>
]]></content:encoded>
			<wfw:commentRss>http://db.org/2009/11/10/breaking-bing-cashback/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress and duplicate content</title>
		<link>http://db.org/2009/10/03/duplicate-content/</link>
		<comments>http://db.org/2009/10/03/duplicate-content/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 13:11:05 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://db.org/?p=76</guid>
		<description><![CDATA[WordPress has come a long way with regards to it&#8217;s default URL scheme. I needed only two minor tweaks to make me completely happy with it. The first one really isn&#8217;t WorPress&#8217; fault either. I really dislike publishing the same content on http://host.example/... and http://www.host.example/..., but at the same time I want to be able [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress has come a long way with regards to it&#8217;s default URL scheme. I needed only two minor tweaks to make me completely happy with it. The first one really isn&#8217;t WorPress&#8217; fault either. I really dislike publishing the same content on <code>http://host.example/...</code> and <code>http://www.host.example/...</code>, but at the same time I want to be able to accept incoming links with both hostnames. The solution is pretty well known, though I choose to turn it on it&#8217;s head: I <strong>remove</strong> the <code>www</code> from the hostname using Apache rewrite rules:</p>
<pre>RewriteEngine On
RewriteCond %{HTTP_HOST} !^db\.org$ [NC]
RewriteRule ^(.*)$ http://db.org/$1 [R=301,L]</pre>
<p>The <code>[NC]</code> flag makes the condition case insensitive. I don&#8217;t think I&#8217;ve ever seen a HTTP client send the <code>Host:</code> header in anything except lower case, but the relevant standards certainly allow for it.</p>
<p>The <code>R=301</code> flag tells Apache to make this a <strong>permanent</strong> redirect. This allows clients to update the links at their end. The <code>L</code> flags tells Apache to stop the rewriting process here and don&#8217;t apply any more rewrite rules. This is probably needed if you have additional rewrite rules in your <code>.htaccess</code> file.</p>
<p>The second thing bugging me is the way WordPress does paging. You get a predefined number of posts on the front page, and links to <code>/page/2/</code>, <code>/page/3/</code> and so on. This holds true for archive, category, tag-cloud and probably others pages as well. The problem with this is that the content on these pages are not stable (it shifts as you post new content) and it duplicates content. I&#8217;m still pondering a solution to this&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://db.org/2009/10/03/duplicate-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Igang igjen</title>
		<link>http://db.org/2009/10/03/igang-igjen/</link>
		<comments>http://db.org/2009/10/03/igang-igjen/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 12:45:12 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[meta]]></category>

		<guid isPermaLink="false">http://db.org/?p=71</guid>
		<description><![CDATA[Da gjør vi nok et forsøk på å gjenopplive bloggen. Jeg har tatt med litt innhold fra forrige gang jeg gjorde et forsøk, og utfra datostempelet på disse kan det sees at det er nærmere seks år siden sist jeg skrev noe nevneverdig. Skal forsøke å poste litt hyppigere i tiden fremover :-) Denne gangen [...]]]></description>
			<content:encoded><![CDATA[<p>Da gjør vi nok et forsøk på å gjenopplive bloggen. Jeg har tatt med litt innhold fra forrige gang jeg gjorde et forsøk, og utfra datostempelet på disse kan det sees at det er nærmere seks år siden sist jeg skrev noe nevneverdig. Skal forsøke å poste <em>litt</em> hyppigere i tiden fremover :-)</p>
<p>Denne gangen blir det nok også en lett blanding av Norsk og Engelsk. Norsk for ting som stort sett bare er interessant for de som snakker norsk allikevel, og Engelsk for resten.</p>
]]></content:encoded>
			<wfw:commentRss>http://db.org/2009/10/03/igang-igjen/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nikken</title>
		<link>http://db.org/2004/01/28/nikken/</link>
		<comments>http://db.org/2004/01/28/nikken/#comments</comments>
		<pubDate>Tue, 27 Jan 2004 22:42:35 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://dborg.php5.sysedata.no/?p=51</guid>
		<description><![CDATA[This entry is here to lend some support and PageRank to a worthy cause. Jarle Dahl Bergersen recently received a &#8220;Cease and Desist&#8221; letter from Nikkens Swedish representative. If you know me, you know I don&#8217;t much care for the concept of &#8220;intellectual property&#8221; (sic) in the first place. Seeing it abused like this just [...]]]></description>
			<content:encoded><![CDATA[<p>This entry is here to lend some support and PageRank to a worthy cause. <a href="http://weblog.bergersen.net/">Jarle Dahl Bergersen</a> recently received a &#8220;Cease and Desist&#8221; letter from <a href="http://weblog.bergersen.net/archives/000728.html">Nikken</a>s Swedish representative. If you know me, you know I don&#8217;t much care for the concept of &#8220;intellectual property&#8221; (sic) in the first place. Seeing it abused like this just reconfirms my believes that the whole system has gone bad and need to be replaced. So I guess I&#8217;ve broken some law or other now, and I fully expect some <a href="http://weblog.bergersen.net/archives/000728.html">Nikken</a> cartoony to send me my very own letter. Feel free.</p>
<h4>Links:</h4>
<p><a href="http://db.org/2004/01/11/property-and-technology/">http://db.org/2004/01/11/property-and-technology/</a><br /><a href="http://english.kakeboksen.org/archives/000310.html">http://english.kakeboksen.org/archives/000310.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://db.org/2004/01/28/nikken/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Property and Technology</title>
		<link>http://db.org/2004/01/11/property-and-technology/</link>
		<comments>http://db.org/2004/01/11/property-and-technology/#comments</comments>
		<pubDate>Sat, 10 Jan 2004 22:44:38 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://dborg.php5.sysedata.no/?p=55</guid>
		<description><![CDATA[Asbjørn Bjørnstad posted the following pearl to rec.photo.digital: Funny how technology changes things. First you could count your things, and if something was missing, someone had stolen it. Simple. Later, you could count other peoples things, and if they had something that was exactly what you had, then they had stolen it. Now you look [...]]]></description>
			<content:encoded><![CDATA[<p>Asbjørn Bjørnstad <a href="http://groups.google.com/groups?selm=5o4qv8kq1s.fsf%40glesvat.ifi.uio.no&amp;oe=UTF-8&amp;output=gplain">posted</a> the following pearl to rec.photo.digital:</p>
<p>Funny how technology changes things. First you could count your things, and if something was missing, someone had stolen it. Simple.</p>
<p>Later, you could count other peoples things, and if they had something that was exactly what you had, then they had stolen it.</p>
<p>Now you look at peoples things, and if they have a map to where your stuff is, they have stolen it.</p>
]]></content:encoded>
			<wfw:commentRss>http://db.org/2004/01/11/property-and-technology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You Might Be An Anti-Spam Kook If…</title>
		<link>http://db.org/2003/12/07/you-might-be/</link>
		<comments>http://db.org/2003/12/07/you-might-be/#comments</comments>
		<pubDate>Sat, 06 Dec 2003 22:46:52 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://dborg.php5.sysedata.no/?p=58</guid>
		<description><![CDATA[From Vernon Schryver: &#8220;Each item in the following list was suggested by the words or actions of people who presented themselves to the IETF or elsewhere as having discovered the FUSSP. Some of the items may seem obscure to those who have not dealt with the IETF.&#8221; http://www.rhyolite.com/anti-spam/you-might-be.html This list should be required reading for [...]]]></description>
			<content:encoded><![CDATA[<p>From Vernon Schryver:</p>
<blockquote cite="http://www.rhyolite.com/anti-spam/you-might-be.html"><p>&#8220;Each item in the following list was suggested by the words or actions of people who presented themselves to the <acronym title="Internet Engineering Task Force">IETF</acronym> or elsewhere as having discovered the <acronym title="Final Ultimate Solution to the Spam Problem">FUSSP</acronym>. Some of the items may seem obscure to those who have not dealt with the <acronym title="Internet Engineering Task Force">IETF</acronym>.&#8221;</p>
</blockquote>
<p><a href="http://www.rhyolite.com/anti-spam/you-might-be.html">http://www.rhyolite.com/anti-spam/you-might-be.html</a></p>
<p>This list should be required reading for anyone who think they have the &#8220;final solution&#8221; to spam.</p>
]]></content:encoded>
			<wfw:commentRss>http://db.org/2003/12/07/you-might-be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>db.org mail server used as spam relay</title>
		<link>http://db.org/2003/11/25/incident/</link>
		<comments>http://db.org/2003/11/25/incident/#comments</comments>
		<pubDate>Mon, 24 Nov 2003 22:26:14 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://dborg.php5.sysedata.no/?p=40</guid>
		<description><![CDATA[Introduction The db.org mail server at 195.159.29.203 and 195.159.29.204 has been used as a spam relay from approximately 2003/11/25 19:00 UTC until approximately 2003/11/26 03:45 UTC (a total of a little under 9 hours). The problem has now been corrected, and no further spam should originate from this server. This page will be continuously updated [...]]]></description>
			<content:encoded><![CDATA[<h4>Introduction</h4>
<p>The db.org mail server at 195.159.29.203 and 195.159.29.204 has been used as a spam relay from approximately 2003/11/25 19:00 UTC until approximately 2003/11/26 03:45 UTC (a total of a little under 9 hours). The problem has now been corrected, and no further spam should originate from this server. This page will be continuously updated as more information about the attack is uncovered. I (Bob Johannessen, postmaster@db.org) would like to apologise for any inconvenience this has caused.</p>
<h4>The problem</h4>
<p>The problem seems to have been with the password checker used for SMTP AUTH. The password checker used a different protocol from the SMTP daemon, and the brain dead password checker defaulted to &#8220;allow&#8221; when it didn&#8217;t understand its input data. This resulted in anyone trying to authenticate with AUTH LOGIN, using <strong>any</strong> combination of username and password, was allowed to relay mail.</p>
<h4>The volume</h4>
<p>Based on the queue sequence number of the first undeliverable message and that of the the last message, the total volume is estimated at about 14.000 messages. Of these 11.000 was already delivered when the problem was identified. The remaining 3.000 messages was removed from the queue. Total damage is therefore approximately 11.000 messages.</p>
<h4>The attacker</h4>
<p>The approximately 3.000 messages in the queue when the attack was identified originated from the following addresses.</p>
<ul>
<li>200.141.157.222 (RN141157222.user.veloxzone.com.br)</li>
<li>200.141.161.171 (PE161171.user.veloxzone.com.br)</li>
<li>200.158.237.63 (200-158-237-63.dsl.telesp.net.br)</li>
<li>200.164.136.170 (CE136170.user.veloxzone.com.br)</li>
<li>200.164.143.239 (CE143239.user.veloxzone.com.br)</li>
<li>200.164.143.5 (CE143005.user.veloxzone.com.br)</li>
<li>200.164.144.148 (CE144148.user.veloxzone.com.br)</li>
<li>200.164.144.236 (CE144236.user.veloxzone.com.br)</li>
<li>200.164.18.239 (BA018239.user.veloxzone.com.br)</li>
<li>200.164.244.135 (PE244135.user.veloxzone.com.br)</li>
<li>200.164.244.69 (PE244069.user.veloxzone.com.br)</li>
<li>200.165.112.248 (AL165112248.user.veloxzone.com.br)</li>
<li>200.165.16.151 (MG016151.user.veloxzone.com.br)</li>
<li>200.165.172.202 (172202.telemar.net.br)</li>
<li>200.165.193.64 (RJ193064.user.veloxzone.com.br)</li>
<li>200.95.11.213 (dsl-200-95-11-213.prod-infinitum.com.mx)</li>
<li>200.95.117.1 (dsl-200-95-117-1.prod-infinitum.com.mx)</li>
<li>200.95.119.11 (dsl-200-95-119-11.prod-infinitum.com.mx)</li>
<li>200.95.124.65 (dup-200-95-124-65.prod-infinitum.com.mx)</li>
<li>200.95.127.124 (dup-200-95-127-124.prod-infinitum.com.mx)</li>
<li>200.95.17.208 (dsl-200-95-17-208.prod-infinitum.com.mx)</li>
<li>200.95.46.247 (dsl-200-95-46-247.prod-infinitum.com.mx)</li>
<li>200.95.48.215 (dsl-200-95-48-215.prod-infinitum.com.mx)</li>
<li>200.95.72.214 (dsl-200-95-72-214.prod-infinitum.com.mx)</li>
<li>200.95.72.49 (dsl-200-95-72-49.prod-infinitum.com.mx)</li>
<li>200.95.73.201 (dsl-200-95-73-201.prod-infinitum.com.mx)</li>
<li>200.95.77.157 (dsl-200-95-77-157.prod-infinitum.com.mx)</li>
<li>200.95.82.253 (dsl-200-95-82-253.prod-infinitum.com.mx)</li>
<li>200.95.90.251 (dsl-200-95-90-251.prod-infinitum.com.mx)</li>
<li>218.72.11.98 (no reverse, whois@apnic.net points to chinanet.cn.net)</li>
<li>61.11.35.180 (no reverse, whois@apnic.net points to ddsl.net and directs abuse complaints to abuse@eth.net)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://db.org/2003/11/25/incident/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An American in Bavaria</title>
		<link>http://db.org/2003/10/23/american-traffic/</link>
		<comments>http://db.org/2003/10/23/american-traffic/#comments</comments>
		<pubDate>Wed, 22 Oct 2003 22:48:53 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://dborg.php5.sysedata.no/?p=62</guid>
		<description><![CDATA[From RISKS Digest: A US tourist&#8217;s trip through Bavaria ended with an unexpected visit to a supermarket when his car&#8217;s navigation system led him straight through the store&#8217;s doors. He depended entirely on the navigation system and did not notice approaching the supermarket until entering it. Am I the only one who think the car&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://catless.ncl.ac.uk/Risks/" title="RISKS Digest Homepage">RISKS Digest</a>:</p>
<blockquote cite="http://catless.ncl.ac.uk/Risks/22.96.html#subj2"><p>A US tourist&#8217;s trip through Bavaria ended with an unexpected visit to a supermarket when his car&#8217;s navigation system led him straight through the store&#8217;s doors.  He depended entirely on the navigation system and did not notice approaching the supermarket until entering it.</p>
</blockquote>
<p>Am I the only one who think the car&#8217;s navigation system is totally irrelevant to this story? I mean, if you think you can drive through a city without looking out the window, should you really be allowed to drive at all?</p>
]]></content:encoded>
			<wfw:commentRss>http://db.org/2003/10/23/american-traffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

