<?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>Disenchant's Blog &#187; Linux</title>
	<atom:link href="http://www.disenchant.ch/blog/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.disenchant.ch/blog</link>
	<description>Blog of Sven Vetsch / Disenchant</description>
	<lastBuildDate>Thu, 22 Oct 2009 16:25:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Teaching John The Ripper how to Crack MD5 Hashes and more</title>
		<link>http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes-and-more/277</link>
		<comments>http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes-and-more/277#comments</comments>
		<pubDate>Mon, 05 Oct 2009 10:55:16 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/?p=277</guid>
		<description><![CDATA[Long time ago, I posted a guide on how to make John the Ripper able to crack MD5 hashes (http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes/106). In that posting where some errors and also it&#8217;s not up to date so I made a small shell script which downloads, patches and compile JtR 1.7.3.4 for you automatically
wget http://www.openwall.com/john/g/john-1.7.3.4.tar.gz
tar xvf john-1.7.3.4.tar.gz
wget http://www.openwall.com/john/contrib/john-1.7.3.4-jumbo-1.diff.gz
gunzip john-1.7.3.4-jumbo-1.diff.gz
cp [...]]]></description>
			<content:encoded><![CDATA[<p>Long time ago, I posted a guide on how to make <a href="http://www.openwall.com/john">John the Ripper</a> able to crack MD5 hashes (<a href="http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes/106">http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes/106</a>). In that posting where some errors and also it&#8217;s not up to date so I made a small shell script which downloads, patches and compile JtR 1.7.3.4 for you automatically</p>
<p><em>wget http://www.openwall.com/john/g/john-1.7.3.4.tar.gz<br />
tar xvf john-1.7.3.4.tar.gz<br />
wget http://www.openwall.com/john/contrib/john-1.7.3.4-jumbo-1.diff.gz<br />
gunzip john-1.7.3.4-jumbo-1.diff.gz<br />
cp john-1.7.3.4-jumbo-1.diff ./john-1.7.3.4<br />
cd ./john-1.7.3.4<br />
patch -p1 &lt; john-1.7.3.4-jumbo-1.diff<br />
cd ./src/<br />
make clean linux-x86-any</em></p>
<p>This patched John the Ripper can attack the following formats:<br />
DES/BSDI/MD5/BF/AFS/LM/NT/XSHA/PO/raw-MD5/IPB2/raw-sha1/md5a/hmac-md5/KRB5/bfegg/nsldap/ssha/openssha/oracle/MYSQL/mysql-sha1/mscash/lotus5/DOMINOSEC/NETLM/NETNTLM/NETLMv2/NETHALFLM/mssql/mssql05/epi/phps/mysql-fast/pix-md5/sapG/sapB/md5ns/HDAA</p>
<p>I hope you enjoy it <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes-and-more/277/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Teaching John The Ripper how to Crack MD5 Hashes</title>
		<link>http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes/106</link>
		<comments>http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes/106#comments</comments>
		<pubDate>Thu, 17 Jan 2008 11:33:05 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes/106</guid>
		<description><![CDATA[Today I was playing around with the well known password cracking tool John the Ripper (JtR) and was looking forward to crack some MD5 hashes. Unfortunately, John still not supports raw-MD5 out of the box and so I was searching the web for a solution. It took me some minutes until I found out, that [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was playing around with the well known password cracking tool <a href="http://www.openwall.com/john/">John the Ripper (JtR)</a> and was looking forward to crack some MD5 hashes. Unfortunately, John still not supports raw-MD5 out of the box and so I was searching the web for a solution. It took me some minutes until I found out, that there are unofficial patches for John&#8217;s source code and so I simply patched it and tried to compile. For any reason, I run into problems (doesn&#8217;t matter now what problems <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  ) and even after about half an hour searching the web for a solution I didn&#8217;t find anything. Then a few minutes later I found a simple howto for how to patch and compile John so that you won&#8217;t have any problems. The site which solved my problem was <a href="http://www.gurx.net/index.php?sec=documentacio&#038;element=28">gurx.net</a> and I couldn&#8217;t find it faster because it&#8217;s not written in English nor German. Now of course I&#8217;ll show you how to do it the gurx.net-way but with support for even many more algorithms than just MD5.</p>
<blockquote><p>
mkdir john<br />
cd john<br />
wget http://www.openwall.com/john/f/john-1.7.2.tar.bz2<br />
tar -xvf john-1.7.2.tar<br />
cd john-1.7.2<br />
wget ftp://ftp.openwall.com/pub/projects/john/contrib/john-1.7.2-all-9.diff.gz<br />
gzip -d john-1.7.2-all-9.diff.gz<br />
patch -p1 < john-1.7.2-all-9.diff.gz<br />
cd src<br />
make<br />
make clean linux-x86-any
</p></blockquote>
<p>Now you can use John out of the &#8220;run&#8221; directory.</p>
<blockquote><p>
./john -format=raw-MD5 /home/disenchant/md5_hashes_to_crack.txt
</p></blockquote>
<p>raw-MD5 means that you&#8217;ve got an input file (/home/disenchant/md5_hashes_to_crack.txt) like the following:</p>
<blockquote><p>
Alice:5f4dcc3b5aa765d61d8327deb882cf99<br />
Bob:1c0b76fce779f78f51be339c49445c49<br />
&#8230;
</p></blockquote>
<p>PS: My machine&#8217;s a <a href="http://www.xubuntu.org/">Xubuntu</a> Edgy but this should work with any Linux box <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes/106/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Recording your screen on Linux</title>
		<link>http://www.disenchant.ch/blog/recording-you-screen-on-linux/18</link>
		<comments>http://www.disenchant.ch/blog/recording-you-screen-on-linux/18#comments</comments>
		<pubDate>Wed, 08 Nov 2006 16:58:40 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/recording-you-screen-on-linux/18</guid>
		<description><![CDATA[Everyone who ever tried to recording his screen on a Linux know, that most of the possible ways sucks because they need so much performance that it&#8217;ll be impossible to work as usual if you&#8217;re recording. Now I found today a really cool way how to do it so that it don&#8217;t need as much [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone who ever tried to recording his screen on a Linux know, that most of the possible ways sucks because they need so much performance that it&#8217;ll be impossible to work as usual if you&#8217;re recording. Now I found today a really cool way how to do it so that it don&#8217;t need as much performance and also generates small files (Flash Movies).</p>
<p>Now here&#8217;s the HowTo:</p>
<p>Step 1:<br />
Get vnc2swf<br />
<a target="_blank" title="vnc2swf" href="http://www.unixuser.org/~euske/vnc2swf/pyvnc2swf-0.9.1.tar.gz"> http://www.unixuser.org/~euske/vnc2swf/pyvnc2swf-0.9.1.tar.gz</a></p>
<p>Step 2:<br />
Install the libs you need (it shows you which are left)</p>
<p>Step 3:<br />
Install x11vnc</p>
<p>Step 4:<br />
Start a VNC Server with x11vnc and connect to it like this:<br />
<em>python vnc2swf.py -n -o output.swf localhost:0</em></p>
<p>Step 5:<br />
That&#8217;s it -> Enjoy <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/recording-you-screen-on-linux/18/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
