<?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>evilsocket.net</title>
	<atom:link href="http://www.evilsocket.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.evilsocket.net</link>
	<description>If you can't understand it, it doesn't mean it's wrong ...</description>
	<lastBuildDate>Wed, 03 Mar 2010 18:49:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Resettare le password ed i privilegi di MySQL</title>
		<link>http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html</link>
		<comments>http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html#comments</comments>
		<pubDate>Wed, 03 Mar 2010 18:49:02 +0000</pubDate>
		<dc:creator>evilsocket</dc:creator>
				<category><![CDATA[Papers]]></category>
		<category><![CDATA[forgot]]></category>
		<category><![CDATA[grant]]></category>
		<category><![CDATA[init-file]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[reset password]]></category>

		<guid isPermaLink="false">http://www.evilsocket.net/?p=901</guid>
		<description><![CDATA[Dato il downtime di oggi e la relativa risoluzione, colgo l&#8217;occasione per scrivere un breve articolo su come risolvere i seguenti tipi di situazione :

 O caxxo! Ho sputtanato i privilegi sulle tabelle e ora non riesco più a loggarmi su mysql con nessun utente!
O caxxo! Ho dimenticato la password dell&#8217;utenza di mysql!

In entrambi i [...]


Related posts:<ol><li><a href='http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html' rel='bookmark' title='Permanent Link: Usare la serializzazione in PHP per il caching delle query SQL'>Usare la serializzazione in PHP per il caching delle query SQL</a></li>
<li><a href='http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html' rel='bookmark' title='Permanent Link: Il Worm dell&#8217;iPhone &#8230; il Jailbreak è rischioso?'>Il Worm dell&#8217;iPhone &#8230; il Jailbreak è rischioso?</a></li>
<li><a href='http://www.evilsocket.net/897/sito-down.html' rel='bookmark' title='Permanent Link: Downtime'>Downtime</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.evilsocket.net/wp-content/uploads/2010/03/mysql_logo.png"><img class="alignleft size-medium wp-image-904" title="mysql_logo" src="http://www.evilsocket.net/wp-content/uploads/2010/03/mysql_logo-300x155.png" alt="" width="273" height="142" /></a>Dato il <a href="http://www.evilsocket.net/897/sito-down.html" target="_blank">downtime</a> di oggi e la relativa risoluzione, colgo l&#8217;occasione per scrivere un breve articolo su come risolvere i seguenti tipi di situazione :</p>
<ol>
<li> O caxxo! Ho sputtanato i privilegi sulle tabelle e ora non riesco più a loggarmi su mysql con nessun utente!</li>
<li>O caxxo! Ho dimenticato la password dell&#8217;utenza di mysql!</li>
</ol>
<p>In entrambi i casi, le parole &#8220;O caxxo&#8221; riassumono bene lo stato d&#8217;animo del povero mal capitato, stato d&#8217;animo che conosco benissimo perchè mi è capitato più di una volta (in particolare il caso 1) e, finchè non ho scoperto il trucchetto magico che sto per esporvi, mi ha fatto passare minuti bruttissimi .</p>
<p><span id="more-901"></span><strong>Ovviamente </strong>la soluzione che sto per indicarvi sarà attuabile se e solo se sono verificate le seguenti condizioni :</p>
<ol>
<li>Avete un accesso al terminale del pc in questione, che sia ssh, seriale o magia nera non importa, ma è necessario poter eseguire comandi da shell.</li>
<li>Dovete poter eseguire comandi con privilegi di root.</li>
</ol>
<p>Detto questo, la soluzione è abbastanza semplice .</p>
<p>Prima di tutto, fermate il server MySQL, nel caso in cui il classico &#8220;/etc/(init.d|rc.d|&#8230;)/mysql stop&#8221; non funzionasse, dovrete killare il processo, quindi, per vedere in quale file mysql salva il suo pid :</p>
<pre>
<blockquote>

[root@computer ~]<strong> grep pid /etc/mysql/my.cnf</strong>

<strong>pid-file	= /var/run/mysqld/mysqld.pid</strong>
</blockquote>
</pre>
<p>Vediamo quale è il pid :</p>
<blockquote><p><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; line-height: 18px; font-size: 12px; white-space: pre;">[root@computer ~] <strong>cat /var/run/mysqld/mysqld.pid</strong></span></p>
<pre><strong>26376</strong></pre>
</blockquote>
<p>E killiamo il processo :</p>
<blockquote>
<pre>[root@computer ~] <strong>kill 26376</strong></pre>
</blockquote>
<p>Fatto questo, creiamoci un file di testo con il seguente contenuto :</p>
<blockquote>
<pre>UPDATE mysql.user SET Password=PASSWORD('lavostrapassword') WHERE User='root';</pre>
<pre>GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY 'lavostrapassword';</pre>
<pre>FLUSH PRIVILEGES;</pre>
</blockquote>
<p>E chiamiamolo ad esempio resetmysql.sql (che fantasia eh? XD), ovviamente sostituendo il testo &#8220;lavostrapassword&#8221; con la password che volete (re)impostare.</p>
<p>Fatto ciò, non ci rimane che eseguire :</p>
<blockquote><p>[root@computer ~] <strong>mysqld_safe &#8211;init-file=</strong><em>/percorso/di/resetmysql.sql</em></p></blockquote>
<p>Aspettate che l&#8217;inizializzazione finisca e poi uscite con CTRL+C &#8230; riavviando il server MySQL ora dovrebbe tutto andare bene ^^</p>
<p>Spero che questo piccolo articolo possa tornare utile nel caso vi trovaste in questa situazione veramente antipatica XD</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Invia aScript &amp; Style">Invia aScript &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;Title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Condividi suBlinklist">Condividi suBlinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Condividi sudel.icio.us">Condividi sudel.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Diggalo!">Diggalo!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;desc=Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw" rel="nofollow" class="external" title="Pubblicalo suDiigo">Pubblicalo suDiigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Condividi suReddit">Condividi suReddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;submitHeadline=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;submitSummary=Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Hai trovato qualcosa di buono? Condividilo su StumbleUpon">Hai trovato qualcosa di buono? Condividilo su StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html" rel="nofollow" class="external" title="Condividi suTechnorati">Condividi suTechnorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Condividi suMixx">Condividi suMixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;t=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Pubblicalo suMySpace">Pubblicalo suMySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Invia aDesignFloat">Invia aDesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;t=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Condividi suFacebook">Condividi suFacebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Resettare+le+password+ed+i+privilegi+di+MySQL+-+http://b2l.me/hx37a+" rel="nofollow" class="external" title="Tweetalo!">Tweetalo!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Resettare%20le%20password%20ed%20i%20privilegi%20di%20MySQL%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html" rel="nofollow" class="external" title="Vuoi segnalarlo via mail ad un amico?">Vuoi segnalarlo via mail ad un amico?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Resettare%20le%20password%20ed%20i%20privilegi%20di%20MySQL%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html" rel="nofollow" class="external" title="Suggerisci questo articolo aToMuse">Suggerisci questo articolo aToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html/feed" rel="nofollow" class="external" title="Vuoi iscriverti ai commenti per questo post?">Vuoi iscriverti ai commenti per questo post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;summary=Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw&amp;source=evilsocket.net" rel="nofollow" class="external" title="Condividi suLinkedIn">Condividi suLinkedIn</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;h=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="SeeddaloNewsvine">SeeddaloNewsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw&amp;posturl=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;posttitle=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Condividi suDevmarks">Condividi suDevmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Aggiungilo aGoogle Bookmarks">Aggiungilo aGoogle Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;bm_description=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Aggiungilo aMister Wong">Aggiungilo aMister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html" rel="nofollow" class="external" title="Aggiungilo aIzeby">Aggiungilo aIzeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html" rel="nofollow" class="external" title="Condividi suTipd">Condividi suTipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Condividi suPFBuzz">Condividi suPFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;link=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html" rel="nofollow" class="external" title="Condividi suFriendFeed">Condividi suFriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Segnalo suBlogMarks">Segnalo suBlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;url=http%3A%2F%2Fwww.evilsocket.net%2F901%2Fresettare-le-password-ed-i-privilegi-di-mysql.html&amp;desc=Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Invia aTwittley">Invia aTwittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html" rel="nofollow" class="external" title="Condividi suFwisp">Condividi suFwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;body=Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw" rel="nofollow" class="external" title="MooccaloDesignMoo!">MooccaloDesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Condividi suBobrDobr">Condividi suBobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;lname=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Aggiungilo aYandex.Bookmarks">Aggiungilo aYandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;u_data[name]=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Aggiungilo aMemory.ru">Aggiungilo aMemory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;bmtitle=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Aggiungilo a100 bookmarks">Aggiungilo a100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Aggiungilo aMyPlace">Aggiungilo aMyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;t=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Invia aHacker News">Invia aHacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html" rel="nofollow" class="external" title="Invia questa pagina aPrint Friendly">Invia questa pagina aPrint Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;body=Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw" rel="nofollow" class="external" title="Bumpalo suDesignBump">Bumpalo suDesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;T=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Aggiungilo aNing">Aggiungilo aNing</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Resettare+le+password+ed+i+privilegi+di+MySQL&quot;+-+from+http://b2l.me/hx37a" rel="nofollow" class="external" title="Pubblicalo suIdentica">Pubblicalo suIdentica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Salvalo suXerpi">Salvalo suXerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Condividi suWikio">Condividi suWikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html+&quot;Resettare+le+password+ed+i+privilegi+di+MySQL&quot;" rel="nofollow" class="external" title="Suggeriscilo suTechMeme">Suggeriscilo suTechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;selection=Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw" rel="nofollow" class="external" title="Pubblicalo suPosterous">Pubblicalo suPosterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;type=Article&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Grinddalo suGlobal Grind">Grinddalo suGlobal Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;body=Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw" rel="nofollow" class="external" title="Notificalo suPing.fm">Notificalo suPing.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;u=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;b=Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw" rel="nofollow" class="external" title="Invia aNUjij">Invia aNUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;desc=Dato%20il%20downtime%20di%20oggi%20e%20la%20relativa%20risoluzione%2C%20colgo%20l%27occasione%20per%20scrivere%20un%20breve%20articolo%20su%20come%20risolvere%20i%20seguenti%20tipi%20di%20situazione%20%3A%0D%0A%0D%0A%09%20O%20caxxo%21%20Ho%20sputtanato%20i%20privilegi%20sulle%20tabelle%20e%20ora%20non%20riesco%20pi%C3%B9%20a%20loggarmi%20su%20mysql%20con%20nessun%20utente%21%0D%0A%09O%20caxxo%21%20Ho%20dimenticato%20la%20passw" rel="nofollow" class="external" title="Invia aeKudos">Invia aeKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;popup=no" rel="nofollow" class="external" title="Invia aNetvouz">Invia aNetvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Resettare+le+password+ed+i+privilegi+di+MySQL&amp;url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html" rel="nofollow" class="external" title="Invia aNetvibes">Invia aNetvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Condividi suFleck">Condividi suFleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html&amp;title=Resettare+le+password+ed+i+privilegi+di+MySQL" rel="nofollow" class="external" title="Condividi suBlogosphere News">Condividi suBlogosphere News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.evilsocket.net/?ak_action=api_record_view&id=901&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html' rel='bookmark' title='Permanent Link: Usare la serializzazione in PHP per il caching delle query SQL'>Usare la serializzazione in PHP per il caching delle query SQL</a></li>
<li><a href='http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html' rel='bookmark' title='Permanent Link: Il Worm dell&#8217;iPhone &#8230; il Jailbreak è rischioso?'>Il Worm dell&#8217;iPhone &#8230; il Jailbreak è rischioso?</a></li>
<li><a href='http://www.evilsocket.net/897/sito-down.html' rel='bookmark' title='Permanent Link: Downtime'>Downtime</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Downtime</title>
		<link>http://www.evilsocket.net/897/sito-down.html</link>
		<comments>http://www.evilsocket.net/897/sito-down.html#comments</comments>
		<pubDate>Wed, 03 Mar 2010 18:25:52 +0000</pubDate>
		<dc:creator>evilsocket</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[down]]></category>
		<category><![CDATA[downtime]]></category>
		<category><![CDATA[grant]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.evilsocket.net/?p=897</guid>
		<description><![CDATA[Chi avesse visitato questo blog oggi pomeriggio avrà notato l&#8217;errore di connessione al db &#8230; niente di grave, è solo stato uno degli altri ragazzi su questo server (tacci vostra!!! XD) che aveva incasinato i grant sulle tabelle &#8230; tutto ok ora  





		
			Invia aScript &#38; Style
		
		
			Condividi suBlinklist
		
		
			Condividi sudel.icio.us
		
		
			Diggalo!
		
		
			Pubblicalo suDiigo
		
		
			Condividi suReddit
		
		
			Buzz up!
		
		
			Hai trovato qualcosa di [...]


Related posts:<ol><li><a href='http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html' rel='bookmark' title='Permanent Link: Resettare le password ed i privilegi di MySQL'>Resettare le password ed i privilegi di MySQL</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Chi avesse visitato questo blog oggi pomeriggio avrà notato l&#8217;errore di connessione al db &#8230; niente di grave, è solo stato uno degli altri ragazzi su questo server (tacci vostra!!! XD) che aveva incasinato i grant sulle tabelle &#8230; tutto ok ora <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Invia aScript &amp; Style">Invia aScript &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.evilsocket.net/897/sito-down.html&amp;Title=Downtime" rel="nofollow" class="external" title="Condividi suBlinklist">Condividi suBlinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Condividi sudel.icio.us">Condividi sudel.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Diggalo!">Diggalo!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime&amp;desc=Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP" rel="nofollow" class="external" title="Pubblicalo suDiigo">Pubblicalo suDiigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Condividi suReddit">Condividi suReddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.evilsocket.net/897/sito-down.html&amp;submitHeadline=Downtime&amp;submitSummary=Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Hai trovato qualcosa di buono? Condividilo su StumbleUpon">Hai trovato qualcosa di buono? Condividilo su StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.evilsocket.net/897/sito-down.html" rel="nofollow" class="external" title="Condividi suTechnorati">Condividi suTechnorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Condividi suMixx">Condividi suMixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.evilsocket.net/897/sito-down.html&amp;t=Downtime" rel="nofollow" class="external" title="Pubblicalo suMySpace">Pubblicalo suMySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Invia aDesignFloat">Invia aDesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.evilsocket.net/897/sito-down.html&amp;t=Downtime" rel="nofollow" class="external" title="Condividi suFacebook">Condividi suFacebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Downtime+-+http://b2l.me/hxz75+" rel="nofollow" class="external" title="Tweetalo!">Tweetalo!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Downtime%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/897/sito-down.html" rel="nofollow" class="external" title="Vuoi segnalarlo via mail ad un amico?">Vuoi segnalarlo via mail ad un amico?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Downtime%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/897/sito-down.html" rel="nofollow" class="external" title="Suggerisci questo articolo aToMuse">Suggerisci questo articolo aToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.evilsocket.net/897/sito-down.html/feed" rel="nofollow" class="external" title="Vuoi iscriverti ai commenti per questo post?">Vuoi iscriverti ai commenti per questo post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime&amp;summary=Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP&amp;source=evilsocket.net" rel="nofollow" class="external" title="Condividi suLinkedIn">Condividi suLinkedIn</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.evilsocket.net/897/sito-down.html&amp;h=Downtime" rel="nofollow" class="external" title="SeeddaloNewsvine">SeeddaloNewsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP&amp;posturl=http://www.evilsocket.net/897/sito-down.html&amp;posttitle=Downtime" rel="nofollow" class="external" title="Condividi suDevmarks">Condividi suDevmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Aggiungilo aGoogle Bookmarks">Aggiungilo aGoogle Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.evilsocket.net/897/sito-down.html&amp;bm_description=Downtime&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Aggiungilo aMister Wong">Aggiungilo aMister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.evilsocket.net/897/sito-down.html" rel="nofollow" class="external" title="Aggiungilo aIzeby">Aggiungilo aIzeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.evilsocket.net/897/sito-down.html" rel="nofollow" class="external" title="Condividi suTipd">Condividi suTipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Condividi suPFBuzz">Condividi suPFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Downtime&amp;link=http://www.evilsocket.net/897/sito-down.html" rel="nofollow" class="external" title="Condividi suFriendFeed">Condividi suFriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Segnalo suBlogMarks">Segnalo suBlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Downtime&amp;url=http%3A%2F%2Fwww.evilsocket.net%2F897%2Fsito-down.html&amp;desc=Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Invia aTwittley">Invia aTwittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.evilsocket.net/897/sito-down.html" rel="nofollow" class="external" title="Condividi suFwisp">Condividi suFwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime&amp;body=Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP" rel="nofollow" class="external" title="MooccaloDesignMoo!">MooccaloDesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Condividi suBobrDobr">Condividi suBobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.evilsocket.net/897/sito-down.html&amp;lname=Downtime" rel="nofollow" class="external" title="Aggiungilo aYandex.Bookmarks">Aggiungilo aYandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.evilsocket.net/897/sito-down.html&amp;u_data[name]=Downtime" rel="nofollow" class="external" title="Aggiungilo aMemory.ru">Aggiungilo aMemory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.evilsocket.net/897/sito-down.html&amp;bmtitle=Downtime" rel="nofollow" class="external" title="Aggiungilo a100 bookmarks">Aggiungilo a100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Aggiungilo aMyPlace">Aggiungilo aMyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.evilsocket.net/897/sito-down.html&amp;t=Downtime" rel="nofollow" class="external" title="Invia aHacker News">Invia aHacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.evilsocket.net/897/sito-down.html" rel="nofollow" class="external" title="Invia questa pagina aPrint Friendly">Invia questa pagina aPrint Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime&amp;body=Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP" rel="nofollow" class="external" title="Bumpalo suDesignBump">Bumpalo suDesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.evilsocket.net/897/sito-down.html&amp;T=Downtime" rel="nofollow" class="external" title="Aggiungilo aNing">Aggiungilo aNing</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Downtime&quot;+-+from+http://b2l.me/hxz75" rel="nofollow" class="external" title="Pubblicalo suIdentica">Pubblicalo suIdentica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Salvalo suXerpi">Salvalo suXerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Condividi suWikio">Condividi suWikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.evilsocket.net/897/sito-down.html+&quot;Downtime&quot;" rel="nofollow" class="external" title="Suggeriscilo suTechMeme">Suggeriscilo suTechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.evilsocket.net/897/sito-down.html" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime&amp;selection=Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP" rel="nofollow" class="external" title="Pubblicalo suPosterous">Pubblicalo suPosterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.evilsocket.net/897/sito-down.html&amp;type=Article&amp;title=Downtime" rel="nofollow" class="external" title="Grinddalo suGlobal Grind">Grinddalo suGlobal Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime&amp;body=Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP" rel="nofollow" class="external" title="Notificalo suPing.fm">Notificalo suPing.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Downtime&amp;u=http://www.evilsocket.net/897/sito-down.html&amp;b=Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP" rel="nofollow" class="external" title="Invia aNUjij">Invia aNUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime&amp;desc=Chi%20avesse%20visitato%20questo%20blog%20oggi%20pomeriggio%20avr%C3%A0%20notato%20l%27errore%20di%20connessione%20al%20db%20...%20niente%20di%20grave%2C%20%C3%A8%20solo%20stato%20uno%20degli%20altri%20ragazzi%20su%20questo%20server%20%28tacci%20vostra%21%21%21%20XD%29%20che%20aveva%20incasinato%20i%20grant%20sulle%20tabelle%20...%20tutto%20ok%20ora%20%3AP" rel="nofollow" class="external" title="Invia aeKudos">Invia aeKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime&amp;popup=no" rel="nofollow" class="external" title="Invia aNetvouz">Invia aNetvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Downtime&amp;url=http://www.evilsocket.net/897/sito-down.html" rel="nofollow" class="external" title="Invia aNetvibes">Invia aNetvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Condividi suFleck">Condividi suFleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.evilsocket.net/897/sito-down.html&amp;title=Downtime" rel="nofollow" class="external" title="Condividi suBlogosphere News">Condividi suBlogosphere News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.evilsocket.net/?ak_action=api_record_view&id=897&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html' rel='bookmark' title='Permanent Link: Resettare le password ed i privilegi di MySQL'>Resettare le password ed i privilegi di MySQL</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.evilsocket.net/897/sito-down.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTS &#8211; Training The Hacker Underground</title>
		<link>http://www.evilsocket.net/894/hts-training-the-hacker-underground.html</link>
		<comments>http://www.evilsocket.net/894/hts-training-the-hacker-underground.html#comments</comments>
		<pubDate>Sun, 28 Feb 2010 22:25:58 +0000</pubDate>
		<dc:creator>evilsocket</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[hack game]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[hackthissite]]></category>
		<category><![CDATA[hts]]></category>

		<guid isPermaLink="false">http://www.evilsocket.net/?p=894</guid>
		<description><![CDATA[Dei famosi &#8220;hacker game&#8221; è piena la rete si sa e, vuoi per curiosità, vuoi perchè mi trovavo in una di quelle poche giornate nelle quali non ho niente da fare, ne ho provati veramente tanti e alcuni li ho anche finiti .
Veramente pochissime volte questi giochi mi hanno &#8220;lasciato&#8221; qualcosa, che sia un insegnamento, [...]


Related posts:<ol><li><a href='http://www.evilsocket.net/80/vmware-hacking.html' rel='bookmark' title='Permanent Link: VMWare Hacking'>VMWare Hacking</a></li>
<li><a href='http://www.evilsocket.net/109/arp-poisoning-ovvero-come-avere-il-totale-controllo-della-rete.html' rel='bookmark' title='Permanent Link: ARP Poisoning, ovvero come avere il totale controllo della rete .'>ARP Poisoning, ovvero come avere il totale controllo della rete .</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://data.hackthissite.org/themes/Dark/images/training.jpg" alt="" width="283" height="170" />Dei famosi &#8220;hacker game&#8221; è piena la rete si sa e, vuoi per curiosità, vuoi perchè mi trovavo in una di quelle poche giornate nelle quali non ho niente da fare, ne ho provati veramente tanti e alcuni li ho anche finiti .</p>
<p>Veramente pochissime volte questi giochi mi hanno &#8220;lasciato&#8221; qualcosa, che sia un insegnamento, una nozione o anche solo l&#8217;ammirazione verso lo sviluppatore che si è sbattuto per realizzarlo, ed in questo articolo voglio parlare di quello che più mi è piaciuto (e continua a piacermi dato che in ben tre anni ancora non l&#8217;ho finito XD) e che più mi ha insegnato.</p>
<p><span id="more-894"></span>Parlo di<a href="http://www.hackthissite.org/" target="_blank"> HackThiSite</a> (per gli amici HTS <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ), un progetto nato tanto tempo fa e che ho visto svilupparsi nel corso di questo tempo in maniera veramente eccezionale.</p>
<p>Lo scopo di questo sito, come recita il titolo di questo articolo (che poi è il &#8220;motto&#8221; stesso di HTS) è &#8220;allenare&#8221; l&#8217;underground hacker &#8230; ed è proprio questo quello che fa!</p>
<p>I livelli sono divisi in varie sezioni (che analizzeremo più avanti), ad ogni livello si deve sapere (o si deve imparare <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ) una nozioe (o un insieme di nozioni) sempre più avanzata, al punto che per molti livelli saranno necessarie diverse ore di studio per capire bene come procedere allo stage successivo &#8230; ed in questo lo staff ha fatto davvero un eccellente lavoro, poichè si può avvicinare al gioco sia il novizio, che partendo dai primi livelli imparerà man mano tantissime cose nuove, che l&#8217;esperto il quale rispolvererà concetti che erroneamente considerava banali e successivamente dovrà mettere alla prova il suo intelletto per i livelli avanzati &#8230; il tutto condito da una comunità veramente amichevole e soprattutto competente.</p>
<p>I livelli (o missioni) si dividono nelle seguenti categorie :</p>
<ol>
<li><strong>Basic </strong>(11 missioni), come suggerisce il nome sono i livelli più semplici, quel tanto che basta per &#8220;scaldare i motori&#8221; (semplici per modo di dire, hanno la difficoltà degli ultimi livelli della maggior parte degli hack game italiani XD).</li>
<li><strong>Realistic</strong> (16 missioni), qua si inizia a far sul serio &#8230; ogni missione simula una situazione reale nella quale ci si potrebbe trovare, un sito, una web app buggata, ecc ecc ed anche in questo caso la difficoltà aumenta gradualmente.</li>
<li><strong>Application </strong>(18 missioni), in questa tipologia si affrontano le tematiche del reversing e del cracking &#8230; sostanzialmente ci si troverà davanti a 18 applicazioni compilate, ognuna da crackare per trovare una password, un seriale, bypassare un meccanismo di autenticazione o creare un keygen &#8230; inutile dire che in questa sezione sono necessarie buone conoscenze di assembly e dell utilizzo di debugger, quanto meno per le missioni avanzate.</li>
<li><strong>Programming</strong> (12 missioni), ci troveremo davanti dei dati in ingresso, criptati, randomizzati, inseriti in un immagine, ecc ecc ecc e dovremo scrivere un programma che li elabori nel minor tempo possibile restituendoci l&#8217;output relativo da inserire come password del livello.</li>
<li><strong>Extended Basic</strong> (14 missioni), nate &#8220;recentemente&#8221; come estenzioni delle <strong>Basic</strong>, le extbasic continuano il percorso delle missioni &#8220;semplici&#8221; offrendo però spunti più originali e complessi, che in alcuni casi metteranno alla prova anche i più bravi.</li>
<li><strong>Javascript</strong> (7 missioni), sezione nella quale dovremo crackare, reversare, interpretare, bypassare ecc del codice javascript, può sembrare banale ma vi assicuro che non lo è per niente XD .</li>
<li><strong>Stego</strong> (17 missioni), le missioni consistono nel estrarre dei dati incapsulati in un immagine seguendo vari algoritmi, in alcuni casi anche algoritmi &#8220;casalinghi&#8221; che rendono il reversing veramente complicato.</li>
<li><strong>IRC</strong> (???), missioni che si affrontano nel loro server irc, non so quante sono xkè ancora devo fare la prima XD.</li>
</ol>
<p>Ogni missione di ogni sezione, in base al grado di difficoltà, una volta finita farà guadagnare dei punti che si aggiungeranno al vostro profilo utente, ogni tot punti aumenterete di &#8220;grado&#8221; fino ad entrare nella hall of fame della comunità, sezione riservata più che altro a chi, oltre ad aver ottenuto un punteggio molto alto nelle missioni, ha trovato dei bug nel sito stesso notificandoli allo staff.</p>
<p>Insomma, c&#8217;è davvero da imparare tanto, anche grazie alla sezione di articoli che è gigantenorme e alla quale ogni utente può contribuire .</p>
<p>Vi lascio con il link al sito ed un link al mio profilo nel caso voleste venirmi a rompere le palle pure la XD</p>
<p><a href="http://www.hackthissite.org" target="_blank">http://www.hackthissite.org/</a></p>
<p><a href="http://www.hackthissite.org/user/view/evilsocket/" target="_blank">http://www.hackthissite.org/user/view/evilsocket/</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Invia aScript &amp; Style">Invia aScript &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;Title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Condividi suBlinklist">Condividi suBlinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Condividi sudel.icio.us">Condividi sudel.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Diggalo!">Diggalo!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground&amp;desc=Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che" rel="nofollow" class="external" title="Pubblicalo suDiigo">Pubblicalo suDiigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Condividi suReddit">Condividi suReddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;submitHeadline=HTS+-+Training+The+Hacker+Underground&amp;submitSummary=Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Hai trovato qualcosa di buono? Condividilo su StumbleUpon">Hai trovato qualcosa di buono? Condividilo su StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html" rel="nofollow" class="external" title="Condividi suTechnorati">Condividi suTechnorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Condividi suMixx">Condividi suMixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;t=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Pubblicalo suMySpace">Pubblicalo suMySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Invia aDesignFloat">Invia aDesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;t=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Condividi suFacebook">Condividi suFacebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=HTS+-+Training+The+Hacker+Underground+-+http://b2l.me/hnzm2+" rel="nofollow" class="external" title="Tweetalo!">Tweetalo!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22HTS%20-%20Training%20The%20Hacker%20Underground%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/894/hts-training-the-hacker-underground.html" rel="nofollow" class="external" title="Vuoi segnalarlo via mail ad un amico?">Vuoi segnalarlo via mail ad un amico?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22HTS%20-%20Training%20The%20Hacker%20Underground%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/894/hts-training-the-hacker-underground.html" rel="nofollow" class="external" title="Suggerisci questo articolo aToMuse">Suggerisci questo articolo aToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.evilsocket.net/894/hts-training-the-hacker-underground.html/feed" rel="nofollow" class="external" title="Vuoi iscriverti ai commenti per questo post?">Vuoi iscriverti ai commenti per questo post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground&amp;summary=Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che&amp;source=evilsocket.net" rel="nofollow" class="external" title="Condividi suLinkedIn">Condividi suLinkedIn</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;h=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="SeeddaloNewsvine">SeeddaloNewsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che&amp;posturl=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;posttitle=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Condividi suDevmarks">Condividi suDevmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Aggiungilo aGoogle Bookmarks">Aggiungilo aGoogle Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;bm_description=HTS+-+Training+The+Hacker+Underground&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Aggiungilo aMister Wong">Aggiungilo aMister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html" rel="nofollow" class="external" title="Aggiungilo aIzeby">Aggiungilo aIzeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html" rel="nofollow" class="external" title="Condividi suTipd">Condividi suTipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Condividi suPFBuzz">Condividi suPFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=HTS+-+Training+The+Hacker+Underground&amp;link=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html" rel="nofollow" class="external" title="Condividi suFriendFeed">Condividi suFriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Segnalo suBlogMarks">Segnalo suBlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=HTS+-+Training+The+Hacker+Underground&amp;url=http%3A%2F%2Fwww.evilsocket.net%2F894%2Fhts-training-the-hacker-underground.html&amp;desc=Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Invia aTwittley">Invia aTwittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html" rel="nofollow" class="external" title="Condividi suFwisp">Condividi suFwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground&amp;body=Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che" rel="nofollow" class="external" title="MooccaloDesignMoo!">MooccaloDesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Condividi suBobrDobr">Condividi suBobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;lname=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Aggiungilo aYandex.Bookmarks">Aggiungilo aYandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;u_data[name]=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Aggiungilo aMemory.ru">Aggiungilo aMemory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;bmtitle=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Aggiungilo a100 bookmarks">Aggiungilo a100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Aggiungilo aMyPlace">Aggiungilo aMyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;t=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Invia aHacker News">Invia aHacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html" rel="nofollow" class="external" title="Invia questa pagina aPrint Friendly">Invia questa pagina aPrint Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground&amp;body=Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che" rel="nofollow" class="external" title="Bumpalo suDesignBump">Bumpalo suDesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;T=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Aggiungilo aNing">Aggiungilo aNing</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;HTS+-+Training+The+Hacker+Underground&quot;+-+from+http://b2l.me/hnzm2" rel="nofollow" class="external" title="Pubblicalo suIdentica">Pubblicalo suIdentica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Salvalo suXerpi">Salvalo suXerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Condividi suWikio">Condividi suWikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.evilsocket.net/894/hts-training-the-hacker-underground.html+&quot;HTS+-+Training+The+Hacker+Underground&quot;" rel="nofollow" class="external" title="Suggeriscilo suTechMeme">Suggeriscilo suTechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground&amp;selection=Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che" rel="nofollow" class="external" title="Pubblicalo suPosterous">Pubblicalo suPosterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;type=Article&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Grinddalo suGlobal Grind">Grinddalo suGlobal Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground&amp;body=Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che" rel="nofollow" class="external" title="Notificalo suPing.fm">Notificalo suPing.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=HTS+-+Training+The+Hacker+Underground&amp;u=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;b=Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che" rel="nofollow" class="external" title="Invia aNUjij">Invia aNUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground&amp;desc=Dei%20famosi%20%22hacker%20game%22%20%C3%A8%20piena%20la%20rete%20si%20sa%20e%2C%20vuoi%20per%20curiosit%C3%A0%2C%20vuoi%20perch%C3%A8%20mi%20trovavo%20in%20una%20di%20quelle%20poche%20giornate%20nelle%20quali%20non%20ho%20niente%20da%20fare%2C%20ne%20ho%20provati%20veramente%20tanti%20e%20alcuni%20li%20ho%20anche%20finiti%20.%0D%0A%0D%0AVeramente%20pochissime%20volte%20questi%20giochi%20mi%20hanno%20%22lasciato%22%20qualcosa%2C%20che" rel="nofollow" class="external" title="Invia aeKudos">Invia aeKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground&amp;popup=no" rel="nofollow" class="external" title="Invia aNetvouz">Invia aNetvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=HTS+-+Training+The+Hacker+Underground&amp;url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html" rel="nofollow" class="external" title="Invia aNetvibes">Invia aNetvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Condividi suFleck">Condividi suFleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.evilsocket.net/894/hts-training-the-hacker-underground.html&amp;title=HTS+-+Training+The+Hacker+Underground" rel="nofollow" class="external" title="Condividi suBlogosphere News">Condividi suBlogosphere News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.evilsocket.net/?ak_action=api_record_view&id=894&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.evilsocket.net/80/vmware-hacking.html' rel='bookmark' title='Permanent Link: VMWare Hacking'>VMWare Hacking</a></li>
<li><a href='http://www.evilsocket.net/109/arp-poisoning-ovvero-come-avere-il-totale-controllo-della-rete.html' rel='bookmark' title='Permanent Link: ARP Poisoning, ovvero come avere il totale controllo della rete .'>ARP Poisoning, ovvero come avere il totale controllo della rete .</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.evilsocket.net/894/hts-training-the-hacker-underground.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Usare la serializzazione in PHP per il caching delle query SQL</title>
		<link>http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html</link>
		<comments>http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html#comments</comments>
		<pubDate>Sun, 28 Feb 2010 14:36:29 +0000</pubDate>
		<dc:creator>evilsocket</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[Sorgenti]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[serialization]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[tuning]]></category>

		<guid isPermaLink="false">http://www.evilsocket.net/?p=889</guid>
		<description><![CDATA[Da quando ho preso un server dedicato (e ne ho cambiati parecchi XD), ho iniziato a studiare per bene il tuning dei vari demoni che utilizzo per ottenere il massimo delle prestazioni con il minimo consumo di risorse .
Inutile dire che mi si è aperto un mondo, ho decisamente rivalutato il lavoro dei sistemisti (di [...]


Related posts:<ol><li><a href='http://www.evilsocket.net/128/webagent-php-class.html' rel='bookmark' title='Permanent Link: WebAgent PHP Class'>WebAgent PHP Class</a></li>
<li><a href='http://www.evilsocket.net/130/facebook-unofficial-php-client.html' rel='bookmark' title='Permanent Link: Facebook Unofficial PHP Client'>Facebook Unofficial PHP Client</a></li>
<li><a href='http://www.evilsocket.net/99/introduzione-alle-espressioni-regolari.html' rel='bookmark' title='Permanent Link: Introduzione alle espressioni regolari'>Introduzione alle espressioni regolari</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Da quando ho preso un server dedicato (e ne ho cambiati parecchi XD), ho iniziato a studiare per bene il tuning dei vari demoni che utilizzo per ottenere il massimo delle prestazioni con il minimo consumo di risorse .</p>
<p>Inutile dire che mi si è aperto un mondo, ho decisamente rivalutato il lavoro dei sistemisti (di quelli seri almeno) che spesso può risultare ben più ostico di quello di uno sviluppatore, dovendosi barcamenare tra documentazioni fatte male, file di configurazione gigantenormi, miriadi di parametri per ogni demone ecc ecc ecc.</p>
<p>Una delle funzionalità che non conoscevo e che ho scoperto durante questo periodo di studio, è il caching delle query di MySQL .</p>
<p>In parole povere il server MySQL, dopo aver abilitato tale configurazione, inizierà ad inserire in un suo storage in memoria (almeno credo sia in memoria) i risultati delle query che secondo lui sono cachabili in modo tale da non dover ogni volta rieseguirle, ma dovendo semplicemente prelevare i risultati da quel suo storage aumentando di parecchio le prestazioni generali di una web application che faccia un uso massiccio del database (perchè esistono ora come ora web app degne di chiamarsi così che non usano un db? <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ).</p>
<p>E&#8217; ovvio che questa funzionalità può essere abilitata se e solo se si ha la possibilità di mettere mano sui file di configurazione del proprio server, cosa che naturalmente è impensabile per coloro che hanno un normale hosting condiviso che a malapena sono liberi di smanettare nella loro directory web.</p>
<p>Per questo motivo ho scritto un piccolo set di funzioni PHP che fanno questa cosa al posto del demone MySQL dando a chiunque la possibilità di aumentare notevolmente le prestazioni del proprio sito PHP/MySQL based ^^</p>
<p><span id="more-889"></span>In pratica, chi volesse sviluppare un applicazione web, dovrà utilizzare piùttosto delle funzioni native per mysql, le funzioni che mette a disposizione questa piccola libreria.</p>
<p>A sua volta la libreria si occuperà di eseguire le query, determinare se una determinata query è inseribile in cache o meno, ripulire la cache in caso di aggiornamento dei dati, ecc ecc ecc il tutto sfruttando la <a href="http://php.net/manual/en/function.serialize.php" target="_blank">serializzazione degli oggetti in php</a> .</p>
<p>L&#8217;esempio più semplice di utilizzo della libreria potrebbe essere :</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;height:100%;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #b1b100;">include_once</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;dbcache.php&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
dbc_init<span style="color: #009900;">&#40;</span> <span style="color: #666666; font-style: italic;">// hostname, utente, password e nome del database al quale connettersi</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">&quot;localhost&quot;</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">&quot;utente&quot;</span><span style="color: #339933;">,</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">&quot;password&quot;</span><span style="color: #339933;">,</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">&quot;nome del db&quot;</span><span style="color: #339933;">,</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// directory in cui salvare i file della cache (deve esistere ed essere scrivibile)</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">&quot;/path/in/cui/salvare/la/cache&quot;</span><span style="color: #339933;">,</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// timeout espresso in secondi di un elemento nella cache, dopo il quale verrà eliminato</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1800 <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
<span style="color: #666666; font-style: italic;">// esegue la query</span><br />
<span style="color: #000088;">$obj</span> <span style="color: #339933;">=</span> dbc_query<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;SELECT * FROM notizie&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #666666; font-style: italic;">// fetcha un array associativo per ogni recordset della query</span><br />
<span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> dbc_fetch_assoc<span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'titolo'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&lt;br/&gt;&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></div>
<p>La prima volta che verrà eseguita, la query sarà inviata al database MySQL vero e proprio ed i risultati messi in cache, dalla seconda in poi invece i risultati verranno prelevati direttamente dallo storage su filesystem aumentando i tempi di risposta ed elaborazione e risparmiando le risorse che avrebbe richiesto il database per eseguire la query.</p>
<p>La cache (che è unica per ogni query, ovvero 10 query in cache equivalgono a 10 file diversi) viene eliminata in due casi :</p>
<ol>
<li>Se il tempo di creazione di un file nella cache supera il timeout impostato durante l&#8217;inizializzazione (quindi se è scaduto.</li>
<li>Se viene eseguita una query non cachabile, come una INSERT o una UPDATE poichè potenzialmente modificano i dati sul database, rendendo necessario un aggiornamento anche nella cache.</li>
</ol>
<p>Bon, detto questo, spero che la libreria possa essere utile a qualcuno, vi lascio con il codice ^^</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;height:100%;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #666666; font-style: italic;">/*<br />
&nbsp;* This file is part of DBCACHE.<br />
&nbsp;*<br />
&nbsp;* Copyleft of Simone Margaritelli aka evilsocket &lt;evilsocket@gmail.com&gt;<br />
&nbsp;*<br />
&nbsp;* DBCACHE is free software: you can redistribute it and/or modify<br />
&nbsp;* it under the terms of the GNU General Public License as published by<br />
&nbsp;* the Free Software Foundation, either version 3 of the License, or<br />
&nbsp;* (at your option) any later version.<br />
&nbsp;*<br />
&nbsp;* hybris is distributed in the hope that it will be useful,<br />
&nbsp;* but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
&nbsp;* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. &nbsp;See the<br />
&nbsp;* GNU General Public License for more details.<br />
&nbsp;*<br />
&nbsp;* You should have received a copy of the GNU General Public License<br />
&nbsp;* along with hybris. &nbsp;If not, see &lt;http://www.gnu.org/licenses/&gt;.<br />
*/</span><br />
<br />
<span style="color: #666666; font-style: italic;">// funzione di inizializzazione</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_init<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$dbhost</span><span style="color: #339933;">,</span> <span style="color: #000088;">$dbuser</span><span style="color: #339933;">,</span> <span style="color: #000088;">$dbpass</span><span style="color: #339933;">,</span> <span style="color: #000088;">$dbname</span><span style="color: #339933;">,</span> <span style="color: #000088;">$storage</span><span style="color: #339933;">,</span> <span style="color: #000088;">$lifetime</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1800</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// controllo che la directory di caching esista</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><a href="http://www.php.net/file_exists"><span style="color: #990000;">file_exists</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$storage</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/die"><span style="color: #990000;">die</span></a><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;DBCACHE : Path '<span style="color: #006699; font-weight: bold;">$storage</span>' does not exist .&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// controllo che sia scrivibile</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><a href="http://www.php.net/is_writable"><span style="color: #990000;">is_writable</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$storage</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/die"><span style="color: #990000;">die</span></a><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;DBCACHE : Path '<span style="color: #006699; font-weight: bold;">$storage</span>' is not writable .&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// apro una connessione persistente al db</span><br />
&nbsp; &nbsp; <a href="http://www.php.net/mysql_pconnect"><span style="color: #990000;">mysql_pconnect</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$dbhost</span><span style="color: #339933;">,</span> <span style="color: #000088;">$dbuser</span><span style="color: #339933;">,</span> <span style="color: #000088;">$dbpass</span> <span style="color: #009900;">&#41;</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; or <a href="http://www.php.net/die"><span style="color: #990000;">die</span></a><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;DBCACHE : &quot;</span><span style="color: #339933;">.</span><a href="http://www.php.net/mysql_error"><span style="color: #990000;">mysql_error</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// seleziono il db</span><br />
&nbsp; &nbsp; <a href="http://www.php.net/mysql_select_db"><span style="color: #990000;">mysql_select_db</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$dbname</span> <span style="color: #009900;">&#41;</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; or <a href="http://www.php.net/die"><span style="color: #990000;">die</span></a><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;DBCACHE : &quot;</span><span style="color: #339933;">.</span><a href="http://www.php.net/mysql_error"><span style="color: #990000;">mysql_error</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// definisco le variabili che mi servono</span><br />
&nbsp; &nbsp; <a href="http://www.php.net/define"><span style="color: #990000;">define</span></a><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;DBCACHE_STORAGE&quot;</span><span style="color: #339933;">,</span> &nbsp;<span style="color: #000088;">$storage</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <a href="http://www.php.net/define"><span style="color: #990000;">define</span></a><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;DBCACHE_LIFETIME&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$lifetime</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<br />
<span style="color: #666666; font-style: italic;">// serializza i risultati di una query e li salva in cache</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_cache<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$hash</span><span style="color: #339933;">,</span> <span style="color: #000088;">$resource</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$object</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// indice incrementale per il fetching</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$object</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'index'</span><span style="color: #009900;">&#93;</span> &nbsp; &nbsp; &nbsp;<span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// numero righe</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$object</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'num_rows'</span><span style="color: #009900;">&#93;</span> &nbsp; <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_num_rows"><span style="color: #990000;">mysql_num_rows</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$resource</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// numero campi</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$object</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'num_fields'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_num_fields"><span style="color: #990000;">mysql_num_fields</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$resource</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// nome dei campi</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$object</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'fields'</span><span style="color: #009900;">&#93;</span> &nbsp; &nbsp; <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$i</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span> <span style="color: #339933;">&lt;</span> <span style="color: #000088;">$object</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'num_fields'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$object</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'fields'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_field_name"><span style="color: #990000;">mysql_field_name</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$resource</span><span style="color: #339933;">,</span> <span style="color: #000088;">$i</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// recordset</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$object</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'rows'</span><span style="color: #009900;">&#93;</span> &nbsp; &nbsp; &nbsp; <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_fetch_array"><span style="color: #990000;">mysql_fetch_array</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$resource</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$object</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'rows'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$row</span><span style="color: #339933;">;</span> &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// per sicurezza resetto il puntatore alla risorsa</span><br />
&nbsp; &nbsp; <span style="color: #339933;">@</span><a href="http://www.php.net/mysql_data_seek"><span style="color: #990000;">mysql_data_seek</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$resource</span><span style="color: #339933;">,</span> 0 <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// salvo l'oggetto nella cache</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> dbc_save_cache<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$hash</span><span style="color: #339933;">,</span> <span style="color: #000088;">$object</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// crea il file di cache per un oggetto</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_save_cache<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$hash</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span><span style="color: #000088;">$obj</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$file</span> <span style="color: #339933;">=</span> DBCACHE_STORAGE<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;/&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$hash</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #000088;">$f</span> <span style="color: #339933;">=</span> <span style="color: #339933;">@</span><a href="http://www.php.net/fopen"><span style="color: #990000;">fopen</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$file</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'w'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><span style="color: #000088;">$f</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// imposto un lock esclusivo sul file e ci serializzo i contenuti</span><br />
&nbsp; &nbsp; <span style="color: #339933;">@</span><a href="http://www.php.net/flock"><span style="color: #990000;">flock</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$f</span><span style="color: #339933;">,</span> LOCK_EX <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">@</span><a href="http://www.php.net/fwrite"><span style="color: #990000;">fwrite</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$f</span><span style="color: #339933;">,</span> <a href="http://www.php.net/serialize"><span style="color: #990000;">serialize</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$obj</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">@</span><a href="http://www.php.net/flock"><span style="color: #990000;">flock</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$f</span><span style="color: #339933;">,</span> LOCK_UN <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">@</span><a href="http://www.php.net/fclose"><span style="color: #990000;">fclose</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$f</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">@</span><a href="http://www.php.net/chmod"><span style="color: #990000;">chmod</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$file</span><span style="color: #339933;">,</span> 0644 <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$obj</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// rimuovo un dato oggetto dalla cache</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_remove<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$hash</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$file</span> <span style="color: #339933;">=</span> DBCACHE_STORAGE<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;/&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$hash</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <a href="http://www.php.net/is_file"><span style="color: #990000;">is_file</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$file</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #339933;">@</span><a href="http://www.php.net/unlink"><span style="color: #990000;">unlink</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$file</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// cancello la cache, se $old è true elimino solo gli oggetti scaduti,</span><br />
<span style="color: #666666; font-style: italic;">// altrimenti elminino tutto</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_clean<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$old</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$dir</span> <span style="color: #339933;">=</span> <span style="color: #339933;">@</span><a href="http://www.php.net/opendir"><span style="color: #990000;">opendir</span></a><span style="color: #009900;">&#40;</span> DBCACHE_STORAGE <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$hash</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/readdir"><span style="color: #990000;">readdir</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$dir</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$hash</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">'.'</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$hash</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">'..'</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$hash</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">'.htaccess'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// Clean all</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$old</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dbc_remove<span style="color: #009900;">&#40;</span><span style="color: #000088;">$hash</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span> <span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">@</span><a href="http://www.php.net/filemtime"><span style="color: #990000;">filemtime</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$file</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> DBCACHE_LIFETIME <span style="color: #339933;">-</span> <a href="http://www.php.net/time"><span style="color: #990000;">time</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&lt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// Clean only old</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dbc_remove<span style="color: #009900;">&#40;</span><span style="color: #000088;">$hash</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/closedir"><span style="color: #990000;">closedir</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$dir</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// funzione per controllare se esiste un oggetto in cache</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_is_cached<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$hash</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <a href="http://www.php.net/file_exists"><span style="color: #990000;">file_exists</span></a><span style="color: #009900;">&#40;</span> DBCACHE_STORAGE<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;/&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$hash</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>&nbsp; &nbsp; <br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// determina se una data query è inseribile in cache .</span><br />
<span style="color: #666666; font-style: italic;">// solo le query in lettura sono cachabili .</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_is_cachable<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$query</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #339933;">!</span><a href="http://www.php.net/preg_match"><span style="color: #990000;">preg_match</span></a><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;/\s*(INSERT[\s]+|DELETE[\s]+|UPDATE[\s]+|REPLACE[\s]+|ALTER[\s]+|SET[\s]+|FOUND_ROWS[\s]+|SQL_NO_CACHE[\s]+)/si&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$query</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>&nbsp; &nbsp; <br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// determina se l'oggetto appartiene alla cache o è una risorsa</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_is_cached_object<span style="color: #009900;">&#40;</span> <span style="color: #339933;">&amp;</span><span style="color: #000088;">$object</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <a href="http://www.php.net/is_array"><span style="color: #990000;">is_array</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$object</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// esegue una query e ne cacha i risultati, oppure preleva direttamente la cache</span><br />
<span style="color: #666666; font-style: italic;">// nel caso sia già presente</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_query<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$query</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// calcolo l'hash della query</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$hash</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/md5"><span style="color: #990000;">md5</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// è già in cache?</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> dbc_is_cached<span style="color: #009900;">&#40;</span><span style="color: #000088;">$hash</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$file</span> &nbsp; <span style="color: #339933;">=</span> DBCACHE_STORAGE<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;/&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$hash</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$object</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$filemtime</span> <span style="color: #339933;">=</span> <span style="color: #339933;">@</span><a href="http://www.php.net/filemtime"><span style="color: #990000;">filemtime</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$file</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// apro il file nella cache impostando un lock esclusivo</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$f</span> <span style="color: #339933;">=</span> <span style="color: #339933;">@</span><a href="http://www.php.net/fopen"><span style="color: #990000;">fopen</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$file</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'r'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$f</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #339933;">@</span><a href="http://www.php.net/flock"><span style="color: #990000;">flock</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$f</span><span style="color: #339933;">,</span> LOCK_SH <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// deserializzo l'oggetto</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$object</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/unserialize"><span style="color: #990000;">unserialize</span></a><span style="color: #009900;">&#40;</span> <a href="http://www.php.net/stream_get_contents"><span style="color: #990000;">stream_get_contents</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$f</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #339933;">@</span><a href="http://www.php.net/flock"><span style="color: #990000;">flock</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$f</span><span style="color: #339933;">,</span> LOCK_UN <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #339933;">@</span><a href="http://www.php.net/fclose"><span style="color: #990000;">fclose</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$f</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// se l'oggetto è scaduto lo rimuovo dalla cache</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$filemtime</span> <span style="color: #339933;">+</span> DBCACHE_LIFETIME <span style="color: #339933;">-</span> <a href="http://www.php.net/time"><span style="color: #990000;">time</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&lt;</span> 0 <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dbc_remove<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$hash</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$object</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// non è nella cache</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// eseguo la query vera e propria</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$resource</span> <span style="color: #339933;">=</span> <span style="color: #339933;">@</span><a href="http://www.php.net/mysql_query"><span style="color: #990000;">mysql_query</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$query</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// se la query è cachabile la inserisco nello storage</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> dbc_is_cachable<span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$object</span> <span style="color: #339933;">=</span> dbc_cache<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$hash</span><span style="color: #339933;">,</span> <span style="color: #000088;">$resource</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$object</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// la query non è cachabile, elimino tutta la cache poichè la query appena</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// eseguita ha inserito e/o aggiornato i dati sul db</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dbc_clean<span style="color: #009900;">&#40;</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$resource</span><span style="color: #339933;">;</span> &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span> <br />
<span style="color: #666666; font-style: italic;">// fetching associativo</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_fetch_assoc<span style="color: #009900;">&#40;</span> <span style="color: #339933;">&amp;</span><span style="color: #000088;">$obj</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> dbc_is_cached_object<span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #339933;">@</span><a href="http://www.php.net/mysql_fetch_assoc"><span style="color: #990000;">mysql_fetch_assoc</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'index'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">&gt;=</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'num_rows'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'index'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span> &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$i</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span> <span style="color: #339933;">&lt;</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'num_fields'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'fields'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'rows'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'index'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'index'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">++;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$row</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// fetching vettoriale</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_fetch_row<span style="color: #009900;">&#40;</span> <span style="color: #339933;">&amp;</span><span style="color: #000088;">$obj</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> dbc_is_cached_object<span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #339933;">@</span><a href="http://www.php.net/mysql_fetch_row"><span style="color: #990000;">mysql_fetch_row</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'index'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">&gt;=</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'num_rows'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'index'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span> &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$i</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span> <span style="color: #339933;">&lt;</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'num_fields'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'rows'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'index'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'index'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">++;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$row</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span> &nbsp; <br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// rimuove l'oggetto dalla memoria</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_free_result<span style="color: #009900;">&#40;</span> <span style="color: #339933;">&amp;</span><span style="color: #000088;">$obj</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> dbc_is_cached_object<span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #339933;">@</span><a href="http://www.php.net/mysql_free_result"><span style="color: #990000;">mysql_free_result</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <a href="http://www.php.net/unset"><span style="color: #990000;">unset</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>&nbsp; &nbsp; <br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// restituisce il numero di recordset nell'oggetto</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_num_rows<span style="color: #009900;">&#40;</span> <span style="color: #339933;">&amp;</span><span style="color: #000088;">$obj</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> dbc_is_cached_object<span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #339933;">@</span><a href="http://www.php.net/mysql_num_rows"><span style="color: #990000;">mysql_num_rows</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'num_rows'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>&nbsp; &nbsp; <br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// imposta il cursore sull'oggetto</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_data_seek<span style="color: #009900;">&#40;</span> <span style="color: #339933;">&amp;</span><span style="color: #000088;">$obj</span><span style="color: #339933;">,</span> <span style="color: #000088;">$idx</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> dbc_is_cached_object<span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #339933;">@</span><a href="http://www.php.net/mysql_data_seek"><span style="color: #990000;">mysql_data_seek</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #339933;">,</span><span style="color: #000088;">$idx</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$idx</span> <span style="color: #339933;">&gt;=</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'num_rows'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span> &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'index'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$idx</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #666666; font-style: italic;">// restituisce il numero di campi nell'oggetto</span><br />
<span style="color: #000000; font-weight: bold;">function</span> dbc_num_fields<span style="color: #009900;">&#40;</span> <span style="color: #339933;">&amp;</span><span style="color: #000088;">$obj</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> dbc_is_cached_object<span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #339933;">@</span><a href="http://www.php.net/mysql_num_fields"><span style="color: #990000;">mysql_num_fields</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$obj</span><span style="color: #339933;">,</span><span style="color: #000088;">$idx</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$obj</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'num_fields'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>&nbsp; <br />
<span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></div>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Invia aScript &amp; Style">Invia aScript &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;Title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Condividi suBlinklist">Condividi suBlinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Condividi sudel.icio.us">Condividi sudel.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Diggalo!">Diggalo!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;desc=Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20" rel="nofollow" class="external" title="Pubblicalo suDiigo">Pubblicalo suDiigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Condividi suReddit">Condividi suReddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;submitHeadline=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;submitSummary=Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Hai trovato qualcosa di buono? Condividilo su StumbleUpon">Hai trovato qualcosa di buono? Condividilo su StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html" rel="nofollow" class="external" title="Condividi suTechnorati">Condividi suTechnorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Condividi suMixx">Condividi suMixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;t=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Pubblicalo suMySpace">Pubblicalo suMySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Invia aDesignFloat">Invia aDesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;t=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Condividi suFacebook">Condividi suFacebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL+-+http://b2l.me/hm53m+" rel="nofollow" class="external" title="Tweetalo!">Tweetalo!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Usare%20la%20serializzazione%20in%20PHP%20per%20il%20caching%20delle%20query%20SQL%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html" rel="nofollow" class="external" title="Vuoi segnalarlo via mail ad un amico?">Vuoi segnalarlo via mail ad un amico?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Usare%20la%20serializzazione%20in%20PHP%20per%20il%20caching%20delle%20query%20SQL%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html" rel="nofollow" class="external" title="Suggerisci questo articolo aToMuse">Suggerisci questo articolo aToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html/feed" rel="nofollow" class="external" title="Vuoi iscriverti ai commenti per questo post?">Vuoi iscriverti ai commenti per questo post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;summary=Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20&amp;source=evilsocket.net" rel="nofollow" class="external" title="Condividi suLinkedIn">Condividi suLinkedIn</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;h=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="SeeddaloNewsvine">SeeddaloNewsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20&amp;posturl=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;posttitle=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Condividi suDevmarks">Condividi suDevmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Aggiungilo aGoogle Bookmarks">Aggiungilo aGoogle Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;bm_description=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Aggiungilo aMister Wong">Aggiungilo aMister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html" rel="nofollow" class="external" title="Aggiungilo aIzeby">Aggiungilo aIzeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html" rel="nofollow" class="external" title="Condividi suTipd">Condividi suTipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Condividi suPFBuzz">Condividi suPFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;link=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html" rel="nofollow" class="external" title="Condividi suFriendFeed">Condividi suFriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Segnalo suBlogMarks">Segnalo suBlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;url=http%3A%2F%2Fwww.evilsocket.net%2F889%2Fusare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;desc=Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Invia aTwittley">Invia aTwittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html" rel="nofollow" class="external" title="Condividi suFwisp">Condividi suFwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;body=Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20" rel="nofollow" class="external" title="MooccaloDesignMoo!">MooccaloDesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Condividi suBobrDobr">Condividi suBobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;lname=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Aggiungilo aYandex.Bookmarks">Aggiungilo aYandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;u_data[name]=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Aggiungilo aMemory.ru">Aggiungilo aMemory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;bmtitle=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Aggiungilo a100 bookmarks">Aggiungilo a100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Aggiungilo aMyPlace">Aggiungilo aMyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;t=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Invia aHacker News">Invia aHacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html" rel="nofollow" class="external" title="Invia questa pagina aPrint Friendly">Invia questa pagina aPrint Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;body=Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20" rel="nofollow" class="external" title="Bumpalo suDesignBump">Bumpalo suDesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;T=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Aggiungilo aNing">Aggiungilo aNing</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&quot;+-+from+http://b2l.me/hm53m" rel="nofollow" class="external" title="Pubblicalo suIdentica">Pubblicalo suIdentica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Salvalo suXerpi">Salvalo suXerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Condividi suWikio">Condividi suWikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html+&quot;Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&quot;" rel="nofollow" class="external" title="Suggeriscilo suTechMeme">Suggeriscilo suTechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;selection=Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20" rel="nofollow" class="external" title="Pubblicalo suPosterous">Pubblicalo suPosterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;type=Article&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Grinddalo suGlobal Grind">Grinddalo suGlobal Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;body=Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20" rel="nofollow" class="external" title="Notificalo suPing.fm">Notificalo suPing.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;u=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;b=Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20" rel="nofollow" class="external" title="Invia aNUjij">Invia aNUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;desc=Da%20quando%20ho%20preso%20un%20server%20dedicato%20%28e%20ne%20ho%20cambiati%20parecchi%20XD%29%2C%20ho%20iniziato%20a%20studiare%20per%20bene%20il%20tuning%20dei%20vari%20demoni%20che%20utilizzo%20per%20ottenere%20il%20massimo%20delle%20prestazioni%20con%20il%20minimo%20consumo%20di%20risorse%20.%0D%0A%0D%0AInutile%20dire%20che%20mi%20si%20%C3%A8%20aperto%20un%20mondo%2C%20ho%20decisamente%20rivalutato%20il%20lavoro%20" rel="nofollow" class="external" title="Invia aeKudos">Invia aeKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;popup=no" rel="nofollow" class="external" title="Invia aNetvouz">Invia aNetvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL&amp;url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html" rel="nofollow" class="external" title="Invia aNetvibes">Invia aNetvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Condividi suFleck">Condividi suFleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html&amp;title=Usare+la+serializzazione+in+PHP+per+il+caching+delle+query+SQL" rel="nofollow" class="external" title="Condividi suBlogosphere News">Condividi suBlogosphere News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.evilsocket.net/?ak_action=api_record_view&id=889&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.evilsocket.net/128/webagent-php-class.html' rel='bookmark' title='Permanent Link: WebAgent PHP Class'>WebAgent PHP Class</a></li>
<li><a href='http://www.evilsocket.net/130/facebook-unofficial-php-client.html' rel='bookmark' title='Permanent Link: Facebook Unofficial PHP Client'>Facebook Unofficial PHP Client</a></li>
<li><a href='http://www.evilsocket.net/99/introduzione-alle-espressioni-regolari.html' rel='bookmark' title='Permanent Link: Introduzione alle espressioni regolari'>Introduzione alle espressioni regolari</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.evilsocket.net/889/usare-la-serializzazione-in-php-per-il-caching-delle-query-sql.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Perchè ho scelto Arch Linux</title>
		<link>http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html</link>
		<comments>http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html#comments</comments>
		<pubDate>Wed, 17 Feb 2010 17:04:29 +0000</pubDate>
		<dc:creator>evilsocket</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[arch]]></category>
		<category><![CDATA[arch linux]]></category>
		<category><![CDATA[aur]]></category>
		<category><![CDATA[distribuzione]]></category>
		<category><![CDATA[distro]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pacman]]></category>
		<category><![CDATA[rc.conf]]></category>
		<category><![CDATA[yaourt]]></category>

		<guid isPermaLink="false">http://www.evilsocket.net/?p=883</guid>
		<description><![CDATA[Di distribuzioni GNU/Linux in questi anni ne ho provate veramente tante, partendo da Red Hat (quando ancora esisteva in quanto distro libera, bei tempi  ), a SuSe, Mandrake (predecessore dell&#8217;attuale Mandriva), DSL, Debian, Ubuntu, Slackware, Fedora, Gentoo, ecc ecc ecc e, per quanto due o tre tra queste fossero le mie preferite, non ne [...]


Related posts:<ol><li><a href='http://www.evilsocket.net/728/tra-un-po-un-nuovo-giocattolo-d.html' rel='bookmark' title='Permanent Link: Tra un po un nuovo giocattolo :D'>Tra un po un nuovo giocattolo :D</a></li>
<li><a href='http://www.evilsocket.net/754/kerby-light-weight-video-surveillance-system.html' rel='bookmark' title='Permanent Link: Kerby &#8211; Light weight video surveillance system.'>Kerby &#8211; Light weight video surveillance system.</a></li>
<li><a href='http://www.evilsocket.net/748/ed-infine-arrivo-la-alix.html' rel='bookmark' title='Permanent Link: Ed infine arrivÃ² la Alix'>Ed infine arrivÃ² la Alix</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.evilsocket.net/wp-content/uploads/2010/02/arch-linux-logo.png"><img class="alignleft size-thumbnail wp-image-884" title="arch-linux-logo" src="http://www.evilsocket.net/wp-content/uploads/2010/02/arch-linux-logo-150x150.png" alt="arch-linux-logo" width="150" height="150" /></a>Di distribuzioni GNU/Linux in questi anni ne ho provate veramente tante, partendo da Red Hat (quando ancora esisteva in quanto distro libera, bei tempi <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ), a SuSe, Mandrake (predecessore dell&#8217;attuale Mandriva), DSL, Debian, Ubuntu, Slackware, Fedora, Gentoo, ecc ecc ecc e, per quanto due o tre tra queste fossero le mie preferite, non ne ho mai trovata una che mi soddisfacesse al 100% sotto tutti gli aspetti .</p>
<p>Un paio di mesi fa acquistai un MSi Wind U100 e, come è al mio solito, iniziai a provare mille mila distro per trovare quella che meglio si adattasse all&#8217;hardware del netbook, finchè una sera sul canale irc dell&#8217;ihteam, merlok mi propose di installare Arch Linux, che fino a quel momento avevo solo sentito nominare vagamente.</p>
<p>Beh, dopo due mesi di forte utilizzo, posso affermare di aver finalmente trovato la distro che fa per me ! <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Di conseguenza, voglio elencare le motivazioni che mi fanno affermare ciò, tanto per far conoscere meglio ai lettori questa fantastica distribuzione, così poco conosciuta ma così tanto eccezionale.</p>
<p><span id="more-883"></span>Prima di tutto, vanno specificate due cose che *secondo me* sono fondamentali ai fini di una giusta comprensione .</p>
<p>Arch non si basa su nessun&#8217;altra distrubuzione esistente, per intenderci non è come Ubuntu che è debian based o cose così, semplicemente Arch è Arch, con tutte le conseguenze che questo comporta (e che in parte elencherò più avanti).</p>
<p>Arch segue uno schema di rolling release, ovvero, nei repository troverete praticamente le ultimissime versioni dei software che volete installare già pacchettizzate (o meno, ma anche questo lo vedremo più avanti <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> )  e pronte per essere installate, quindi avrete un sistema sempre aggiornatissimo senza complicarsi la vita scaricando i src del vostro software preferito via svn &amp; co .</p>
<p>Inizio con il dire, che uno dei punti di forza di Arch è (come *teoricamente* dovrebbe essere per qualsiasi altra distro) l&#8217;utenza &#8230; in particolare ho riscontrato questo aspetto nel <a href="http://wiki.archlinux.org" target="_blank">Wiki ufficiale</a> dove si trova veramente di tutto, partendo dall&#8217;installazione dei software principali (vedi Xorg, driver video, ecc) a quelli più specifici (driver particolari per schede wifi, tweacks per le schede grafiche più recenti, ecc), tutto, ma DAVVERO tutto, in un unico wiki, senza dover impazzire per cercare informazioni sparse tra vari forum pseudo-ufficiali.</p>
<p>Questa cosa (e l&#8217;aiuto di merlok ovviamente <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ) mi è stata di grande aiuto durante la fase di installazione, poichè di default l&#8217;immagine contiene solo un sistema di base con bash e pochi altri applicativi sempre da riga di comando &#8230; tutto il resto (ad iniziare dall&#8217;ambiente grafico) va installato manualmente.</p>
<p>&#8220;Che palle!&#8221; direte voi &#8230; ed invece no, perchè potendo scegliere cosa installare, come installarlo e come configurarlo, si ha fin dall&#8217;inizio una distribuzione estremamente snella e veloce, adatta alle nostre esigienze (e che non abbia installato di default un mare di merda che non serve, stile Bubuntu insomma XD).</p>
<p>Una volta installati driver nvidia, Xorg, GDM, Gnome e le altre cose che mi servivano tramite il package manager di Arch (pacman, che è facilissimo da usare come le sue controparti), ho affrontato un altro aspetto fighissimo di Arch che ora vi illustrerò.</p>
<p>Tutto (o quasi ovviamente) ciò che concerne l&#8217;avvio del sistema, quali moduli caricare, come caricarli, e tante altre cosette interessanti, si trova in un unico file, rc.conf, situato in /etc/ .</p>
<p>Può sembrare banale questa cosa, ma in realtà è la cosa che preferisco, poichè modificando un solo file posso tranquillamente decidere come si comporta il sistema e quanto scattante lo voglio.</p>
<p>Proprio grazie a questo, noto una velocità globale nettamente superiore a debian ad esempio, ma continuiamo &#8230;</p>
<p>Ho nominato <strong>pacman </strong>&#8230; come apt, yum e gli altri package manager delle varie distro, pacman è veramente semplice da utilizzare ed offre una trasparenza che pochi altri hanno, così da tenere sempre sotto controllo i pacchetti che si installano e le varie dipendenze che si portano dietro.</p>
<p>Un altro punto di forza è <strong>AUR</strong>, acronimo di <strong>A</strong>rch <strong>U</strong>ser <strong>R</strong>epository, che è proprio quello che il nome suggerisce, un repository di Arch a completa disposizione degli utenti &#8230; quindi, se non trovate un determinato software nei repo di pacman (cosa cmq alquanto difficile), potete stare certi che un altro utente Arch lo abbia inserito dentro AUR (figata!), al quale potrete accedere con un secondo package manager chiamato <strong>yaourt </strong>che si interfaccia a sua volta a pacman per installare eventuali dipendenze dei suoi pacchetti (può sembrare complesso ma non lo è fidatevi ! ). Dentro AUR i pacchetti in realtà non vengono distribuiti nel senso stretto del termine, bensì il pacchetto consiste in uno script chiamato <strong>PKGBUILD </strong>che automatizza completamente il processo di download dei sorgenti, compilazione ed installazione, tenendo comunque traccia di quello che si sta installando.</p>
<p>Quello che intendo è che, su altre distro, quando si installa un qualche pacchetto dai sorgenti, tale installazione non è gestibile dal package manager, per intenderci se compilo ed installo la versione svn di aMSN su Ubuntu, non potrò rimuoverla e/o aggiornarla con apt proprio perchè non l&#8217;ho installata tramite lui, mentre con Arch, ciò che si installa con yaourt (o meglio che si scarica e compila), si gestisce con yaourt come qualsiasi altro pacchetto.</p>
<p>Detto questo, sostanzialmente mi ritrovo con una distribuzione che ho personalizzato senza fatica al 100%, leggerissima e veloce ma che allo stesso tempo ha veramente tutto quello di cui ho bisogno &#8230; per non parlare poi del fatto che, seguendo la rolling release, sostanzialmente ogni giorno (a volte più volte nello stesso giorno) ci sono degli aggiornamenti da installare, e quando mi ritrovo tutte le ultimissime versioni dei software mi sento come un ragazzino che sta per aprire un regalo XD.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Invia aScript &amp; Style">Invia aScript &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;Title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Condividi suBlinklist">Condividi suBlinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Condividi sudel.icio.us">Condividi sudel.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Diggalo!">Diggalo!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux&amp;desc=Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20" rel="nofollow" class="external" title="Pubblicalo suDiigo">Pubblicalo suDiigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Condividi suReddit">Condividi suReddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;submitHeadline=Perch%C3%A8+ho+scelto+Arch+Linux&amp;submitSummary=Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Hai trovato qualcosa di buono? Condividilo su StumbleUpon">Hai trovato qualcosa di buono? Condividilo su StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html" rel="nofollow" class="external" title="Condividi suTechnorati">Condividi suTechnorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Condividi suMixx">Condividi suMixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;t=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Pubblicalo suMySpace">Pubblicalo suMySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Invia aDesignFloat">Invia aDesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;t=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Condividi suFacebook">Condividi suFacebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Perch%C3%A8+ho+scelto+Arch+Linux+-+http://b2l.me/gmn37+" rel="nofollow" class="external" title="Tweetalo!">Tweetalo!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Perch%C3%A8%20ho%20scelto%20Arch%20Linux%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html" rel="nofollow" class="external" title="Vuoi segnalarlo via mail ad un amico?">Vuoi segnalarlo via mail ad un amico?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Perch%C3%A8%20ho%20scelto%20Arch%20Linux%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html" rel="nofollow" class="external" title="Suggerisci questo articolo aToMuse">Suggerisci questo articolo aToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html/feed" rel="nofollow" class="external" title="Vuoi iscriverti ai commenti per questo post?">Vuoi iscriverti ai commenti per questo post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux&amp;summary=Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20&amp;source=evilsocket.net" rel="nofollow" class="external" title="Condividi suLinkedIn">Condividi suLinkedIn</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;h=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="SeeddaloNewsvine">SeeddaloNewsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20&amp;posturl=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;posttitle=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Condividi suDevmarks">Condividi suDevmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Aggiungilo aGoogle Bookmarks">Aggiungilo aGoogle Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;bm_description=Perch%C3%A8+ho+scelto+Arch+Linux&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Aggiungilo aMister Wong">Aggiungilo aMister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html" rel="nofollow" class="external" title="Aggiungilo aIzeby">Aggiungilo aIzeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html" rel="nofollow" class="external" title="Condividi suTipd">Condividi suTipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Condividi suPFBuzz">Condividi suPFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Perch%C3%A8+ho+scelto+Arch+Linux&amp;link=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html" rel="nofollow" class="external" title="Condividi suFriendFeed">Condividi suFriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Segnalo suBlogMarks">Segnalo suBlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Perch%C3%A8+ho+scelto+Arch+Linux&amp;url=http%3A%2F%2Fwww.evilsocket.net%2F883%2Fperche-ho-scelto-arch-linux.html&amp;desc=Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Invia aTwittley">Invia aTwittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html" rel="nofollow" class="external" title="Condividi suFwisp">Condividi suFwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux&amp;body=Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20" rel="nofollow" class="external" title="MooccaloDesignMoo!">MooccaloDesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Condividi suBobrDobr">Condividi suBobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;lname=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Aggiungilo aYandex.Bookmarks">Aggiungilo aYandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;u_data[name]=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Aggiungilo aMemory.ru">Aggiungilo aMemory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;bmtitle=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Aggiungilo a100 bookmarks">Aggiungilo a100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Aggiungilo aMyPlace">Aggiungilo aMyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;t=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Invia aHacker News">Invia aHacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html" rel="nofollow" class="external" title="Invia questa pagina aPrint Friendly">Invia questa pagina aPrint Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux&amp;body=Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20" rel="nofollow" class="external" title="Bumpalo suDesignBump">Bumpalo suDesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;T=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Aggiungilo aNing">Aggiungilo aNing</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Perch%C3%A8+ho+scelto+Arch+Linux&quot;+-+from+http://b2l.me/gmn37" rel="nofollow" class="external" title="Pubblicalo suIdentica">Pubblicalo suIdentica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Salvalo suXerpi">Salvalo suXerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Condividi suWikio">Condividi suWikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html+&quot;Perch%C3%A8+ho+scelto+Arch+Linux&quot;" rel="nofollow" class="external" title="Suggeriscilo suTechMeme">Suggeriscilo suTechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux&amp;selection=Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20" rel="nofollow" class="external" title="Pubblicalo suPosterous">Pubblicalo suPosterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;type=Article&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Grinddalo suGlobal Grind">Grinddalo suGlobal Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux&amp;body=Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20" rel="nofollow" class="external" title="Notificalo suPing.fm">Notificalo suPing.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Perch%C3%A8+ho+scelto+Arch+Linux&amp;u=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;b=Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20" rel="nofollow" class="external" title="Invia aNUjij">Invia aNUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux&amp;desc=Di%20distribuzioni%20GNU%2FLinux%20in%20questi%20anni%20ne%20ho%20provate%20veramente%20tante%2C%20partendo%20da%20Red%20Hat%20%28quando%20ancora%20esisteva%20in%20quanto%20distro%20libera%2C%20bei%20tempi%20%3A%29%29%2C%20a%20SuSe%2C%20Mandrake%20%28predecessore%20dell%27attuale%20Mandriva%29%2C%20DSL%2C%20Debian%2C%20Ubuntu%2C%20Slackware%2C%20Fedora%2C%20Gentoo%2C%20ecc%20ecc%20ecc%20e%2C%20per%20quanto%20due%20o%20tre%20tra%20" rel="nofollow" class="external" title="Invia aeKudos">Invia aeKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux&amp;popup=no" rel="nofollow" class="external" title="Invia aNetvouz">Invia aNetvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Perch%C3%A8+ho+scelto+Arch+Linux&amp;url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html" rel="nofollow" class="external" title="Invia aNetvibes">Invia aNetvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Condividi suFleck">Condividi suFleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html&amp;title=Perch%C3%A8+ho+scelto+Arch+Linux" rel="nofollow" class="external" title="Condividi suBlogosphere News">Condividi suBlogosphere News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.evilsocket.net/?ak_action=api_record_view&id=883&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.evilsocket.net/728/tra-un-po-un-nuovo-giocattolo-d.html' rel='bookmark' title='Permanent Link: Tra un po un nuovo giocattolo :D'>Tra un po un nuovo giocattolo :D</a></li>
<li><a href='http://www.evilsocket.net/754/kerby-light-weight-video-surveillance-system.html' rel='bookmark' title='Permanent Link: Kerby &#8211; Light weight video surveillance system.'>Kerby &#8211; Light weight video surveillance system.</a></li>
<li><a href='http://www.evilsocket.net/748/ed-infine-arrivo-la-alix.html' rel='bookmark' title='Permanent Link: Ed infine arrivÃ² la Alix'>Ed infine arrivÃ² la Alix</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.evilsocket.net/883/perche-ho-scelto-arch-linux.html/feed</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Finalmente I&#8217;m back!</title>
		<link>http://www.evilsocket.net/881/finalmente-im-back.html</link>
		<comments>http://www.evilsocket.net/881/finalmente-im-back.html#comments</comments>
		<pubDate>Wed, 17 Feb 2010 13:03:33 +0000</pubDate>
		<dc:creator>evilsocket</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.evilsocket.net/?p=881</guid>
		<description><![CDATA[Dopo un bel po di tempo (precisamente dal 23 dicembre 2009), finalmente riprendo possesso del mio computer, dei miei dispositivi e di gran parte delle mie cianfrusaglie elettroniche  
In questo periodo, durante il quale con me avevo solo un MSi Wind U100 (gran bel netbook x carità, ma di certo non si può paragonare [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Dopo un bel po di tempo (precisamente dal 23 dicembre 2009), finalmente riprendo possesso del mio computer, dei miei dispositivi e di gran parte delle mie cianfrusaglie elettroniche <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>In questo periodo, durante il quale con me avevo solo un MSi Wind U100 (gran bel netbook x carità, ma di certo non si può paragonare al mio quad core XD), un mio amico mi ha fatto conoscere la distro Arch Linux, della quale mi sono innamorato per la sua semplicità, velocità ed efficienza, di conseguenza, dopo aver backuppato tutto l&#8217;inverosimile, ho rimosso &#8220;bubuntu&#8221; (white_sheep docet <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ) dal mio fisso e ho messo l&#8217;ultima core release di arch.</p>
<p>Naturalmente non ho tanto tempo libero quanto prima, il lavoro a tempo pieno mi porta via tempo ed energie, ma quando torno la sera e nei fine settimana, c&#8217;è sempre tanta voglia di fare e di codare, quindi posso ufficialmente dire di essere di nuovo tornato ! <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Invia aScript &amp; Style">Invia aScript &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;Title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Condividi suBlinklist">Condividi suBlinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Condividi sudel.icio.us">Condividi sudel.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Diggalo!">Diggalo!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21&amp;desc=Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20" rel="nofollow" class="external" title="Pubblicalo suDiigo">Pubblicalo suDiigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Condividi suReddit">Condividi suReddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.evilsocket.net/881/finalmente-im-back.html&amp;submitHeadline=Finalmente+I%27m+back%21&amp;submitSummary=Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Hai trovato qualcosa di buono? Condividilo su StumbleUpon">Hai trovato qualcosa di buono? Condividilo su StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.evilsocket.net/881/finalmente-im-back.html" rel="nofollow" class="external" title="Condividi suTechnorati">Condividi suTechnorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Condividi suMixx">Condividi suMixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.evilsocket.net/881/finalmente-im-back.html&amp;t=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Pubblicalo suMySpace">Pubblicalo suMySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Invia aDesignFloat">Invia aDesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.evilsocket.net/881/finalmente-im-back.html&amp;t=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Condividi suFacebook">Condividi suFacebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Finalmente+I%27m+back%21+-+http://b2l.me/gk6gp+" rel="nofollow" class="external" title="Tweetalo!">Tweetalo!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Finalmente%20I%27m%20back%21%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/881/finalmente-im-back.html" rel="nofollow" class="external" title="Vuoi segnalarlo via mail ad un amico?">Vuoi segnalarlo via mail ad un amico?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Finalmente%20I%27m%20back%21%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/881/finalmente-im-back.html" rel="nofollow" class="external" title="Suggerisci questo articolo aToMuse">Suggerisci questo articolo aToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.evilsocket.net/881/finalmente-im-back.html/feed" rel="nofollow" class="external" title="Vuoi iscriverti ai commenti per questo post?">Vuoi iscriverti ai commenti per questo post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21&amp;summary=Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20&amp;source=evilsocket.net" rel="nofollow" class="external" title="Condividi suLinkedIn">Condividi suLinkedIn</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.evilsocket.net/881/finalmente-im-back.html&amp;h=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="SeeddaloNewsvine">SeeddaloNewsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20&amp;posturl=http://www.evilsocket.net/881/finalmente-im-back.html&amp;posttitle=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Condividi suDevmarks">Condividi suDevmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Aggiungilo aGoogle Bookmarks">Aggiungilo aGoogle Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;bm_description=Finalmente+I%27m+back%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Aggiungilo aMister Wong">Aggiungilo aMister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.evilsocket.net/881/finalmente-im-back.html" rel="nofollow" class="external" title="Aggiungilo aIzeby">Aggiungilo aIzeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.evilsocket.net/881/finalmente-im-back.html" rel="nofollow" class="external" title="Condividi suTipd">Condividi suTipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Condividi suPFBuzz">Condividi suPFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Finalmente+I%27m+back%21&amp;link=http://www.evilsocket.net/881/finalmente-im-back.html" rel="nofollow" class="external" title="Condividi suFriendFeed">Condividi suFriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Segnalo suBlogMarks">Segnalo suBlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Finalmente+I%27m+back%21&amp;url=http%3A%2F%2Fwww.evilsocket.net%2F881%2Ffinalmente-im-back.html&amp;desc=Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20&amp;pcat=Technology&amp;tags=hacking" rel="nofollow" class="external" title="Invia aTwittley">Invia aTwittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.evilsocket.net/881/finalmente-im-back.html" rel="nofollow" class="external" title="Condividi suFwisp">Condividi suFwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21&amp;body=Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20" rel="nofollow" class="external" title="MooccaloDesignMoo!">MooccaloDesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Condividi suBobrDobr">Condividi suBobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.evilsocket.net/881/finalmente-im-back.html&amp;lname=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Aggiungilo aYandex.Bookmarks">Aggiungilo aYandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.evilsocket.net/881/finalmente-im-back.html&amp;u_data[name]=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Aggiungilo aMemory.ru">Aggiungilo aMemory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.evilsocket.net/881/finalmente-im-back.html&amp;bmtitle=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Aggiungilo a100 bookmarks">Aggiungilo a100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Aggiungilo aMyPlace">Aggiungilo aMyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.evilsocket.net/881/finalmente-im-back.html&amp;t=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Invia aHacker News">Invia aHacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.evilsocket.net/881/finalmente-im-back.html" rel="nofollow" class="external" title="Invia questa pagina aPrint Friendly">Invia questa pagina aPrint Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21&amp;body=Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20" rel="nofollow" class="external" title="Bumpalo suDesignBump">Bumpalo suDesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;T=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Aggiungilo aNing">Aggiungilo aNing</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Finalmente+I%27m+back%21&quot;+-+from+http://b2l.me/gk6gp" rel="nofollow" class="external" title="Pubblicalo suIdentica">Pubblicalo suIdentica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Salvalo suXerpi">Salvalo suXerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Condividi suWikio">Condividi suWikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.evilsocket.net/881/finalmente-im-back.html+&quot;Finalmente+I%27m+back%21&quot;" rel="nofollow" class="external" title="Suggeriscilo suTechMeme">Suggeriscilo suTechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.evilsocket.net/881/finalmente-im-back.html" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21&amp;selection=Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20" rel="nofollow" class="external" title="Pubblicalo suPosterous">Pubblicalo suPosterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;type=Article&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Grinddalo suGlobal Grind">Grinddalo suGlobal Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21&amp;body=Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20" rel="nofollow" class="external" title="Notificalo suPing.fm">Notificalo suPing.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Finalmente+I%27m+back%21&amp;u=http://www.evilsocket.net/881/finalmente-im-back.html&amp;b=Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20" rel="nofollow" class="external" title="Invia aNUjij">Invia aNUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21&amp;desc=Dopo%20un%20bel%20po%20di%20tempo%20%28precisamente%20dal%2023%20dicembre%202009%29%2C%20finalmente%20riprendo%20possesso%20del%20mio%20computer%2C%20dei%20miei%20dispositivi%20e%20di%20gran%20parte%20delle%20mie%20cianfrusaglie%20elettroniche%20%3AD%0D%0A%0D%0AIn%20questo%20periodo%2C%20durante%20il%20quale%20con%20me%20avevo%20solo%20un%20MSi%20Wind%20U100%20%28gran%20bel%20netbook%20x%20carit%C3%A0%2C%20ma%20di%20certo%20" rel="nofollow" class="external" title="Invia aeKudos">Invia aeKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21&amp;popup=no" rel="nofollow" class="external" title="Invia aNetvouz">Invia aNetvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Finalmente+I%27m+back%21&amp;url=http://www.evilsocket.net/881/finalmente-im-back.html" rel="nofollow" class="external" title="Invia aNetvibes">Invia aNetvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Condividi suFleck">Condividi suFleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.evilsocket.net/881/finalmente-im-back.html&amp;title=Finalmente+I%27m+back%21" rel="nofollow" class="external" title="Condividi suBlogosphere News">Condividi suBlogosphere News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.evilsocket.net/?ak_action=api_record_view&id=881&type=feed" alt="" />

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.evilsocket.net/881/finalmente-im-back.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>A volte la postale funziona O_O</title>
		<link>http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html</link>
		<comments>http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html#comments</comments>
		<pubDate>Wed, 20 Jan 2010 13:43:03 +0000</pubDate>
		<dc:creator>evilsocket</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.evilsocket.net/?p=879</guid>
		<description><![CDATA[L&#8217;altro giorno ho ricevuto una notizia che mi ha reso sia soddisfatto che incredulo.
Chi segue questo blog (xkè c&#8217;è pure qualcuno che lo segue ?!?! XD) sarà informato sulla vicenda di qualche mese fa, durante la quale *qualcuno* rooto il server sul quale si trovava facendo diversi danni sia a livello pratico che personale.
Da li [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>L&#8217;altro giorno ho ricevuto una notizia che mi ha reso sia soddisfatto che incredulo.</p>
<p>Chi segue questo blog (xkè c&#8217;è pure qualcuno che lo segue ?!?! XD) sarà informato sulla vicenda di qualche mese fa, durante la quale *qualcuno* rooto il server sul quale si trovava facendo diversi danni sia a livello pratico che personale.</p>
<p>Da li scattò una denuncia da parte mia, alla quale allegai decine e decine di pagine di log che riuscii a recuperare che isolavano due indirizzi ip dei presunti attaccanti (in realtà credo che solo uno dei due sia stato il vero cazzone <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ).</p>
<p>Ebbene, una *certa persona* che non nominerò per non causargli + casini di quanti già non ne abbia al momento, l&#8217;altro giorno mi ha chiamato dicendomi che la polizia postale gli ha mandato una bella letterina (una probabile convocazione nei pressi della questura) a casa.</p>
<p>Inutile dire che era proprio la persona di cui sospettavo, anzi, a dire il vero ero proprio sicuro che era lui lo stronzo.</p>
<p>Che dire, vedremo quel che succederà, ma in tutta sta storia la cosa + strana è che per una volta la polizia postale ha funzionato XD.</p>
<p>PS: Per *chi so io* :</p>
<p>Non vorrei veramente essere al tuo posto ora <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Invia aScript &amp; Style">Invia aScript &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;Title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Condividi suBlinklist">Condividi suBlinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Condividi sudel.icio.us">Condividi sudel.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Diggalo!">Diggalo!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O&amp;desc=L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20" rel="nofollow" class="external" title="Pubblicalo suDiigo">Pubblicalo suDiigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Condividi suReddit">Condividi suReddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;submitHeadline=A+volte+la+postale+funziona+O_O&amp;submitSummary=L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Hai trovato qualcosa di buono? Condividilo su StumbleUpon">Hai trovato qualcosa di buono? Condividilo su StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html" rel="nofollow" class="external" title="Condividi suTechnorati">Condividi suTechnorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Condividi suMixx">Condividi suMixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;t=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Pubblicalo suMySpace">Pubblicalo suMySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Invia aDesignFloat">Invia aDesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;t=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Condividi suFacebook">Condividi suFacebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=A+volte+la+postale+funziona+O_O+-+http://b2l.me/d8ewu+" rel="nofollow" class="external" title="Tweetalo!">Tweetalo!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22A%20volte%20la%20postale%20funziona%20O_O%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html" rel="nofollow" class="external" title="Vuoi segnalarlo via mail ad un amico?">Vuoi segnalarlo via mail ad un amico?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22A%20volte%20la%20postale%20funziona%20O_O%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html" rel="nofollow" class="external" title="Suggerisci questo articolo aToMuse">Suggerisci questo articolo aToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html/feed" rel="nofollow" class="external" title="Vuoi iscriverti ai commenti per questo post?">Vuoi iscriverti ai commenti per questo post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O&amp;summary=L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20&amp;source=evilsocket.net" rel="nofollow" class="external" title="Condividi suLinkedIn">Condividi suLinkedIn</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;h=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="SeeddaloNewsvine">SeeddaloNewsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20&amp;posturl=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;posttitle=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Condividi suDevmarks">Condividi suDevmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Aggiungilo aGoogle Bookmarks">Aggiungilo aGoogle Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;bm_description=A+volte+la+postale+funziona+O_O&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Aggiungilo aMister Wong">Aggiungilo aMister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html" rel="nofollow" class="external" title="Aggiungilo aIzeby">Aggiungilo aIzeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html" rel="nofollow" class="external" title="Condividi suTipd">Condividi suTipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Condividi suPFBuzz">Condividi suPFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=A+volte+la+postale+funziona+O_O&amp;link=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html" rel="nofollow" class="external" title="Condividi suFriendFeed">Condividi suFriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Segnalo suBlogMarks">Segnalo suBlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=A+volte+la+postale+funziona+O_O&amp;url=http%3A%2F%2Fwww.evilsocket.net%2F879%2Fa-volte-la-postale-funziona-o_o.html&amp;desc=L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20&amp;pcat=Technology&amp;tags=hacking" rel="nofollow" class="external" title="Invia aTwittley">Invia aTwittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html" rel="nofollow" class="external" title="Condividi suFwisp">Condividi suFwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O&amp;body=L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20" rel="nofollow" class="external" title="MooccaloDesignMoo!">MooccaloDesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Condividi suBobrDobr">Condividi suBobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;lname=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Aggiungilo aYandex.Bookmarks">Aggiungilo aYandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;u_data[name]=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Aggiungilo aMemory.ru">Aggiungilo aMemory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;bmtitle=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Aggiungilo a100 bookmarks">Aggiungilo a100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Aggiungilo aMyPlace">Aggiungilo aMyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;t=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Invia aHacker News">Invia aHacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html" rel="nofollow" class="external" title="Invia questa pagina aPrint Friendly">Invia questa pagina aPrint Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O&amp;body=L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20" rel="nofollow" class="external" title="Bumpalo suDesignBump">Bumpalo suDesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;T=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Aggiungilo aNing">Aggiungilo aNing</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;A+volte+la+postale+funziona+O_O&quot;+-+from+http://b2l.me/d8ewu" rel="nofollow" class="external" title="Pubblicalo suIdentica">Pubblicalo suIdentica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Salvalo suXerpi">Salvalo suXerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Condividi suWikio">Condividi suWikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html+&quot;A+volte+la+postale+funziona+O_O&quot;" rel="nofollow" class="external" title="Suggeriscilo suTechMeme">Suggeriscilo suTechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O&amp;selection=L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20" rel="nofollow" class="external" title="Pubblicalo suPosterous">Pubblicalo suPosterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;type=Article&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Grinddalo suGlobal Grind">Grinddalo suGlobal Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O&amp;body=L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20" rel="nofollow" class="external" title="Notificalo suPing.fm">Notificalo suPing.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=A+volte+la+postale+funziona+O_O&amp;u=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;b=L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20" rel="nofollow" class="external" title="Invia aNUjij">Invia aNUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O&amp;desc=L%27altro%20giorno%20ho%20ricevuto%20una%20notizia%20che%20mi%20ha%20reso%20sia%20soddisfatto%20che%20incredulo.%0D%0A%0D%0AChi%20segue%20questo%20blog%20%28xk%C3%A8%20c%27%C3%A8%20pure%20qualcuno%20che%20lo%20segue%20%3F%21%3F%21%20XD%29%20sar%C3%A0%20informato%20sulla%20vicenda%20di%20qualche%20mese%20fa%2C%20durante%20la%20quale%20%2Aqualcuno%2A%20rooto%20il%20server%20sul%20quale%20si%20trovava%20facendo%20diversi%20danni%20sia%20a%20" rel="nofollow" class="external" title="Invia aeKudos">Invia aeKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O&amp;popup=no" rel="nofollow" class="external" title="Invia aNetvouz">Invia aNetvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=A+volte+la+postale+funziona+O_O&amp;url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html" rel="nofollow" class="external" title="Invia aNetvibes">Invia aNetvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Condividi suFleck">Condividi suFleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html&amp;title=A+volte+la+postale+funziona+O_O" rel="nofollow" class="external" title="Condividi suBlogosphere News">Condividi suBlogosphere News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.evilsocket.net/?ak_action=api_record_view&id=879&type=feed" alt="" />

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.evilsocket.net/879/a-volte-la-postale-funziona-o_o.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Pausa lavori &#8230;</title>
		<link>http://www.evilsocket.net/877/pausa-lavori.html</link>
		<comments>http://www.evilsocket.net/877/pausa-lavori.html#comments</comments>
		<pubDate>Sat, 16 Jan 2010 18:37:43 +0000</pubDate>
		<dc:creator>evilsocket</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.evilsocket.net/?p=877</guid>
		<description><![CDATA[E&#8217; un periodo difficile questo, per farla breve devo trovare al più presto un lavoro part time (il che mi consentirebbe di continuare gli studi) e un appartamento/camera in affitto &#8230; per questo è parecchio che non scrivo ne che aggiorno i miei progetti (Hybris soprattutto).
Anyway volevo solo far sapere a chiunque seguisse hybris &#38; [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>E&#8217; un periodo difficile questo, per farla breve devo trovare al più presto un lavoro part time (il che mi consentirebbe di continuare gli studi) e un appartamento/camera in affitto &#8230; per questo è parecchio che non scrivo ne che aggiorno i miei progetti (Hybris soprattutto).</p>
<p>Anyway volevo solo far sapere a chiunque seguisse hybris &amp; co che il progetto non è assolutamente morto, ma è semplicemente in pausa prima della release pacchettizzata della 1.0 .</p>
<p>Bye <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Invia aScript &amp; Style">Invia aScript &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.evilsocket.net/877/pausa-lavori.html&amp;Title=Pausa+lavori+..." rel="nofollow" class="external" title="Condividi suBlinklist">Condividi suBlinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Condividi sudel.icio.us">Condividi sudel.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Diggalo!">Diggalo!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+...&amp;desc=E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo" rel="nofollow" class="external" title="Pubblicalo suDiigo">Pubblicalo suDiigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Condividi suReddit">Condividi suReddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.evilsocket.net/877/pausa-lavori.html&amp;submitHeadline=Pausa+lavori+...&amp;submitSummary=E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Hai trovato qualcosa di buono? Condividilo su StumbleUpon">Hai trovato qualcosa di buono? Condividilo su StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.evilsocket.net/877/pausa-lavori.html" rel="nofollow" class="external" title="Condividi suTechnorati">Condividi suTechnorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Condividi suMixx">Condividi suMixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.evilsocket.net/877/pausa-lavori.html&amp;t=Pausa+lavori+..." rel="nofollow" class="external" title="Pubblicalo suMySpace">Pubblicalo suMySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Invia aDesignFloat">Invia aDesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.evilsocket.net/877/pausa-lavori.html&amp;t=Pausa+lavori+..." rel="nofollow" class="external" title="Condividi suFacebook">Condividi suFacebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Pausa+lavori+...+-+http://b2l.me/dvvt3+" rel="nofollow" class="external" title="Tweetalo!">Tweetalo!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Pausa%20lavori%20...%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/877/pausa-lavori.html" rel="nofollow" class="external" title="Vuoi segnalarlo via mail ad un amico?">Vuoi segnalarlo via mail ad un amico?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Pausa%20lavori%20...%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/877/pausa-lavori.html" rel="nofollow" class="external" title="Suggerisci questo articolo aToMuse">Suggerisci questo articolo aToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.evilsocket.net/877/pausa-lavori.html/feed" rel="nofollow" class="external" title="Vuoi iscriverti ai commenti per questo post?">Vuoi iscriverti ai commenti per questo post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+...&amp;summary=E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo&amp;source=evilsocket.net" rel="nofollow" class="external" title="Condividi suLinkedIn">Condividi suLinkedIn</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.evilsocket.net/877/pausa-lavori.html&amp;h=Pausa+lavori+..." rel="nofollow" class="external" title="SeeddaloNewsvine">SeeddaloNewsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo&amp;posturl=http://www.evilsocket.net/877/pausa-lavori.html&amp;posttitle=Pausa+lavori+..." rel="nofollow" class="external" title="Condividi suDevmarks">Condividi suDevmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Aggiungilo aGoogle Bookmarks">Aggiungilo aGoogle Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.evilsocket.net/877/pausa-lavori.html&amp;bm_description=Pausa+lavori+...&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Aggiungilo aMister Wong">Aggiungilo aMister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.evilsocket.net/877/pausa-lavori.html" rel="nofollow" class="external" title="Aggiungilo aIzeby">Aggiungilo aIzeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.evilsocket.net/877/pausa-lavori.html" rel="nofollow" class="external" title="Condividi suTipd">Condividi suTipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Condividi suPFBuzz">Condividi suPFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Pausa+lavori+...&amp;link=http://www.evilsocket.net/877/pausa-lavori.html" rel="nofollow" class="external" title="Condividi suFriendFeed">Condividi suFriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Segnalo suBlogMarks">Segnalo suBlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Pausa+lavori+...&amp;url=http%3A%2F%2Fwww.evilsocket.net%2F877%2Fpausa-lavori.html&amp;desc=E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo&amp;pcat=Technology&amp;tags=hacking" rel="nofollow" class="external" title="Invia aTwittley">Invia aTwittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.evilsocket.net/877/pausa-lavori.html" rel="nofollow" class="external" title="Condividi suFwisp">Condividi suFwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+...&amp;body=E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo" rel="nofollow" class="external" title="MooccaloDesignMoo!">MooccaloDesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Condividi suBobrDobr">Condividi suBobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.evilsocket.net/877/pausa-lavori.html&amp;lname=Pausa+lavori+..." rel="nofollow" class="external" title="Aggiungilo aYandex.Bookmarks">Aggiungilo aYandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.evilsocket.net/877/pausa-lavori.html&amp;u_data[name]=Pausa+lavori+..." rel="nofollow" class="external" title="Aggiungilo aMemory.ru">Aggiungilo aMemory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.evilsocket.net/877/pausa-lavori.html&amp;bmtitle=Pausa+lavori+..." rel="nofollow" class="external" title="Aggiungilo a100 bookmarks">Aggiungilo a100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Aggiungilo aMyPlace">Aggiungilo aMyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.evilsocket.net/877/pausa-lavori.html&amp;t=Pausa+lavori+..." rel="nofollow" class="external" title="Invia aHacker News">Invia aHacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.evilsocket.net/877/pausa-lavori.html" rel="nofollow" class="external" title="Invia questa pagina aPrint Friendly">Invia questa pagina aPrint Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+...&amp;body=E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo" rel="nofollow" class="external" title="Bumpalo suDesignBump">Bumpalo suDesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;T=Pausa+lavori+..." rel="nofollow" class="external" title="Aggiungilo aNing">Aggiungilo aNing</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Pausa+lavori+...&quot;+-+from+http://b2l.me/dvvt3" rel="nofollow" class="external" title="Pubblicalo suIdentica">Pubblicalo suIdentica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Salvalo suXerpi">Salvalo suXerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Condividi suWikio">Condividi suWikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.evilsocket.net/877/pausa-lavori.html+&quot;Pausa+lavori+...&quot;" rel="nofollow" class="external" title="Suggeriscilo suTechMeme">Suggeriscilo suTechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.evilsocket.net/877/pausa-lavori.html" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+...&amp;selection=E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo" rel="nofollow" class="external" title="Pubblicalo suPosterous">Pubblicalo suPosterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;type=Article&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Grinddalo suGlobal Grind">Grinddalo suGlobal Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+...&amp;body=E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo" rel="nofollow" class="external" title="Notificalo suPing.fm">Notificalo suPing.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Pausa+lavori+...&amp;u=http://www.evilsocket.net/877/pausa-lavori.html&amp;b=E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo" rel="nofollow" class="external" title="Invia aNUjij">Invia aNUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+...&amp;desc=E%27%20un%20periodo%20difficile%20questo%2C%20per%20farla%20breve%20devo%20trovare%20al%20pi%C3%B9%20presto%20un%20lavoro%20part%20time%20%28il%20che%20mi%20consentirebbe%20di%20continuare%20gli%20studi%29%20e%20un%20appartamento%2Fcamera%20in%20affitto%20...%20per%20questo%20%C3%A8%20parecchio%20che%20non%20scrivo%20ne%20che%20aggiorno%20i%20miei%20progetti%20%28Hybris%20soprattutto%29.%0D%0A%0D%0AAnyway%20volevo%20solo" rel="nofollow" class="external" title="Invia aeKudos">Invia aeKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+...&amp;popup=no" rel="nofollow" class="external" title="Invia aNetvouz">Invia aNetvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Pausa+lavori+...&amp;url=http://www.evilsocket.net/877/pausa-lavori.html" rel="nofollow" class="external" title="Invia aNetvibes">Invia aNetvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Condividi suFleck">Condividi suFleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.evilsocket.net/877/pausa-lavori.html&amp;title=Pausa+lavori+..." rel="nofollow" class="external" title="Condividi suBlogosphere News">Condividi suBlogosphere News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.evilsocket.net/?ak_action=api_record_view&id=877&type=feed" alt="" />

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.evilsocket.net/877/pausa-lavori.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Il Worm dell&#8217;iPhone &#8230; il Jailbreak è rischioso?</title>
		<link>http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html</link>
		<comments>http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html#comments</comments>
		<pubDate>Mon, 21 Dec 2009 17:13:36 +0000</pubDate>
		<dc:creator>evilsocket</dc:creator>
				<category><![CDATA[Exploiting]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[alpine]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[worm]]></category>

		<guid isPermaLink="false">http://www.evilsocket.net/?p=871</guid>
		<description><![CDATA[Un po di tempo fa ha fatto scalpore il primo virus di tipo worm per iPhone, che nel giro di pochi giorni aveva ownato una miriade di melafonini in giro per il mondo.
Dopo l&#8217;accaduto, subito nella rete si sono sparsi svariati rumors, la maggior parte dei quali si può riassumere in :
Non eseguite il jailbreak [...]


Related posts:<ol><li><a href='http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html' rel='bookmark' title='Permanent Link: Resettare le password ed i privilegi di MySQL'>Resettare le password ed i privilegi di MySQL</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.evilsocket.net/wp-content/uploads/2009/12/iphone_worm.jpg"><img class="alignleft size-medium wp-image-875" title="iphone_worm" src="http://www.evilsocket.net/wp-content/uploads/2009/12/iphone_worm-300x300.jpg" alt="iphone_worm" width="108" height="108" /></a>Un po di tempo fa ha fatto scalpore il primo virus di tipo worm per iPhone, che nel giro di pochi giorni aveva ownato una miriade di melafonini in giro per il mondo.</p>
<p>Dopo l&#8217;accaduto, subito nella rete si sono sparsi svariati rumors, la maggior parte dei quali si può riassumere in :</p>
<blockquote><p>Non eseguite il jailbreak dell&#8217;iPhone se non volete essere infettati!</p></blockquote>
<p>Dato che sta frase è evidentemente stupida e, in alcuni casi, aimè è stata pronunciata con secondi fini (della serie &#8220;ecco una scusa x far credere a tutti che jailbreakare non va bene&#8221;), tanto xkè non c&#8217;ho niente da fare scrivo un po nel dettaglio cosa faceva sto worm, come funzionava ma soprattutto <strong>PERCHE&#8217;</strong> funzionava.</p>
<p><span id="more-871"></span>Innanzitutto, c&#8217;è da fare un preambolo.</p>
<p>Nel momento in cui si jailbreaka il proprio iPhone, viene installato il demone ssh configurato con la password di root di default &#8220;<strong>alpine</strong>&#8221; (e qui i più svegli hanno già capito l&#8217;inghippo).</p>
<p>Naturalmente è scontato che tale password va <strong>contestualmente cambiata </strong>con una più sicura e meno conosciuta, ma a quanto pare tanto scontato non è dato che gli iPhone ownati erano proprio di persone che non hanno eseguito questo procedimento.</p>
<p>In pratica, il worm in questione, eseguiva una scansione sui seguenti indirizzi:</p>
<table style="text-align: left; width: 478px; margin-left: auto; margin-right: auto;" border="1" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td style="vertical-align: top;"><small>192.168.0.0-192.168.3.255</small></td>
<td style="vertical-align: top;"><small>Local network</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>94.157.100.0-94.157.255.255</small></td>
<td style="vertical-align: top;"><small>T-mobile, Netherlands</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>87.103.52.255-87.103.66.255</small></td>
<td style="vertical-align: top;"><small>Vodafone, Portugal</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>94.157.0.0.0-120.157.99.255</small></td>
<td style="vertical-align: top;"><small>T-mobile, Netherlands</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>114.72.0.0-114.75.255.255</small></td>
<td style="vertical-align: top;"><small>OPTUSINTERNET, Australia</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>92.248.90.0-92.248.120.255</small></td>
<td style="vertical-align: top;"><small>MOBILKOM, Austria</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>81.217.74.0-81.217.74.255</small></td>
<td style="vertical-align: top;"><small>Kabelsignal AG, Austria</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>84.224.60.0-84.224.80.255</small></td>
<td style="vertical-align: top;"><small>Pannon GSM Telecommunications Inc, Hungary</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>188.88.100.0-188.88.160.255</small></td>
<td style="vertical-align: top;"><small>T-Mobile, Netherlands</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>77.248.140.0-77.248.146.255</small></td>
<td style="vertical-align: top;"><small>UPC Broadband, Austria</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>77.54.160.0-77.54.190.255</small></td>
<td style="vertical-align: top;"><small>Vodafone, Portugal</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>80.57.116.0-80.57.131.255</small></td>
<td style="vertical-align: top;"><small>UPC Broadband Austria</small></td>
</tr>
<tr>
<td style="vertical-align: top;"><small>84.224.0.0-84.224.63.255</small></td>
<td style="vertical-align: top;"><small>Pannon GSM Telecommunications Inc, Hungary</small></td>
</tr>
</tbody>
</table>
<h5 style="text-align: center;"><em>(tabella prelevata da </em><a href="http://www.csl.sri.com/users/porras/iPhone-Bot/" target="_blank"><em>questo sito</em></a><em>)</em></h5>
<p>Come è facile intuire, sono gli intervalli di indirizzi ip che identificano i maggiori provider di connettività mobile.</p>
<p>Una volta identificato un host attivo tra quelli nell&#8217;intervallo, il worm sostanzialmente verificava se la porta 22 era aperta (quella del demone ssh) e provava a loggarsi con la password di default alpine.</p>
<p>Una volta dentro, copiava se stesso sul dispositivo e continuava la scansione sulla subnet locale del telefono infettato, e così via, ripdoducendosi esponenzialmente.</p>
<p><strong>That&#8217;s fucking all!</strong></p>
<p>Non è stata colpa del jailbreak, non è stata colpa di un mistico exploit 0day che sfruttava qualche strana falla nel sistema &#8230; è stata colpa solo ed esclusivamente, come nel 99% dei casi, della stupidità umana.</p>
<p>Cazzo ma non ti viene in mente di cambiarla la password ssh quando lo installi ?!?!? Bah -.-</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Invia aScript &amp; Style">Invia aScript &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;Title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Condividi suBlinklist">Condividi suBlinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Condividi sudel.icio.us">Condividi sudel.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Diggalo!">Diggalo!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;desc=Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite" rel="nofollow" class="external" title="Pubblicalo suDiigo">Pubblicalo suDiigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Condividi suReddit">Condividi suReddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;submitHeadline=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;submitSummary=Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Hai trovato qualcosa di buono? Condividilo su StumbleUpon">Hai trovato qualcosa di buono? Condividilo su StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html" rel="nofollow" class="external" title="Condividi suTechnorati">Condividi suTechnorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Condividi suMixx">Condividi suMixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;t=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Pubblicalo suMySpace">Pubblicalo suMySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Invia aDesignFloat">Invia aDesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;t=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Condividi suFacebook">Condividi suFacebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F+-+http://b2l.me/bx3dq+" rel="nofollow" class="external" title="Tweetalo!">Tweetalo!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Il%20Worm%20dell%27iPhone%20...%20il%20Jailbreak%20%C3%A8%20rischioso%3F%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html" rel="nofollow" class="external" title="Vuoi segnalarlo via mail ad un amico?">Vuoi segnalarlo via mail ad un amico?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Il%20Worm%20dell%27iPhone%20...%20il%20Jailbreak%20%C3%A8%20rischioso%3F%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html" rel="nofollow" class="external" title="Suggerisci questo articolo aToMuse">Suggerisci questo articolo aToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html/feed" rel="nofollow" class="external" title="Vuoi iscriverti ai commenti per questo post?">Vuoi iscriverti ai commenti per questo post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;summary=Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite&amp;source=evilsocket.net" rel="nofollow" class="external" title="Condividi suLinkedIn">Condividi suLinkedIn</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;h=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="SeeddaloNewsvine">SeeddaloNewsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite&amp;posturl=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;posttitle=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Condividi suDevmarks">Condividi suDevmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Aggiungilo aGoogle Bookmarks">Aggiungilo aGoogle Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;bm_description=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Aggiungilo aMister Wong">Aggiungilo aMister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html" rel="nofollow" class="external" title="Aggiungilo aIzeby">Aggiungilo aIzeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html" rel="nofollow" class="external" title="Condividi suTipd">Condividi suTipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Condividi suPFBuzz">Condividi suPFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;link=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html" rel="nofollow" class="external" title="Condividi suFriendFeed">Condividi suFriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Segnalo suBlogMarks">Segnalo suBlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;url=http%3A%2F%2Fwww.evilsocket.net%2F871%2Fil-worm-delliphone-il-jailbreak-e-rischioso.html&amp;desc=Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Invia aTwittley">Invia aTwittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html" rel="nofollow" class="external" title="Condividi suFwisp">Condividi suFwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;body=Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite" rel="nofollow" class="external" title="MooccaloDesignMoo!">MooccaloDesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Condividi suBobrDobr">Condividi suBobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;lname=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Aggiungilo aYandex.Bookmarks">Aggiungilo aYandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;u_data[name]=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Aggiungilo aMemory.ru">Aggiungilo aMemory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;bmtitle=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Aggiungilo a100 bookmarks">Aggiungilo a100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Aggiungilo aMyPlace">Aggiungilo aMyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;t=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Invia aHacker News">Invia aHacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html" rel="nofollow" class="external" title="Invia questa pagina aPrint Friendly">Invia questa pagina aPrint Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;body=Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite" rel="nofollow" class="external" title="Bumpalo suDesignBump">Bumpalo suDesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;T=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Aggiungilo aNing">Aggiungilo aNing</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&quot;+-+from+http://b2l.me/bx3dq" rel="nofollow" class="external" title="Pubblicalo suIdentica">Pubblicalo suIdentica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Salvalo suXerpi">Salvalo suXerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Condividi suWikio">Condividi suWikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html+&quot;Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&quot;" rel="nofollow" class="external" title="Suggeriscilo suTechMeme">Suggeriscilo suTechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;selection=Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite" rel="nofollow" class="external" title="Pubblicalo suPosterous">Pubblicalo suPosterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;type=Article&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Grinddalo suGlobal Grind">Grinddalo suGlobal Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;body=Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite" rel="nofollow" class="external" title="Notificalo suPing.fm">Notificalo suPing.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;u=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;b=Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite" rel="nofollow" class="external" title="Invia aNUjij">Invia aNUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;desc=Un%20po%20di%20tempo%20fa%20ha%20fatto%20scalpore%20il%20primo%20virus%20di%20tipo%20worm%20per%20iPhone%2C%20che%20nel%20giro%20di%20pochi%20giorni%20aveva%20ownato%20una%20miriade%20di%20melafonini%20in%20giro%20per%20il%20mondo.%0D%0A%0D%0ADopo%20l%27accaduto%2C%20subito%20nella%20rete%20si%20sono%20sparsi%20svariati%20rumors%2C%20la%20maggior%20parte%20dei%20quali%20si%20pu%C3%B2%20riassumere%20in%20%3A%0D%0ANon%20eseguite" rel="nofollow" class="external" title="Invia aeKudos">Invia aeKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;popup=no" rel="nofollow" class="external" title="Invia aNetvouz">Invia aNetvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F&amp;url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html" rel="nofollow" class="external" title="Invia aNetvibes">Invia aNetvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Condividi suFleck">Condividi suFleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html&amp;title=Il+Worm+dell%27iPhone+...+il+Jailbreak+%C3%A8+rischioso%3F" rel="nofollow" class="external" title="Condividi suBlogosphere News">Condividi suBlogosphere News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.evilsocket.net/?ak_action=api_record_view&id=871&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.evilsocket.net/901/resettare-le-password-ed-i-privilegi-di-mysql.html' rel='bookmark' title='Permanent Link: Resettare le password ed i privilegi di MySQL'>Resettare le password ed i privilegi di MySQL</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.evilsocket.net/871/il-worm-delliphone-il-jailbreak-e-rischioso.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>C Stack Inspection</title>
		<link>http://www.evilsocket.net/867/c-stack-inspection.html</link>
		<comments>http://www.evilsocket.net/867/c-stack-inspection.html#comments</comments>
		<pubDate>Mon, 21 Dec 2009 16:13:49 +0000</pubDate>
		<dc:creator>evilsocket</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[Sorgenti]]></category>
		<category><![CDATA[allocation]]></category>
		<category><![CDATA[boundaries]]></category>
		<category><![CDATA[boundary]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[pointer]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[stack]]></category>
		<category><![CDATA[variable]]></category>

		<guid isPermaLink="false">http://www.evilsocket.net/?p=867</guid>
		<description><![CDATA[Un po di tempo fa mi son posto un quesito :
Avendo un puntatore ad una variabile allocata sullo stack (non l&#8217;heap, quindi memoria statica), è possibile determinare quanti byte ci posso scrivere al massimo prima di andare in overflow ?
Naturalmente, nel caso di una stringa con la corretta terminazione nulla, basterebbe una semplice chiamata a [...]


Related posts:<ol><li><a href='http://www.evilsocket.net/76/stackhack.html' rel='bookmark' title='Permanent Link: StackHack'>StackHack</a></li>
<li><a href='http://www.evilsocket.net/764/wp-sentinel-pubblicato.html' rel='bookmark' title='Permanent Link: WP-Sentinel Pubblicato'>WP-Sentinel Pubblicato</a></li>
<li><a href='http://www.evilsocket.net/68/php-hacking-prevention.html' rel='bookmark' title='Permanent Link: PHP Hacking &#038; Prevention'>PHP Hacking &#038; Prevention</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Un po di tempo fa mi son posto un quesito :</p>
<blockquote><p>Avendo un puntatore ad una variabile allocata sullo stack (non l&#8217;heap, quindi memoria statica), è possibile determinare quanti byte ci posso scrivere al massimo prima di andare in overflow ?</p></blockquote>
<p>Naturalmente, nel caso di una stringa con la corretta terminazione nulla, basterebbe una semplice chiamata a strlen ed il gioco è fatto &#8230; ma avendo un puntatore &#8220;generico&#8221;, del quale non si sa niente, ne il tipo di dati ai quali punta, ne se è terminato, o altro ?</p>
<p>Voi potreste dire &#8220;e a che scopo fare una cosa del genere ?&#8221;</p>
<p>Beh, immaginate di dover scrivere una libreria .so o .a e, in una delle varie funzioni che volete esportare, di ricevere come parametro un puntatore del quale non conoscete la natura e nel quale dovete scrivere delle informazioni &#8230; non sarebbe utile (più che altro doveroso XD) accertarsi quanto potete scrivere prima di fottere tutto ?! <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Inizialmente pensai ad una soluzione drastica, un piccolo modulo kernel che si interfacciava al gestore della memoria per darci le info necessarie sul puntatore in questione, ma oltre che ad estremamente complicata come soluzione, ho scoperto che era anche inutile!</p>
<p>Ebbene si, dopo tante ricerche e ore di studio, ho scoperto finalmente il modo <img src='http://www.evilsocket.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span id="more-867"></span></p>
<p>Il &#8220;trucco&#8221; sostanzialmente consiste nel prelevare il puntatore al primo frame dello stack tramite il registro <strong>ebp </strong>e successivamente looparmi un frame alla volta per identificare la precisa localizzazione del nostro puntatore nei vari frame.</p>
<p>Fatto questo, sapendo l&#8217;alignment di ogni frame e avendo la sua posizione cardinale, si calcola in modo estremamente facile quanto è vasta la zona di memoria puntata dal nostro amico puntatore ^^.</p>
<p>Qui di seguito posto il codice di esempio, commentato il più possibile per rendere chiaro il procedimento il più possibile. Tuttavia tengo a sottolineare che per una completa comprensione del codice, è necessario conoscere la struttura dello stack e le dinamiche che ne regolano il funzionamento &#8230; enjoy ^^</p>
<div class="codecolorer-container c default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;height:100%;"><div class="c codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #808080; font-style: italic;">/*<br />
&nbsp;*<br />
&nbsp;* &nbsp; &nbsp; &nbsp;Copyleft 2009 evilsocket<br />
&nbsp;*<br />
&nbsp;* &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;http://www.evilsocket.net<br />
&nbsp;*<br />
&nbsp;* &nbsp; &nbsp; &nbsp;This program is free software; you can redistribute it and/or modify<br />
&nbsp;* &nbsp; &nbsp; &nbsp;it under the terms of the GNU General Public License as published by<br />
&nbsp;* &nbsp; &nbsp; &nbsp;the Free Software Foundation; either version 2 of the License, or<br />
&nbsp;* &nbsp; &nbsp; &nbsp;(at your option) any later version.<br />
&nbsp;*<br />
&nbsp;* &nbsp; &nbsp; &nbsp;This program is distributed in the hope that it will be useful,<br />
&nbsp;* &nbsp; &nbsp; &nbsp;but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
&nbsp;* &nbsp; &nbsp; &nbsp;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. &nbsp;See the<br />
&nbsp;* &nbsp; &nbsp; &nbsp;GNU General Public License for more details.<br />
&nbsp;*<br />
&nbsp;* &nbsp; &nbsp; &nbsp;You should have received a copy of the GNU General Public License<br />
&nbsp;* &nbsp; &nbsp; &nbsp;along with this program; if not, write to the Free Software<br />
&nbsp;* &nbsp; &nbsp; &nbsp;Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,<br />
&nbsp;* &nbsp; &nbsp; &nbsp;MA 02110-1301, USA.<br />
*/</span><br />
<br />
<span style="color: #339933;">#include &lt;stdio.h&gt;</span><br />
<br />
<span style="color: #993333;">unsigned</span> <span style="color: #993333;">long</span> get_stack_boundary<span style="color: #009900;">&#40;</span> <span style="color: #993333;">void</span> <span style="color: #339933;">*</span>address <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #993333;">void</span> <span style="color: #339933;">*</span> &nbsp; &nbsp; &nbsp; &nbsp;stackpointer<span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #993333;">unsigned</span> <span style="color: #993333;">long</span> framepointer<span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i<span style="color: #339933;">,</span> framesize<span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; framedelta<span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #808080; font-style: italic;">/* usando il puntatore instanziato localmente, controllo che effettivamente 'address' sia una variabile nello stack */</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span> <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&amp;</span>stackpointer <span style="color: #339933;">&gt;</span> address <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span> &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span> &nbsp; &nbsp;<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #808080; font-style: italic;">/* prelevo l'indirizzo del primo frame pointer */</span><br />
&nbsp; &nbsp; <span style="color: #339933;">#ifdef __x86_64__</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; __asm__ <span style="color: #993333;">volatile</span> <span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;mov %%rbp, %0&quot;</span> <span style="color: #339933;">:</span> <span style="color: #ff0000;">&quot;=r&quot;</span> <span style="color: #009900;">&#40;</span>framepointer<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">#else</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; __asm__ <span style="color: #993333;">volatile</span> <span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;mov %%ebp, %0&quot;</span> <span style="color: #339933;">:</span> <span style="color: #ff0000;">&quot;=r&quot;</span> <span style="color: #009900;">&#40;</span>framepointer<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">#endif</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #808080; font-style: italic;">/* loopo ogni frame dello stack fino a trovare quello che contiene il puntatore che ci interessa */</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span> stackpointer <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span> <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>framepointer<span style="color: #339933;">,</span> i <span style="color: #339933;">=</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span> stackpointer<span style="color: #339933;">;</span> stackpointer <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span> <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">*</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">unsigned</span> <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>stackpointer<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> i<span style="color: #339933;">++</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// trovato ?</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> stackpointer <span style="color: #339933;">&gt;</span> address <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">/* determino se il puntatore si trova nella parte alta o bassa del frame */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; framedelta <span style="color: #339933;">=</span> stackpointer <span style="color: #339933;">-</span> address<span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; framesize &nbsp;<span style="color: #339933;">=</span> 8 <span style="color: #339933;">*</span> i<span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #009900;">&#40;</span>framedelta <span style="color: #339933;">&gt;=</span> framesize <span style="color: #339933;">?</span> framedelta <span style="color: #339933;">-</span> framesize <span style="color: #339933;">:</span> framedelta<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">/* il puntatore deve essere word aligned */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">unsigned</span> <span style="color: #993333;">long</span><span style="color: #009900;">&#41;</span>stackpointer <span style="color: #339933;">&amp;</span> 0x03 <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span> &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<br />
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #993333;">char</span> buffer<span style="color: #009900;">&#91;</span>123<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span>0<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// in questo esempio, il risultato sarà maggiore di 123, poichè ci sono una serie di byte aggiuntivi </span><br />
&nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// oltre a quelli allocati proprio per evitare sovrascritture dei frame successivi</span><br />
&nbsp; &nbsp; <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span> <span style="color: #ff0000;">&quot;buffer size : %d<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> get_stack_boundary<span style="color: #009900;">&#40;</span>buffer<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div></div>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Invia aScript &amp; Style">Invia aScript &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;Title=C+Stack+Inspection" rel="nofollow" class="external" title="Condividi suBlinklist">Condividi suBlinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Condividi sudel.icio.us">Condividi sudel.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Diggalo!">Diggalo!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection&amp;desc=Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz" rel="nofollow" class="external" title="Pubblicalo suDiigo">Pubblicalo suDiigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Condividi suReddit">Condividi suReddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.evilsocket.net/867/c-stack-inspection.html&amp;submitHeadline=C+Stack+Inspection&amp;submitSummary=Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Hai trovato qualcosa di buono? Condividilo su StumbleUpon">Hai trovato qualcosa di buono? Condividilo su StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.evilsocket.net/867/c-stack-inspection.html" rel="nofollow" class="external" title="Condividi suTechnorati">Condividi suTechnorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Condividi suMixx">Condividi suMixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.evilsocket.net/867/c-stack-inspection.html&amp;t=C+Stack+Inspection" rel="nofollow" class="external" title="Pubblicalo suMySpace">Pubblicalo suMySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Invia aDesignFloat">Invia aDesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.evilsocket.net/867/c-stack-inspection.html&amp;t=C+Stack+Inspection" rel="nofollow" class="external" title="Condividi suFacebook">Condividi suFacebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=C+Stack+Inspection+-+http://b2l.me/bxy5w+" rel="nofollow" class="external" title="Tweetalo!">Tweetalo!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22C%20Stack%20Inspection%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/867/c-stack-inspection.html" rel="nofollow" class="external" title="Vuoi segnalarlo via mail ad un amico?">Vuoi segnalarlo via mail ad un amico?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22C%20Stack%20Inspection%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.evilsocket.net/867/c-stack-inspection.html" rel="nofollow" class="external" title="Suggerisci questo articolo aToMuse">Suggerisci questo articolo aToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.evilsocket.net/867/c-stack-inspection.html/feed" rel="nofollow" class="external" title="Vuoi iscriverti ai commenti per questo post?">Vuoi iscriverti ai commenti per questo post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection&amp;summary=Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz&amp;source=evilsocket.net" rel="nofollow" class="external" title="Condividi suLinkedIn">Condividi suLinkedIn</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.evilsocket.net/867/c-stack-inspection.html&amp;h=C+Stack+Inspection" rel="nofollow" class="external" title="SeeddaloNewsvine">SeeddaloNewsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz&amp;posturl=http://www.evilsocket.net/867/c-stack-inspection.html&amp;posttitle=C+Stack+Inspection" rel="nofollow" class="external" title="Condividi suDevmarks">Condividi suDevmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Aggiungilo aGoogle Bookmarks">Aggiungilo aGoogle Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;bm_description=C+Stack+Inspection&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Aggiungilo aMister Wong">Aggiungilo aMister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.evilsocket.net/867/c-stack-inspection.html" rel="nofollow" class="external" title="Aggiungilo aIzeby">Aggiungilo aIzeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.evilsocket.net/867/c-stack-inspection.html" rel="nofollow" class="external" title="Condividi suTipd">Condividi suTipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Condividi suPFBuzz">Condividi suPFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=C+Stack+Inspection&amp;link=http://www.evilsocket.net/867/c-stack-inspection.html" rel="nofollow" class="external" title="Condividi suFriendFeed">Condividi suFriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Segnalo suBlogMarks">Segnalo suBlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=C+Stack+Inspection&amp;url=http%3A%2F%2Fwww.evilsocket.net%2F867%2Fc-stack-inspection.html&amp;desc=Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Invia aTwittley">Invia aTwittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.evilsocket.net/867/c-stack-inspection.html" rel="nofollow" class="external" title="Condividi suFwisp">Condividi suFwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection&amp;body=Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz" rel="nofollow" class="external" title="MooccaloDesignMoo!">MooccaloDesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Condividi suBobrDobr">Condividi suBobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.evilsocket.net/867/c-stack-inspection.html&amp;lname=C+Stack+Inspection" rel="nofollow" class="external" title="Aggiungilo aYandex.Bookmarks">Aggiungilo aYandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.evilsocket.net/867/c-stack-inspection.html&amp;u_data[name]=C+Stack+Inspection" rel="nofollow" class="external" title="Aggiungilo aMemory.ru">Aggiungilo aMemory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.evilsocket.net/867/c-stack-inspection.html&amp;bmtitle=C+Stack+Inspection" rel="nofollow" class="external" title="Aggiungilo a100 bookmarks">Aggiungilo a100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Aggiungilo aMyPlace">Aggiungilo aMyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.evilsocket.net/867/c-stack-inspection.html&amp;t=C+Stack+Inspection" rel="nofollow" class="external" title="Invia aHacker News">Invia aHacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.evilsocket.net/867/c-stack-inspection.html" rel="nofollow" class="external" title="Invia questa pagina aPrint Friendly">Invia questa pagina aPrint Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection&amp;body=Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz" rel="nofollow" class="external" title="Bumpalo suDesignBump">Bumpalo suDesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;T=C+Stack+Inspection" rel="nofollow" class="external" title="Aggiungilo aNing">Aggiungilo aNing</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;C+Stack+Inspection&quot;+-+from+http://b2l.me/bxy5w" rel="nofollow" class="external" title="Pubblicalo suIdentica">Pubblicalo suIdentica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Salvalo suXerpi">Salvalo suXerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Condividi suWikio">Condividi suWikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.evilsocket.net/867/c-stack-inspection.html+&quot;C+Stack+Inspection&quot;" rel="nofollow" class="external" title="Suggeriscilo suTechMeme">Suggeriscilo suTechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.evilsocket.net/867/c-stack-inspection.html" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection&amp;selection=Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz" rel="nofollow" class="external" title="Pubblicalo suPosterous">Pubblicalo suPosterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;type=Article&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Grinddalo suGlobal Grind">Grinddalo suGlobal Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection&amp;body=Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz" rel="nofollow" class="external" title="Notificalo suPing.fm">Notificalo suPing.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=C+Stack+Inspection&amp;u=http://www.evilsocket.net/867/c-stack-inspection.html&amp;b=Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz" rel="nofollow" class="external" title="Invia aNUjij">Invia aNUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection&amp;desc=Un%20po%20di%20tempo%20fa%20mi%20son%20posto%20un%20quesito%20%3A%0D%0AAvendo%20un%20puntatore%20ad%20una%20variabile%20allocata%20sullo%20stack%20%28non%20l%27heap%2C%20quindi%20memoria%20statica%29%2C%20%C3%A8%20possibile%20determinare%20quanti%20byte%20ci%20posso%20scrivere%20al%20massimo%20prima%20di%20andare%20in%20overflow%20%3F%0D%0ANaturalmente%2C%20nel%20caso%20di%20una%20stringa%20con%20la%20corretta%20terminaz" rel="nofollow" class="external" title="Invia aeKudos">Invia aeKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection&amp;popup=no" rel="nofollow" class="external" title="Invia aNetvouz">Invia aNetvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=C+Stack+Inspection&amp;url=http://www.evilsocket.net/867/c-stack-inspection.html" rel="nofollow" class="external" title="Invia aNetvibes">Invia aNetvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Condividi suFleck">Condividi suFleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.evilsocket.net/867/c-stack-inspection.html&amp;title=C+Stack+Inspection" rel="nofollow" class="external" title="Condividi suBlogosphere News">Condividi suBlogosphere News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.evilsocket.net/?ak_action=api_record_view&id=867&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.evilsocket.net/76/stackhack.html' rel='bookmark' title='Permanent Link: StackHack'>StackHack</a></li>
<li><a href='http://www.evilsocket.net/764/wp-sentinel-pubblicato.html' rel='bookmark' title='Permanent Link: WP-Sentinel Pubblicato'>WP-Sentinel Pubblicato</a></li>
<li><a href='http://www.evilsocket.net/68/php-hacking-prevention.html' rel='bookmark' title='Permanent Link: PHP Hacking &#038; Prevention'>PHP Hacking &#038; Prevention</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.evilsocket.net/867/c-stack-inspection.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
