<?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>In Nomine - The Lotus Land</title>
	<atom:link href="http://www.in-nomine.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.in-nomine.org</link>
	<description>The focused mind can pierce through stone...</description>
	<lastBuildDate>Wed, 24 Apr 2013 05:52:14 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Mercurial and safely storing passwords</title>
		<link>http://www.in-nomine.org/2013/04/21/mercurial-and-safely-storing-passwords/</link>
		<comments>http://www.in-nomine.org/2013/04/21/mercurial-and-safely-storing-passwords/#comments</comments>
		<pubDate>Sun, 21 Apr 2013 09:10:12 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[bitbucket]]></category>
		<category><![CDATA[hg]]></category>
		<category><![CDATA[keyring]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[vcs]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=720</guid>
		<description><![CDATA[Mercurial allows for tying in keyring configuration for those of us who do not want to store passwords in plain-text in our .hgrc files or constantly using SSH. First install the Python keyring library by running pip install keyring. After &#8230; <a href="http://www.in-nomine.org/2013/04/21/mercurial-and-safely-storing-passwords/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Mercurial allows for tying in keyring configuration for those of us who do not want to store passwords in plain-text in our <code>.hgrc</code> files or constantly using SSH.</p>
<p>First install the Python keyring library by running <code>pip install keyring</code>. After that is installed, checkout <a title="Mercurial keyring repository" href="https://bitbucket.org/Mekk/mercurial_keyring/">https://bitbucket.org/Mekk/mercurial_keyring/</a> and add to <code>$HOME/.hgrc</code> the following:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ini" style="font-family:monospace;"><span style="color: #000066; font-weight:bold;"><span style="">&#91;</span>extensions<span style="">&#93;</span></span>
<span style="color: #000099;">mercurial_keyring</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> ~/path/to/mercurial_keyring/mercurial_keyring.py</span></pre></td></tr></table></div>

<p>Next up, configure your repositories, e.g. in the case of Bitbucket I use:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ini" style="font-family:monospace;"><span style="color: #000066; font-weight:bold;"><span style="">&#91;</span>auth<span style="">&#93;</span></span>
bitbucket.prefix <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> bitbucket.org/asmodai</span>
bitbucket.username <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> asmodai</span>
bitbucket.schemes <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> https</span></pre></td></tr></table></div>

<p>Mercurial keyring will automatically decide on the best keyring to use. On a FreeBSD system with no Gnome or other systems providing a keyring, if you do not specify a specific keyring, the system will use the file <code>~/.local/share/python_keyring/keyring_pass.cfg</code>. This keyring file stores the passwords encoded in Base64 in plain-text. This is not quite what you would want from a security point of view. You can configure which backend store to use by editing <code>~/.local/share/python-keyring/keyringrc.cfg</code>. To get a plain-text file with encrypted keys use the following configuration:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ini" style="font-family:monospace;"><span style="color: #000066; font-weight:bold;"><span style="">&#91;</span>backend<span style="">&#93;</span></span>
<span style="color: #000099;">default-keyring</span><span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;">keyring.backend.CryptedFileKeyring</span></pre></td></tr></table></div>

<p>This will create the file <code>~/.local/share/python-keyring/crypted_pass.cfg</code> after initializing the backend store with a password. Look at the documentation for keyring on what other <a title="Configure your keyring library" href="https://pypi.python.org/pypi/keyring#configure-your-keyring-lib">configuration options</a> are available.</p>
<p><strong>Note:</strong> make sure the PyCrypto dependency is installed with the <code>_fastmath</code> module. This in turn depends on the <a title="The GNU Multiple Precision Arithmetic Library" href="http://gmplib.org/"><code>gmp</code></a> library.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2013/04/21/mercurial-and-safely-storing-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Separating multiple SVN projects into individual Hg repositories</title>
		<link>http://www.in-nomine.org/2013/04/20/separating-multiple-svn-projects-into-individual-hg-repositories/</link>
		<comments>http://www.in-nomine.org/2013/04/20/separating-multiple-svn-projects-into-individual-hg-repositories/#comments</comments>
		<pubDate>Sat, 20 Apr 2013 09:21:03 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[vcs]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=736</guid>
		<description><![CDATA[If you have a Subversion repository setup with multiple top-level projects and their typical  branches/tags/trunk setup and want to migrate these to individual Mercurial (Hg) repositories, you can do this with the convert extension. First you need to enable convert &#8230; <a href="http://www.in-nomine.org/2013/04/20/separating-multiple-svn-projects-into-individual-hg-repositories/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>If you have a Subversion repository setup with multiple top-level projects and their typical  branches/tags/trunk setup and want to migrate these to individual Mercurial (Hg) repositories, you can do this with the convert extension.</p>
<p>First you need to enable convert in your <code>.hgrc</code> by adding a section like the following:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ini" style="font-family:monospace;"><span style="color: #000066; font-weight:bold;"><span style="">&#91;</span>extensions<span style="">&#93;</span></span>
<span style="color: #000099;">convert</span> <span style="color: #000066; font-weight:bold;">=</span></pre></td></tr></table></div>

<p>Next, if needed, create a plain-text file, e.g. author-map.txt, containing SVN username to Hg author mappings, e.g. <code>asmodai=Jeroen Ruigrok van der Werven&lt;email@address.tld&gt;</code>.</p>
<p>Next run Hg as follows:</p>
<p><code>hg --authors author-map.txt --config convert.svn.branches=project/branches --config convert.svn.tags=project/tags --config convert.svn.trunk=project/trunk path/to/svn/repository path/to/destination/hg/repository</code></p>
<p>This will start a SVN to Hg conversion, picking up only the changes and commit messages applicable for the various paths you gave for the branches, tags, and trunk, effectively splitting off this project from the main SVN tree into its own Hg repository.</p>
<p>Do note that for large SVN repositories this might not be the most efficient conversion way forward. In that case converting once from SVN to Hg and then split off Hg into many Hg repositories might be faster. Will adjust this post when I write that up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2013/04/20/separating-multiple-svn-projects-into-individual-hg-repositories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android 4.0 UI stencil</title>
		<link>http://www.in-nomine.org/2013/03/05/android-4-0-ui-stencil/</link>
		<comments>http://www.in-nomine.org/2013/03/05/android-4-0-ui-stencil/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 10:24:32 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[stencil]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=715</guid>
		<description><![CDATA[Just received my Android 4.0 UI stencil from UI Stencils. I love how it works, makes UI prototyping for Android much nicer when drawing out using pen and paper. I recommend it.]]></description>
				<content:encoded><![CDATA[<p>Just received my<a title="Android stencil kit" href="http://www.uistencils.com/products/android-stencil-kit"> Android 4.0 UI stencil</a> from <a title="UI Stencils home page" href="http://www.uistencils.com/">UI Stencils</a>. I love how it works, makes UI prototyping for Android much nicer when drawing out using pen and paper. I recommend it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2013/03/05/android-4-0-ui-stencil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse and TestNG</title>
		<link>http://www.in-nomine.org/2013/02/05/eclipse-and-testng/</link>
		<comments>http://www.in-nomine.org/2013/02/05/eclipse-and-testng/#comments</comments>
		<pubDate>Tue, 05 Feb 2013 13:55:01 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[testng]]></category>
		<category><![CDATA[unittesting]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=630</guid>
		<description><![CDATA[I was playing around with Eclipse and TestNG, the thing you need/want to do is, after you have installed testng via de Eclipse market place and restart Eclipse to go to the project build path. So right click the project &#8230; <a href="http://www.in-nomine.org/2013/02/05/eclipse-and-testng/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I was playing around with Eclipse and TestNG, the thing you need/want to do is, after you have installed testng via de Eclipse market place and restart Eclipse to go to the project build path.</p>
<p>So right click the project and select from the popup menu <code>Build Path » Configure Build Path...</code></p>
<p>In this window, make sure you have selected the <code>Libraries</code> tab in the right-hand side of the window.</p>
<p>Next select <code>Add Library...</code> and from the resulting window that pops up select TestNG (or JUnit).</p>
<p>When you select <code>Next</code> or <code>Finish</code> (depending whether you picked TestNG or JUnit), you will then see TestNG under the JRE System Library entry as another library entry. If you expand this you see the <code>testng.jar</code> being included and pointing to the right jar file that&#8217;s in Eclipse&#8217;s plugins directory.</p>
<p>When you now press <code>OK</code> you should see the imports getting resolved.</p>
<p>You will need to remove any external jar dependencies for TestNG or JUnit of course, because it&#8217;s double and will most likely lead to problems.</p>
<p>Now, when you go to <code>Run » Run Configurations...</code> you see a <code>TestNG (JUnit)</code> entry. When you select that entry and create a new configuration underneath it, it should already resolve everything you need (classes, packages, and so on).</p>
<p>Oh, do keep in mind that you will have to mark the <code>test</code> folder as a source folder for it all to work. Right click the folder, select <code>Build Path » Use as Source Folder</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2013/02/05/eclipse-and-testng/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TortoiseHG and wildcard certificates</title>
		<link>http://www.in-nomine.org/2013/02/02/tortoisehg-and-wildcard-certificates/</link>
		<comments>http://www.in-nomine.org/2013/02/02/tortoisehg-and-wildcard-certificates/#comments</comments>
		<pubDate>Sat, 02 Feb 2013 15:23:20 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[certificates]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[tortoisehg]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=705</guid>
		<description><![CDATA[Having resolved recent SSL certificate issues with Mercurial/TortoiseHG, I now encountered a similar issue with the wildcard certificate for *.google.com where getting a clone would result in a "SSL: Server certificate verify failed" error. One way around this issue is &#8230; <a href="http://www.in-nomine.org/2013/02/02/tortoisehg-and-wildcard-certificates/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Having resolved<a title="TortoiseHG and non-standard SSL certificates" href="http://www.in-nomine.org/2013/01/31/tortoisehg-and-non-standard-ssl-certificates/"> recent SSL certificate issues with Mercurial/TortoiseHG</a>, I now encountered a similar issue with the wildcard certificate for <code>*.google.com</code> where getting a clone would result in a <code>"SSL: Server certificate verify failed"</code> error.</p>
<p>One way around this issue is to add the fingerprint for this certificate to your configuration. Currently for <code>*.google.com</code> this is <code>00:d5:88:35:29:b9:7f:03:92:60:c2:04:e4:b7:01:f0:07:53:15:a8</code> and one way to get this from a Unix command line is with <code>openssl s_client -connect code.google.com:443 &lt; /dev/null 2&gt; /dev/null | openssl x509 -in cert-code -fingerprint -noout -in /dev/stdin | tr "[:upper:]" "[:lower:]"</code>. This corresponds with Chrome&#8217;s certificate view&#8217;s thumbprint field, you just need to add colons.</p>
<p>Right click in Explorer, select <code>TortoiseHG » Global Settings</code> and then click <code>Edit File</code> and add the following:</p>
<p><code>[hostfingerprints]<br />
code.google.com = 00:d5:88:35:29:b9:7f:03:92:60:c2:04:e4:b7:01:f0:07:53:15:a8</code></p>
<p>This should make Mercurial/TortoiseHG work, at least until the certificate expires and you need to update it with the latest fingerprint.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2013/02/02/tortoisehg-and-wildcard-certificates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TortoiseHG and non-standard SSL certificates</title>
		<link>http://www.in-nomine.org/2013/01/31/tortoisehg-and-non-standard-ssl-certificates/</link>
		<comments>http://www.in-nomine.org/2013/01/31/tortoisehg-and-non-standard-ssl-certificates/#comments</comments>
		<pubDate>Thu, 31 Jan 2013 14:11:35 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[cacert]]></category>
		<category><![CDATA[certificates]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[tortoisehg]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=701</guid>
		<description><![CDATA[For my own development I use Mercurial and TortoiseHG for my version control system. I also use, at the moment, a CAcert certificate to use HTTPS with my repositories. I am not sure what changed when, but apparently the certificates &#8230; <a href="http://www.in-nomine.org/2013/01/31/tortoisehg-and-non-standard-ssl-certificates/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>For my own development I use <a title="Mercurial and TortoiseHG website" href="http://mercurial.selenic.com/">Mercurial and TortoiseHG</a> for my version control system. I also use, at the moment, a <a title="CAcert website" href="http://www.cacert.org/">CAcert</a> certificate to use HTTPS with my repositories. I am not sure what changed when, but apparently the certificates now get verified. So this causes obvious problems trying to push or pull due to <code>"SSL: Server certificate verify failed"</code> errors.</p>
<p>To make this work on a Windows 7 machine with TortoiseHG in stalled, first download the <a title="CAcert certificates" href="http://www.cacert.org/index.php?id=3">CAcert root PEM certificate</a> and place it some permanent directory. Next open the TortoiseHG global settings (right click somewhere in Explorer and select <code>TortoiseHG » Global Settings</code>). In the window that opens click the Edit File button. If it does not exist yet create a section similar to this:</p>
<p><code>[web]<br /> cacerts = C:\path\to\cacert-root.pem</code></p>
<p>Press <code>Save</code> and <code>OK</code> and any push and pull action with HTTPS URLs should work as they ought to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2013/01/31/tortoisehg-and-non-standard-ssl-certificates/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unbound unable to read root zone</title>
		<link>http://www.in-nomine.org/2012/12/05/unbound-unable-to-read-root-zone/</link>
		<comments>http://www.in-nomine.org/2012/12/05/unbound-unable-to-read-root-zone/#comments</comments>
		<pubDate>Wed, 05 Dec 2012 11:49:10 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[ldns]]></category>
		<category><![CDATA[unbound]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=695</guid>
		<description><![CDATA[After upgrading various ports on my FreeBSD system and days later a full world and kernel, a reboot showed me that unbound didn&#8217;t start. The system reported that: error: reading root hints /usr/local/etc/unbound/named.cache 88: Empty line was returned It turns &#8230; <a href="http://www.in-nomine.org/2012/12/05/unbound-unable-to-read-root-zone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>After upgrading various ports on my FreeBSD system and days later a full world and kernel, a reboot showed me that unbound didn&#8217;t start. The system reported that:</p>
<pre>error: reading root hints
/usr/local/etc/unbound/named.cache 88: Empty line was returned</pre>
<p>It turns out that from ldns 1.6.13 to 1.6.14 there is an API change that caused problems for unbound. After upgrading ldns you also need to recompile unbound to pick up on these changes. If you do not, you will run into the problem above.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2012/12/05/unbound-unable-to-read-root-zone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeBSD and pkgng</title>
		<link>http://www.in-nomine.org/2012/11/20/freebsd-and-pkgng/</link>
		<comments>http://www.in-nomine.org/2012/11/20/freebsd-and-pkgng/#comments</comments>
		<pubDate>Tue, 20 Nov 2012 08:47:34 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[pkgng]]></category>
		<category><![CDATA[ports]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=691</guid>
		<description><![CDATA[I am really impressed with pkgng. On the mebsd website there&#8217;s a handy explanation and tutorial that&#8217;s really worth reading to get up to speed.]]></description>
				<content:encoded><![CDATA[<p>I am really impressed with <a title="pkgng Github repository" href="https://github.com/pkgng/pkgng">pkgng</a>. On the mebsd website there&#8217;s a <a title="pkgng first look" href="http://mebsd.com/make-build-your-freebsd-word/pkgng-first-look-at-freebsds-new-package-manager.html">handy explanation and tutorial</a> that&#8217;s really worth reading to get up to speed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2012/11/20/freebsd-and-pkgng/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PS Vita and Near location</title>
		<link>http://www.in-nomine.org/2012/11/02/ps-vita-and-near-location/</link>
		<comments>http://www.in-nomine.org/2012/11/02/ps-vita-and-near-location/#comments</comments>
		<pubDate>Fri, 02 Nov 2012 20:37:07 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[ps vita]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=688</guid>
		<description><![CDATA[If you try to use the PS Vita&#8217;s Near funcitonality over WiFi and get &#8220;Location data cannot be obtained&#8221; constantly, try to turn off the Vita completely (hold the power button at the top for a few seconds) and then &#8230; <a href="http://www.in-nomine.org/2012/11/02/ps-vita-and-near-location/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>If you try to use the PS Vita&#8217;s Near funcitonality over WiFi and get &#8220;Location data cannot be obtained&#8221; constantly, try to turn off the Vita completely (hold the power button at the top for a few seconds) and then turn it on again. This at least solved it for my PS Vita.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2012/11/02/ps-vita-and-near-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeBSD, p0f, and USB pcap</title>
		<link>http://www.in-nomine.org/2012/11/02/freebsd-p0f-and-usb-pcap/</link>
		<comments>http://www.in-nomine.org/2012/11/02/freebsd-p0f-and-usb-pcap/#comments</comments>
		<pubDate>Fri, 02 Nov 2012 09:53:44 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[p0f]]></category>
		<category><![CDATA[pcap]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=685</guid>
		<description><![CDATA[If, like me, you had a working FreeBSD system with amavisd-new and p0f set up, you might find that p0f suddenly stopped working at some point. The cause for this is that it tries to use pcap on the USB &#8230; <a href="http://www.in-nomine.org/2012/11/02/freebsd-p0f-and-usb-pcap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>If, like me, you had a working FreeBSD system with amavisd-new and p0f set up, you might find that p0f suddenly stopped working at some point. The cause for this is that it tries to use pcap on the USB bus, which it cannot do. The solution is to put <code>hw.usb.no_pf=1</code> in your <code>/boot/loader.conf</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2012/11/02/freebsd-p0f-and-usb-pcap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
