<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/1.5.1-alpha" -->
<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/"
>

<channel>
	<title>StvOR!</title>
	<link>http://stvor.blogsome.com</link>
	<description>When you least expect it ...</description>
	<pubDate>Thu, 27 Mar 2008 22:28:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1-alpha</generator>
	<language>en</language>

		<item>
		<title>Link: recover deleted files on ext3</title>
		<link>http://stvor.blogsome.com/2008/03/27/link-recover-deleted-files-on-ext3/</link>
		<comments>http://stvor.blogsome.com/2008/03/27/link-recover-deleted-files-on-ext3/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 22:27:25 +0000</pubDate>
		<dc:creator>stvor</dc:creator>
		
	<category>All</category>
	<category>Linux</category>
	<category>Security</category>
		<guid>http://stvor.blogsome.com/2008/03/27/link-recover-deleted-files-on-ext3/</guid>
		<description><![CDATA[<p>HOWTO recover deleted files on an ext3 file system by Carlo Wood via LWN</p>

<p>quote:</p>

<p>The tool that I wrote assumes a spike of recently deleted files (shortly before the last unmount). It does NOT deal with a corrupted file system, only with accidently but cleanly deleted files.</p>

<p>Tool doesn&#8217;t recover in place so it only [...]</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://stvor.blogsome.com/go.php?http://www.xs4all.nl/~carlo17/howto/undelete_ext3.html">HOWTO recover deleted files on an ext3 file system</a> by Carlo Wood via <a href="http://stvor.blogsome.com/go.php?http://lwn.net/Articles/273276/">LWN</a></p>

<p>quote:</p>

<blockquote>
  <p>The tool that I wrote assumes a spike of recently deleted files (shortly before the last unmount). It does NOT deal with a corrupted file system, only with accidently but cleanly deleted files.</p>
</blockquote>

<p>Tool doesn&#8217;t recover in place so it only needs read access to file system (it does NOT work on live file system), so this could be used  for forensics as well.</p>

<p>Howto also includes detailed overview of ext3 file system, this is probably next best thing to looking at the source code of ext3 fs directly. Worth a read even if you haven&#8217;t had any accidents with rm :)</p>

<p>Of course if Carlo Wood had more recent backups of his work it would make his life a lot easier, but we wouldn&#8217;t have this nice guide and useful tool as a result.</p>
]]></content:encoded>
			<wfw:commentRss>http://stvor.blogsome.com/2008/03/27/link-recover-deleted-files-on-ext3/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Link: The ten commandments of Unicode</title>
		<link>http://stvor.blogsome.com/2008/03/22/link-the-ten-commandments-of-unicode/</link>
		<comments>http://stvor.blogsome.com/2008/03/22/link-the-ten-commandments-of-unicode/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 12:59:55 +0000</pubDate>
		<dc:creator>stvor</dc:creator>
		
	<category>All</category>
	<category>Links</category>
	<category>Development</category>
		<guid>http://stvor.blogsome.com/2008/03/22/link-the-ten-commandments-of-unicode/</guid>
		<description><![CDATA[<p>http://cafe.elharo.com/programming/the-ten-commandments-of-unicode/ by Elliotte Rusty Harold</p>

<p>via Ryan Tomayako</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://stvor.blogsome.com/go.php?http://cafe.elharo.com/programming/the-ten-commandments-of-unicode/">http://cafe.elharo.com/programming/the-ten-commandments-of-unicode/</a> by <a href="http://stvor.blogsome.com/go.php?http://www.elharo.com/">Elliotte Rusty Harold</a></p>

<p>via <a href="http://stvor.blogsome.com/go.php?http://tomayko.com/">Ryan Tomayako</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stvor.blogsome.com/2008/03/22/link-the-ten-commandments-of-unicode/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Debugging Python HTTPConection recipe</title>
		<link>http://stvor.blogsome.com/2008/03/19/debugging-python-httpconection-recipe/</link>
		<comments>http://stvor.blogsome.com/2008/03/19/debugging-python-httpconection-recipe/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 21:21:48 +0000</pubDate>
		<dc:creator>stvor</dc:creator>
		
	<category>All</category>
	<category>Linux</category>
	<category>Python</category>
		<guid>http://stvor.blogsome.com/2008/03/19/debugging-python-httpconection-recipe/</guid>
		<description><![CDATA[<p>Nice built in way to debug http connections problems in your python code.</p>

<p>This is nothing new, just for my reference, so I don&#8217;t have to hunt it down every time I need it.</p>

<p>import httplib
   import urllib2</p>

<p># For urllib it's enough to do
   # httplib.HTTPConnection.debuglevel = [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>Nice built in way to debug http connections problems in your python code.</p>

<p>This is nothing new, just for my reference, so I don&#8217;t have to hunt it down every time I need it.</p>

<pre><code>   import httplib
   import urllib2

   # For urllib it's enough to do
   # httplib.HTTPConnection.debuglevel = 1
   #
   # but for urllib2 we have to:
   handler =  urllib2.HTTPHandler(debuglevel=1)
   opener = urllib2.build_opener(handler)
   urllib2.install_opener(opener)
</code></pre>

<p>Sources: <a href="http://stvor.blogsome.com/go.php?http://docs.python.org/lib/httpresponse-objects.html">python docs</a>, <a href="http://stvor.blogsome.com/go.php?http://www.fieldguidetoprogrammers.com/blog/python/using-httplibhttpconnectionset_debuglevel-with-urllib2/">Jamie Grove</a>, <a href="http://stvor.blogsome.com/go.php?http://mail.python.org/pipermail/tutor/2005-November/043069.html">python mailing list</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stvor.blogsome.com/2008/03/19/debugging-python-httpconection-recipe/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Mark Pilgrim rip&#8217;s apart Joel Spolsky&#8217;s  IE8 standards mode appology</title>
		<link>http://stvor.blogsome.com/2008/03/18/mark-pilgrim-rips-apart-joel-spolskys-ie8-standards-mode-appology/</link>
		<comments>http://stvor.blogsome.com/2008/03/18/mark-pilgrim-rips-apart-joel-spolskys-ie8-standards-mode-appology/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 21:14:58 +0000</pubDate>
		<dc:creator>stvor</dc:creator>
		
	<category>All</category>
	<category>Webmonkey</category>
	<category>Comp-misc</category>
		<guid>http://stvor.blogsome.com/2008/03/18/mark-pilgrim-rips-apart-joel-spolskys-ie8-standards-mode-appology/</guid>
		<description><![CDATA[<p>Here is original from Joel: Martian Headsets</p>

<p>and Mark Pilgrim&#8217;s Translation From MS-Speak to English of Selected Portions of Joel Spolsky’s “Martin Headsets”</p>

<p>My personal favourite:</p>

<pre><code>&amp;#8221; Or maybe they won’t… in which case, IE is going to lose a lot of market share.&amp;#8221;
</code></pre>

<p>I know IE [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>Here is original from Joel: <a href="http://stvor.blogsome.com/go.php?http://www.joelonsoftware.com/items/2008/03/17.html">Martian Headsets</a></p>

<p>and Mark Pilgrim&#8217;s <a href="http://stvor.blogsome.com/go.php?http://diveintomark.org/archives/2008/03/18/translation-from-ms-speak-to-english-of-selected-portions-of-joel-spolskys-martin-headsets">Translation From MS-Speak to English of Selected Portions of Joel Spolsky’s “Martin Headsets”</a></p>

<p>My personal favourite:</p>

<blockquote>
  <blockquote>
    <p>&#8221; Or maybe they won’t… in which case, IE is going to lose a lot of market share.&#8221;</p>
  </blockquote>
  
  <p>I know IE is going to continue to lose a lot of market share, and I’m publishing this now so I can blame you dirty fucking hippies for it later.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://stvor.blogsome.com/2008/03/18/mark-pilgrim-rips-apart-joel-spolskys-ie8-standards-mode-appology/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Howto change MAC adress in Ubuntu</title>
		<link>http://stvor.blogsome.com/2008/03/05/howto-change-mac-adress-in-ubuntu/</link>
		<comments>http://stvor.blogsome.com/2008/03/05/howto-change-mac-adress-in-ubuntu/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 00:09:46 +0000</pubDate>
		<dc:creator>stvor</dc:creator>
		
	<category>All</category>
	<category>Linux</category>
	<category>Security</category>
		<guid>http://stvor.blogsome.com/2008/03/05/howto-change-mac-adress-in-ubuntu/</guid>
		<description><![CDATA[<p>Why would you want to change your MAC ?</p>

<p>Several reasons:</p>

<p>Some ISP&#8217;s lock their cable/ADSL modems to single MAC address ( usually your router),
if for some reason you need to connect some other machine to that modem you need to change
MAC address on that machine.
Security and privacy. Each ethernet and WiFi card has its own MAC, [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>Why would you want to change your MAC ?</p>

<p>Several reasons:</p>

<ul>
<li><p>Some ISP&#8217;s lock their cable/ADSL modems to single MAC address ( usually your router),
if for some reason you need to connect some other machine to that modem you need to change
MAC address on that machine.</p></li>
<li><p>Security and privacy. Each ethernet and WiFi card has its own MAC, that can sometimes be traced back to you.
By changing your MAC you can prevent that.</p></li>
</ul>

<p>NOTE: While most ethernet ( all ?) support changing MAC, there are some WiFi cards that do not.</p>

<p>NOTE: In the following text I have used <code>eth0</code>  as an example of network interface. 
              Replace it with the interface of the card whose MAC you want to change. </p>

<p>To list all interfaces: <code>sudo ifconfig -a</code></p>

<p>There are several ways to change your MAC. </p>

<h3>General Linux</h3>

<p>Works on most Linux boxes.</p>

<p>First we bring down the interface:</p>

<pre><code>ifconfig eth0 down
</code></pre>

<p>then we change the MAC:</p>

<pre><code>ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx
</code></pre>

<p>and we bring back the interface (static):</p>

<pre><code>    ifconfig eth0 192.168.0.101 netmask 255.255.255.0 broadcast 192.168.0.255
    ifconfig eth0 up
    route add default gw 192.168.0.1 eth0
</code></pre>

<p>or with dhcp:</p>

<pre><code>/sbin/dhcpdc eth0
</code></pre>

<h3>Ubuntu</h3>

<p>On Ubuntu the procedure is dependant on weather you use NetworkManger or not.</p>

<h4>Without NetworkManeger</h4>

<p>First edit <em>/etc/network/interfaces</em> and change:</p>

<pre><code>    auto eth0
    iface eth0 inet dhcp
</code></pre>

<p>into:</p>

<pre><code>    auto eth0
    iface eth0 inet dhcp
        hwaddress ether xx:xx:xx:xx:xx:xx
</code></pre>

<p>After making above changes you need to restart networking with:</p>

<pre><code>    sudo /etc/init.d/networking restart
</code></pre>

<h4>With NetworkManeger</h4>

<p>Create new file <code>/etc/network/if-pre-up.d/macchange</code></p>

<pre><code>#! /bin/sh

# $IFACE - provided by NetworkManeger 
/sbin/ifconfig $IFACE hw ether xx:xx:xx:xx:xx:xx

# If we use macchanger from http://www.alobbs.com/macchanger/
/usr/bin/macchanger -e $IFACE
</code></pre>

<p>After saving the above file we make it executable:</p>

<pre><code>    sudo chmod +x  /etc/network/if-pre-up.d/macchange
</code></pre>

<p>And thats it. NetworkManeger will call our script each time before it brings up
the interface.</p>

<h3>Random MAC&#8217;s</h3>

<p><a href="http://stvor.blogsome.com/go.php?http://www.alobbs.com/macchanger/">Macchanger</a> can be used to generate random MAC&#8217;s.</p>

<p>Insted of using <code>ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx</code> you can use <a href="http://stvor.blogsome.com/go.php?http://www.alobbs.com/macchanger/">macchanger</a></p>

<p>Example:</p>

<pre><code>    macchanger -m xx:xx:xx:xx:xx:xx eth0
</code></pre>

<p>Random MAC example:</p>

<pre><code>    #Random MAC of the same kind (wifi, ethernet)
    macchanger -a eth0
    #Random MAC from same manufacturer 
    macchanger -e eth0
    #Fully random MAC
    macchanger -r eth0
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://stvor.blogsome.com/2008/03/05/howto-change-mac-adress-in-ubuntu/feed/</wfw:commentRss>
	</item>
		<item>
		<title>NMAP 4.0 Released</title>
		<link>http://stvor.blogsome.com/2006/02/11/nmap-40-released/</link>
		<comments>http://stvor.blogsome.com/2006/02/11/nmap-40-released/#comments</comments>
		<pubDate>Sat, 11 Feb 2006 15:25:52 +0000</pubDate>
		<dc:creator>stvor</dc:creator>
		
	<category>All</category>
		<guid>http://stvor.blogsome.com/2006/02/11/nmap-40-released/</guid>
		<description><![CDATA[<p>From Digg:</p>

<p>Nmap has undergone many substantial changes since the last major release (3.50 in February 2004) and they recommend that all current users upgrade.</p>

<p>The changelog is huge. My personal favorite is revriten scanning engine, not only is it faster but its also less memory hungry (I have a lot of old machines set up for [...]</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://stvor.blogsome.com/go.php?http://www.digg.com/security/NMAP_4.0_Released">From Digg</a>:</p>

<blockquote>Nmap has undergone many substantial changes since the last major release (3.50 in February 2004) and they recommend that all current users upgrade.</blockquote>

<p><a href="http://stvor.blogsome.com/go.php?http://seclists.org/lists/nmap-hackers/2006/Jan-Mar/0001.html">The changelog is huge</a>. My personal favorite is revriten scanning engine, not only is it faster but its also less memory hungry (I have a lot of old machines set up for testing, routing and firewalls). </p>

<p>Also worth mentioning is improved service(and version) detection, and os fingerprinting. </p>

<p>Links:<ul><li><a href="http://stvor.blogsome.com/go.php?http://www.linuxpackages.net/pkg_details.php?id=8612">Slackware package</a></li><li><a href="http://stvor.blogsome.com/go.php?http://seclists.org/lists/nmap-hackers/2006/Jan-Mar/0001.html">Changes since 3.50</a></li><li><a href="http://stvor.blogsome.com/go.php?http://www.insecure.org/nmap/data/nmap.usage.txt">Brief options</a> and <a href="http://stvor.blogsome.com/go.php?http://www.insecure.org/nmap/man/man-examples.html"> example usage</a></li><li><a href="http://stvor.blogsome.com/go.php?http://www.insecure.org/nmap/nmap-fingerprinting-article.html">Documentation for remote OS detection/fingerprinting</a></li><li><a href="http://stvor.blogsome.com/go.php?http://www.insecure.org/nmap/vscan/">Remote service detection</a> (Diferent from OS detection, this can determine for example whitch version of Apache or Ssh are you running )</li></ul><br /><br /><a href="http://stvor.blogsome.com/go.php?http://www.insecure.org/stf/Nmap-4.00-Release.html">read more</a>&nbsp;|&nbsp;<a href="http://stvor.blogsome.com/go.php?http://digg.com/security/NMAP_4.0_Released">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stvor.blogsome.com/2006/02/11/nmap-40-released/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Google &#8220;do no evil&#8221;  China style</title>
		<link>http://stvor.blogsome.com/2006/02/08/google-do-no-evil-china-style/</link>
		<comments>http://stvor.blogsome.com/2006/02/08/google-do-no-evil-china-style/#comments</comments>
		<pubDate>Wed, 08 Feb 2006 08:54:10 +0000</pubDate>
		<dc:creator>stvor</dc:creator>
		
	<category>All</category>
	<category>online rights</category>
		<guid>http://stvor.blogsome.com/2006/02/08/google-do-no-evil-china-style/</guid>
		<description><![CDATA[<p>Seems like Google</p>

<p>From TheRegister Mailbag</p>

<pre><code>Lester,

Possibly the most frightening thing I have ever seen on this web of ours:

Search Tiananmen from Google Images:

http://images.google.com/images?q=tiananmen

Search Tiananmen from Google China:

http://images.google.cn/images?q=tiananmen

Colin Jackson
</code></pre>

<p>Can&#8217;t [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>Seems like Google</p>

<p><a href="http://stvor.blogsome.com/go.php?http://www.theregister.co.uk/2006/02/03/letters/">From TheRegister Mailbag</a></p>
<p>
<blockquote>
    Lester,

    Possibly the most frightening thing I have ever seen on this web of ours:

    Search Tiananmen from Google Images:

    http://images.google.com/images?q=tiananmen

    Search Tiananmen from Google China:

    http://images.google.cn/images?q=tiananmen

    Colin Jackson
</blockquote>
</p>

<p>Can&#8217;t say I am suprised thoug, Google is afterall just another Coorporation, interested only in their bottom line.  And the &#8220;do no evil&#8221; is just interesting marketing ploy (or posibbly illusions of google creators)</p>
]]></content:encoded>
			<wfw:commentRss>http://stvor.blogsome.com/2006/02/08/google-do-no-evil-china-style/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Wine beats Windows in benchmarks -Via digg</title>
		<link>http://stvor.blogsome.com/2006/01/21/wine-beats-windows-in-benchmarks-via-digg/</link>
		<comments>http://stvor.blogsome.com/2006/01/21/wine-beats-windows-in-benchmarks-via-digg/#comments</comments>
		<pubDate>Sat, 21 Jan 2006 16:24:02 +0000</pubDate>
		<dc:creator>stvor</dc:creator>
		
	<category>All</category>
		<guid>http://stvor.blogsome.com/2006/01/21/wine-beats-windows-in-benchmarks-via-digg/</guid>
		<description><![CDATA[<p>Via Digg:Wine 0.9.5 leads Windows XP in 69 out of 147 tests from various benchmarks.  Some of the tests that Wine won were 3D (such as 3DMark), while others were Windows API tests (such as PC Mark).</p>

<p>Well it seems that besides some graphic code, wine is chathching up or even beeting windows at running [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>Via <a href="http://stvor.blogsome.com/go.php?http://digg.com">Digg</a>:<code>Wine 0.9.5 leads Windows XP in 69 out of 147 tests from various benchmarks.  Some of the tests that Wine won were 3D (such as 3DMark), while others were Windows API tests (such as PC Mark).</code></p>

<p>Well it seems that besides some graphic code, wine is chathching up or even beeting windows at running windows apps :))
To me, it is amazing that wine beats windows at even one bentchmark.<br /><br /><a href="http://stvor.blogsome.com/go.php?http://wiki.winehq.org/BenchMark-0.9.5">read more</a>&nbsp;|&nbsp;<a href="http://stvor.blogsome.com/go.php?http://digg.com/linux_unix/Wine_beats_Windows_in_benchmarks">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stvor.blogsome.com/2006/01/21/wine-beats-windows-in-benchmarks-via-digg/feed/</wfw:commentRss>
	</item>
		<item>
		<title>The Biggest PC Myths via Digg</title>
		<link>http://stvor.blogsome.com/2006/01/21/the-biggest-pc-myths-via-digg/</link>
		<comments>http://stvor.blogsome.com/2006/01/21/the-biggest-pc-myths-via-digg/#comments</comments>
		<pubDate>Sat, 21 Jan 2006 15:21:18 +0000</pubDate>
		<dc:creator>stvor</dc:creator>
		
	<category>All</category>
	<category>Comp-misc</category>
		<guid>http://stvor.blogsome.com/2006/01/21/the-biggest-pc-myths-via-digg/</guid>
		<description><![CDATA[<p>Although an older article, this is good info for any computer user. How much do magnets really fry data? Does unplugging a USB cable too fast really cause damage? Read more here at this PC World article.read more&nbsp;|&nbsp;digg story</p>
]]></description>
			<content:encoded><![CDATA[<p>Although an older article, this is good info for any computer user. How much do magnets really fry data? Does unplugging a USB cable too fast really cause damage? Read more here at this PC World article.<br /><br /><a href="http://stvor.blogsome.com/go.php?http://www.pcworld.com/news/article/0,aid,116572,00.asp#">read more</a>&nbsp;|&nbsp;<a href="http://stvor.blogsome.com/go.php?http://digg.com/hardware/The_Biggest_PC_Myths">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stvor.blogsome.com/2006/01/21/the-biggest-pc-myths-via-digg/feed/</wfw:commentRss>
	</item>
		<item>
		<title>From Copia: The Buzzword Firing Squad</title>
		<link>http://stvor.blogsome.com/2005/12/28/the-buzzword-firing-squad/</link>
		<comments>http://stvor.blogsome.com/2005/12/28/the-buzzword-firing-squad/#comments</comments>
		<pubDate>Wed, 28 Dec 2005 22:04:01 +0000</pubDate>
		<dc:creator>stvor</dc:creator>
		
	<category>All</category>
	<category>online</category>
		<guid>http://stvor.blogsome.com/2005/12/28/the-buzzword-firing-squad/</guid>
		<description><![CDATA[<p>The Buzzword Firing Squad Copia has a list of often missused(and milssunderstood) words.</p>

<p>My favortie is:</p>

<p>&#8220;Yes, that&#8217;s very nice and all, but does it scale?&#8221; !*&amp;%#@@$!!!
and other stupid questions that people who wear ties like to ask.</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://stvor.blogsome.com/go.php?http://copia.ogbuji.net/blog/2005-10-24/The_Buzzwo">The Buzzword Firing Squad Copia</a> has a list of often missused(and milssunderstood) words.</p>

<p>My favortie is:
<code>
<blockquote>&#8220;Yes, that&#8217;s very nice and all, but does it scale?&#8221; !*&amp;%#@@$!!!</blockquote></code>
and other stupid questions that people who wear ties like to ask.</p>
]]></content:encoded>
			<wfw:commentRss>http://stvor.blogsome.com/2005/12/28/the-buzzword-firing-squad/feed/</wfw:commentRss>
	</item>
	</channel>
</rss>
