<?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>15 Augustus &#187; voorbeeld</title>
	<atom:link href="http://15augustus.nl/tag/voorbeeld/feed/" rel="self" type="application/rss+xml" />
	<link>http://15augustus.nl</link>
	<description>lekker belangrijk</description>
	<lastBuildDate>Mon, 08 Aug 2011 11:38:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Zo maak ik een backup van mijn bestanden</title>
		<link>http://15augustus.nl/2008/08/26/zo-maak-ik-een-backup-van-mijn-bestanden/</link>
		<comments>http://15augustus.nl/2008/08/26/zo-maak-ik-een-backup-van-mijn-bestanden/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 21:07:46 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Altijd handig]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[voorbeeld]]></category>

		<guid isPermaLink="false">http://15augustus.nl/?p=38</guid>
		<description><![CDATA[Inpakken: tar czf - path &#124; gpg ––recipient recipient ––encrypt &#124; split -b1G - name.tgz.gpg. Uitpakken: cat name.tgz.gpg.* &#124; gpg ––decrypt &#124; tar tzf -]]></description>
			<content:encoded><![CDATA[<p>Inpakken: <code>tar czf - <em><span style="text-decoration: underline;">path</span></em> | gpg ––recipient <em><span style="text-decoration: underline;">recipient</span></em> ––encrypt | split -b1G - <em><span style="text-decoration: underline;">name</span></em>.tgz.gpg.</code></p>
<p>Uitpakken: <code>cat <em><span style="text-decoration: underline;">name</span></em>.tgz.gpg.* | gpg ––decrypt | tar tzf -</code></p>
]]></content:encoded>
			<wfw:commentRss>http://15augustus.nl/2008/08/26/zo-maak-ik-een-backup-van-mijn-bestanden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH host based authentication</title>
		<link>http://15augustus.nl/2006/05/30/ssh-host-based-authentication/</link>
		<comments>http://15augustus.nl/2006/05/30/ssh-host-based-authentication/#comments</comments>
		<pubDate>Tue, 30 May 2006 12:05:10 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Altijd handig]]></category>
		<category><![CDATA[voorbeeld]]></category>

		<guid isPermaLink="false">http://15augustus.nl/?p=3</guid>
		<description><![CDATA[Genereer een key pair: [robin@fromhost ~]$ ssh-keygen -t dsa Generating public/private dsa key pair. Enter file in which to save the key (/home/robin/.ssh/id_dsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/robin/.ssh/id_dsa. Your public key has been saved in /home/robin/.ssh/id_dsa.pub. The key fingerprint is: 75:ed:f7:06:00:02:65:3e:4d:7b:fb:cf:4c:59:fc:63 robin@fromhost Kopieer [...]]]></description>
			<content:encoded><![CDATA[<p>Genereer een key pair:</p>
<pre>[robin@<strong>fromhost</strong> ~]$ ssh-keygen -t dsa
Generating public/private dsa key pair.
Enter file in which to save the key (/home/robin/.ssh/id_dsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/robin/.ssh/id_dsa.
Your public key has been saved in /home/robin/.ssh/id_dsa.pub.
The key fingerprint is:
75:ed:f7:06:00:02:65:3e:4d:7b:fb:cf:4c:59:fc:63 robin@<strong>fromhost</strong></pre>
<p>Kopieer public key naar de remote host:</p>
<pre>[robin@<strong>fromhost</strong> ~]$ scp .ssh/id_dsa.pub robin@<strong>tohost</strong>:/home/robin/
Password:
id_dsa.pub               100% 1131     1.1KB/s   00:00</pre>
<p>Voeg de public key toe aan de lijst met geauthorizeerde keys:</p>
<pre>robin@<strong>tohost</strong>$ <em>cat id_dsa.pub &gt;&gt; .ssh/authorized_keys</em></pre>
<p>Zorg dat je .ssh directory en de lijst met keys niet world-readable zijn:</p>
<pre>robin@<strong>tohost</strong>$ <em>chmod 600 .ssh/authorized_keys</em>
robin@<strong>tohost</strong>$ <em>chmod 700 .ssh</em></pre>
]]></content:encoded>
			<wfw:commentRss>http://15augustus.nl/2006/05/30/ssh-host-based-authentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMTP authenticatie</title>
		<link>http://15augustus.nl/2006/05/23/smtp-authenticatie/</link>
		<comments>http://15augustus.nl/2006/05/23/smtp-authenticatie/#comments</comments>
		<pubDate>Tue, 23 May 2006 11:58:57 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Altijd handig]]></category>
		<category><![CDATA[voorbeeld]]></category>

		<guid isPermaLink="false">http://15augustus.nl/?p=8</guid>
		<description><![CDATA[$ printf "robin\0robin\0geheim" &#124; mmencode cm9iaW4Acm9iaW4AZ2VoZWlt $ telnet smtphost 25 Trying 18.67.13.317 Connected to smtphost. Escape character is "^]". 220 Domain.com SMTP Server HELO mailserver 250 smtp.domain.com AUTH PLAIN cm9iaW4Acm9iaW4AZ2VoZWlt 235 Authentication successful $ printf "robin" &#124; mmencode cm9iaW4= $ printf "geheim" &#124; mmencode Z2VoZWlt $ telnet smtphost 25 Trying 18.67.13.317 Connected to smtphost. Escape [...]]]></description>
			<content:encoded><![CDATA[<pre>$ printf "robin\0robin\0geheim" | mmencode
cm9iaW4Acm9iaW4AZ2VoZWlt</pre>
<pre>$ telnet smtphost 25
Trying 18.67.13.317
Connected to smtphost.
Escape character is "^]".
220 Domain.com SMTP Server
HELO mailserver
250 smtp.domain.com
AUTH PLAIN cm9iaW4Acm9iaW4AZ2VoZWlt
235 Authentication successful</pre>
<pre>$ printf "robin" | mmencode
cm9iaW4=
$ printf "geheim" | mmencode
Z2VoZWlt</pre>
<pre>$ telnet smtphost 25
Trying 18.67.13.317
Connected to smtphost.
Escape character is "^]".
220 Domain.com SMTP Server
HELO mailserver
250 smtp.domain.com
AUTH LOGIN
334 VXNlcm5hbWU6
cm9iaW4=
334 UGFzc3dvcmQ6
Z2VoZWlt
235 Authentication successful</pre>
<p>Let op: Gebruik geen echo in plaats van printf; echo stuurt \n !</p>
]]></content:encoded>
			<wfw:commentRss>http://15augustus.nl/2006/05/23/smtp-authenticatie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>POP3 authenticatie</title>
		<link>http://15augustus.nl/2006/05/23/pop3-authenticatie/</link>
		<comments>http://15augustus.nl/2006/05/23/pop3-authenticatie/#comments</comments>
		<pubDate>Tue, 23 May 2006 11:57:19 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Altijd handig]]></category>
		<category><![CDATA[voorbeeld]]></category>

		<guid isPermaLink="false">http://15augustus.nl/?p=7</guid>
		<description><![CDATA[$ telnet pop3host 110 Trying 18.67.13.317 Connected to pop3host. Escape character is "^]". +OK Hello there. USER robin +OK Password required. PASS geheim +OK logged in.]]></description>
			<content:encoded><![CDATA[<pre>$ telnet pop3host 110
Trying 18.67.13.317
Connected to pop3host.
Escape character is "^]".
+OK Hello there.
USER robin
+OK Password required.
PASS geheim
+OK logged in.</pre>
]]></content:encoded>
			<wfw:commentRss>http://15augustus.nl/2006/05/23/pop3-authenticatie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IMAP authenticatie</title>
		<link>http://15augustus.nl/2006/05/23/imap-authenticatie/</link>
		<comments>http://15augustus.nl/2006/05/23/imap-authenticatie/#comments</comments>
		<pubDate>Tue, 23 May 2006 11:56:28 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Altijd handig]]></category>
		<category><![CDATA[voorbeeld]]></category>

		<guid isPermaLink="false">http://15augustus.nl/?p=6</guid>
		<description><![CDATA[AUTH=LOGIN $ telnet imaphost 143 Trying 18.67.13.317... Connected to imaphost. Escape character is "^]". * OK 01 LOGIN robin geheim 01 OK Logged in. AUTH=PLAIN $ printf "robin\0robin\0geheim" &#124; mmencode cm9iaW4Acm9iaW4AZ2VoZWlt $ telnet imaphost 143 Trying 18.67.13.317... Connected to imaphost . Escape character is '^]'. * OK 01 AUTHENTICATE PLAIN + cm9iaW4Acm9iaW4AZ2VoZWlt 01 OK Logged [...]]]></description>
			<content:encoded><![CDATA[<p>AUTH=LOGIN</p>
<pre>$ telnet imaphost 143
Trying 18.67.13.317...
Connected to imaphost.
Escape character is "^]".
* OK
01 LOGIN robin geheim
01 OK Logged in.</pre>
<p>AUTH=PLAIN</p>
<pre>$ printf "robin\0robin\0geheim" | mmencode
cm9iaW4Acm9iaW4AZ2VoZWlt</pre>
<pre>$ telnet imaphost 143
Trying 18.67.13.317...
Connected to imaphost .
Escape character is '^]'.
* OK
01 AUTHENTICATE PLAIN
+
cm9iaW4Acm9iaW4AZ2VoZWlt
01 OK Logged in.
</pre>
]]></content:encoded>
			<wfw:commentRss>http://15augustus.nl/2006/05/23/imap-authenticatie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

