<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>#ifdef B0FH</title>
	<atom:link href="http://b0fh.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://b0fh.wordpress.com</link>
	<description>#define ANSWER_TO_LIFE_THE_UNIVERSE_AND_EVERYTHING_ELSE 42</description>
	<lastBuildDate>Thu, 26 Feb 2009 14:57:58 +0000</lastBuildDate>
	<language>it</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='b0fh.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>#ifdef B0FH</title>
		<link>http://b0fh.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://b0fh.wordpress.com/osd.xml" title="#ifdef B0FH" />
	<atom:link rel='hub' href='http://b0fh.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Remote debugging using qemu + gdb for dummies&#8230;</title>
		<link>http://b0fh.wordpress.com/2007/08/28/remote-debugging-using-qemu-gdb-for-dummies/</link>
		<comments>http://b0fh.wordpress.com/2007/08/28/remote-debugging-using-qemu-gdb-for-dummies/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 15:47:18 +0000</pubDate>
		<dc:creator>_init</dc:creator>
				<category><![CDATA[OsDev]]></category>

		<guid isPermaLink="false">http://b0fh.wordpress.com/2007/08/28/remote-debugging-using-qemu-gdb-for-dummies/</guid>
		<description><![CDATA[Debuggare un kernel fatto in casa e` un&#8217;operazione molto piu` semplice di quello che si possa immaginare. Ovviamente e` impossibile effettuare un debug preciso &#8211; che non sia una serie di routine di verbosity o debug usando le #ifdef &#8211; senza l&#8217;ausilio di un emulatore, questo perche` non vi e` la presenza di un sistema [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=b0fh.wordpress.com&amp;blog=1309994&amp;post=9&amp;subd=b0fh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Debuggare un kernel fatto in casa e` un&#8217;operazione molto piu` semplice di quello che si possa immaginare.<br />
Ovviamente e` impossibile effettuare un debug preciso &#8211; che non sia una serie di routine di verbosity o debug usando le #ifdef &#8211; senza l&#8217;ausilio di un emulatore, questo perche` non vi e` la presenza di un sistema operativo che permetta l&#8217;esecuzione del debugger stesso, quindi avremmo grosse difficolta` a vedere lo stato dei registri in un dato momento.<br />
Un emulatore abbastanza usato per lo sviluppo di OS artigianali e` proprio Qemu, che ha il vantaggio di essere molto intuitivo con delle funzionalita` relativamente avanzate.<br />
Fra le varie features ce n&#8217;e` una fondamentale per il nostro scopo, ovvero il listening su una determinata porta &#8211; che di default e` la 1234 &#8211; attivabile tramite lo switch -s.<br />
Oltre l&#8217;attivazione dello switch -s in qemu, abbiamo la necessita` di compilare il nostro kernel con l&#8217;opzione -g<br />
da man page di gcc:</p>
<pre><span class="k">-g  Produce debugging information ...</span></pre>
<p>In questo caso non facciamo altro che attivare l&#8217;opzione con cui gcc produrra` le informazioni di debug all&#8217;interno della kernel image stessa (rendendola un tantino piu` grande).<br />
Occhio quindi nel Makefile ad includere l&#8217;opzione -g<br />
Qemu verra` quindi avviato cosi:</p>
<pre><span class="k">[init@underground]:~$ qemu -s -S &lt;harddrive.img&gt;</span></pre>
<p>Dalla man page di qemu:</p>
<pre><span class="k">-s  Wait gdb connection to port 1234.</span></pre>
<p>In questo modo non ci resta che lanciare gdb da remoto o da locale</p>
<pre><span class="k">[init@underground]:~$ gdb

(gdb) target remote localhost:1234</span></pre>
<p>Come ultima operazione bisogna importare le informazioni di debug in questo modo dalla console di gdb:</p>
<pre><span class="k">(gdb) symbol-file kernel.elf</span></pre>
<p>adesso sono disponibili anche i simboli di debug.<br />
Dopo di che avete a disposizione tutta la potenza di gdb per effettuare i vostri debug.<br />
That&#8217;s all folks&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/b0fh.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/b0fh.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/b0fh.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/b0fh.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/b0fh.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/b0fh.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/b0fh.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/b0fh.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/b0fh.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/b0fh.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/b0fh.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/b0fh.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/b0fh.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/b0fh.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/b0fh.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/b0fh.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=b0fh.wordpress.com&amp;blog=1309994&amp;post=9&amp;subd=b0fh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://b0fh.wordpress.com/2007/08/28/remote-debugging-using-qemu-gdb-for-dummies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dd711feec1c410f18045727e9ed4ea94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">_init</media:title>
		</media:content>
	</item>
		<item>
		<title>United nations&#8230;what a mess!</title>
		<link>http://b0fh.wordpress.com/2007/08/13/united-nationswhat-a-mess/</link>
		<comments>http://b0fh.wordpress.com/2007/08/13/united-nationswhat-a-mess/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 00:05:25 +0000</pubDate>
		<dc:creator>_init</dc:creator>
				<category><![CDATA[free & hack]]></category>

		<guid isPermaLink="false">http://b0fh.wordpress.com/2007/08/13/united-nationswhat-a-mess/</guid>
		<description><![CDATA[In questi giorni abbiamo tanto sentito parlare del piccolo problema fatto emergere da tre ragazzi, i quali hanno sfruttato, con un semplice sql injection, una vulnerabilita` francamente evitabile. Come slashdot ci suggerisce, su questo sito troverete qualche screenshot e qualche cenno di ricostruzione del banale quanto efficace injection utilizzato. http://hackademix.net/2007/08/12/united-nations-vs-sql-injections/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=b0fh.wordpress.com&amp;blog=1309994&amp;post=8&amp;subd=b0fh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In questi giorni abbiamo tanto sentito parlare del piccolo problema fatto emergere da tre ragazzi, i quali hanno sfruttato, con un semplice <a href="http://it.wikipedia.org/wiki/SQL_injection">sql injection</a>, una vulnerabilita` francamente evitabile.<br />
Come  slashdot ci suggerisce, su questo sito troverete qualche screenshot e qualche cenno di ricostruzione del banale quanto efficace injection utilizzato.</p>
<p><a href="http://hackademix.net/2007/08/12/united-nations-vs-sql-injections/">http://hackademix.net/2007/08/12/united-nations-vs-sql-injections/</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/b0fh.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/b0fh.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/b0fh.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/b0fh.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/b0fh.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/b0fh.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/b0fh.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/b0fh.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/b0fh.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/b0fh.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/b0fh.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/b0fh.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/b0fh.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/b0fh.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/b0fh.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/b0fh.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=b0fh.wordpress.com&amp;blog=1309994&amp;post=8&amp;subd=b0fh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://b0fh.wordpress.com/2007/08/13/united-nationswhat-a-mess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dd711feec1c410f18045727e9ed4ea94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">_init</media:title>
		</media:content>
	</item>
		<item>
		<title>Sara` un difetto quello?</title>
		<link>http://b0fh.wordpress.com/2007/07/06/sara-un-difetto-quello/</link>
		<comments>http://b0fh.wordpress.com/2007/07/06/sara-un-difetto-quello/#comments</comments>
		<pubDate>Fri, 06 Jul 2007 19:04:46 +0000</pubDate>
		<dc:creator>_init</dc:creator>
				<category><![CDATA[free & hack]]></category>

		<guid isPermaLink="false">http://b0fh.wordpress.com/2007/07/06/sara-un-difetto-quello/</guid>
		<description><![CDATA[Ecco qui un sito essenziale ma molto utile con esempi di programmazione non proprio sicura, utile per esercitarsi a sploittare in modi differenti, differenti tipi di vulnerabilita`: Insecure programming<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=b0fh.wordpress.com&amp;blog=1309994&amp;post=7&amp;subd=b0fh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ecco qui un sito essenziale ma molto utile con esempi di programmazione non proprio sicura, utile per esercitarsi a sploittare in modi differenti, differenti tipi di vulnerabilita`:</p>
<p><a href="http://community.core-sdi.com/~gera/InsecureProgramming/" target="_blank">Insecure programming</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/b0fh.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/b0fh.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/b0fh.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/b0fh.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/b0fh.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/b0fh.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/b0fh.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/b0fh.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/b0fh.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/b0fh.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/b0fh.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/b0fh.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/b0fh.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/b0fh.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/b0fh.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/b0fh.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=b0fh.wordpress.com&amp;blog=1309994&amp;post=7&amp;subd=b0fh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://b0fh.wordpress.com/2007/07/06/sara-un-difetto-quello/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dd711feec1c410f18045727e9ed4ea94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">_init</media:title>
		</media:content>
	</item>
		<item>
		<title>Ma bootta quel kernel</title>
		<link>http://b0fh.wordpress.com/2007/07/01/ma-bootta-quel-kernel/</link>
		<comments>http://b0fh.wordpress.com/2007/07/01/ma-bootta-quel-kernel/#comments</comments>
		<pubDate>Sun, 01 Jul 2007 23:53:46 +0000</pubDate>
		<dc:creator>_init</dc:creator>
				<category><![CDATA[OsDev]]></category>

		<guid isPermaLink="false">http://b0fh.wordpress.com/2007/07/01/ma-bootta-quel-kernel/</guid>
		<description><![CDATA[Segnalo una interessantissima e molto dettagliata raccolta di informazioni (probabilmente nota ai piu`) e di specifiche del multiboot header di GRUB, con tanto di esempio di dummy kernel: Multiboot Specification utile per chi volesse approfondire l’argomento “boot loader” ma senza farsi male.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=b0fh.wordpress.com&amp;blog=1309994&amp;post=6&amp;subd=b0fh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Segnalo una interessantissima e molto dettagliata raccolta di informazioni (probabilmente nota ai piu`) e di specifiche del multiboot header di GRUB, con tanto di esempio di dummy kernel:</p>
<p><a href="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html">Multiboot Specification</a></p>
<p>utile per chi volesse approfondire l’argomento “boot loader” ma senza farsi male.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/b0fh.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/b0fh.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/b0fh.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/b0fh.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/b0fh.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/b0fh.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/b0fh.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/b0fh.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/b0fh.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/b0fh.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/b0fh.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/b0fh.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/b0fh.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/b0fh.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/b0fh.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/b0fh.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=b0fh.wordpress.com&amp;blog=1309994&amp;post=6&amp;subd=b0fh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://b0fh.wordpress.com/2007/07/01/ma-bootta-quel-kernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dd711feec1c410f18045727e9ed4ea94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">_init</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://b0fh.wordpress.com/2007/07/01/hello-world/</link>
		<comments>http://b0fh.wordpress.com/2007/07/01/hello-world/#comments</comments>
		<pubDate>Sun, 01 Jul 2007 09:48:53 +0000</pubDate>
		<dc:creator>_init</dc:creator>
				<category><![CDATA[Bullshits]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[.data msg: .string "Hello World\\n" len: .long . - msg .text .globl _start _start: push $len push $msg push $1 movl $0x4, %eax call _syscall addl $12, %esp push $0 movl $0x1, %eax call _syscall _syscall: int $0x80 ret Un saluto in tutte le lingue del mondo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=b0fh.wordpress.com&amp;blog=1309994&amp;post=1&amp;subd=b0fh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre><span class="k">.data</span>

msg:
    <span class="k">.string</span> <span class="s">"Hello World\\n"</span>

len:
    <span class="k">.long</span> . - msg

<span class="k">.text</span>
<span class="k">.globl</span> _start

_start:
    <span class="k">push</span> $len        <span class="c"></span>
    <span class="k">push</span> $msg       <span class="c"></span>
    <span class="k">push</span> $1          <span class="c"></span>
    <span class="k">movl</span> $0x4, %eax <span class="c"></span>
    <span class="k">call</span> _syscall
    <span class="k">addl</span> $12, %esp   <span class="c"></span>

    <span class="k">push</span> $0
    <span class="k">movl</span> $0x1, %eax  <span class="c"></span>
    <span class="k">call</span> _syscall

_syscall:
    <span class="k">int</span>  $0x80
    <span class="k">ret</span><a href="http://www.ntecs.de/old-hp/uu9r/lang/html/lang.en.html" target="_blank"></a></pre>
<p><a href="http://www.ntecs.de/old-hp/uu9r/lang/html/lang.en.html"> Un saluto in tutte le lingue del mondo</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/b0fh.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/b0fh.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/b0fh.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/b0fh.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/b0fh.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/b0fh.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/b0fh.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/b0fh.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/b0fh.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/b0fh.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/b0fh.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/b0fh.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/b0fh.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/b0fh.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/b0fh.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/b0fh.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=b0fh.wordpress.com&amp;blog=1309994&amp;post=1&amp;subd=b0fh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://b0fh.wordpress.com/2007/07/01/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dd711feec1c410f18045727e9ed4ea94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">_init</media:title>
		</media:content>
	</item>
	</channel>
</rss>
