<?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>Fabio Falcinelli &#187; OSX</title>
	<atom:link href="http://www.fabiofalcinelli.it/tag/osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fabiofalcinelli.it</link>
	<description>Interessi e appunti</description>
	<lastBuildDate>Tue, 27 Sep 2011 15:52:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>mod_wsgi on OSX</title>
		<link>http://www.fabiofalcinelli.it/2011/09/mod_wsgi-on-osx/</link>
		<comments>http://www.fabiofalcinelli.it/2011/09/mod_wsgi-on-osx/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 07:58:23 +0000</pubDate>
		<dc:creator>Fabio</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Django]]></category>
		<category><![CDATA[mod_wsgi]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[WSGI]]></category>

		<guid isPermaLink="false">http://www.fabiofalcinelli.it/?p=418</guid>
		<description><![CDATA[It&#8217;s been quite a while since my last words on these pages. And yes, I&#8217;m writing in english, my bad english for a number of reasons&#8230; But this is out of scope, so let&#8217;s put away the dust and start to write something (hopefully) useful :) These days I&#8217;m experiencing Python and the web full-stack [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been quite a while since my last words on these pages. And yes, I&#8217;m writing in english, my bad english for a number of reasons&#8230; But this is out of scope, so let&#8217;s put away the dust and start to write something (hopefully) useful :)</p>
<p>These days I&#8217;m experiencing Python and the web full-stack framework Django. They both are impressive, really: starting the development of a webapp is almost straightforward, if you have the time to read the really good documentation available at <a title="Django documentation" href="https://docs.djangoproject.com" target="_blank">https://docs.djangoproject.com</a>.</p>
<p>After a bit of exercise, I developed a tutorial application, and I wanted to deploy it with the Apache Web Server since django offers a built-in web server during the development phase (and it&#8217;s written in python). Since I&#8217;m using a mac, I got some troubles to get mod_wsgi working. So far nothing too much annoying, but I wasted a bit of time so I hope these words can save someone else&#8217;s time :-)</p>
<p>I was not happy to use the Apache httpd which come built-in in OSX, so I downloaded the latest release from the Apache site (<a title="Apache Download Area" href="http://www.apache.org/dyn/closer.cgi" target="_blank">http://www.apache.org/dyn/closer.cgi </a>) and built it from scratch. Ensure you have the development tools installed in your OS, if not you can download them from the Mac App Store getting Xcode 4 for free&#8230;</p>
<p>So after a successful compile of sources</p>
<div class="codecolorer-container bash twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">anubis:httpd-2.2.21 fabio$ .<span style="color: #000000; font-weight: bold;">/</span>configure \<br />
<span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">make</span> \<br />
<span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></div></div>
<p>I found my apache 2 server ready under the directory /usr/local/apache2.</p>
<p>The next thing, is to install mod_wsgi . If you don&#8217;t want to use the built-in osx httpd, you have to download the sources (<a title="mod_wsgi download page" href="http://code.google.com/p/modwsgi/wiki/DownloadTheSoftware" target="_blank">http://code.google.com/p/modwsgi/wiki/DownloadTheSoftware</a>), and build them from scratch. This time, take care of where is the apache installation (did just some moments before) and where is your python!</p>
<p>Since I&#8217;m using virtualenv, I was almost sure to activate the environment settings and build mod_wsgi from the shell was sufficient&#8230; So far this is not the case, I needed to provide the installation path to the configure script, otherwise it will continue to use the python built-in with OSX:</p>
<div class="codecolorer-container bash twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">anubis:mod_wsgi-<span style="color: #000000;">3.3</span> fabio$ .<span style="color: #000000; font-weight: bold;">/</span>configure \<br />
<span style="color: #660033;">--with-apxs</span>=<span style="color: #ff0000;">&quot;/usr/local/apache2/bin/apxs&quot;</span> \<br />
<span style="color: #660033;">--with-python</span>=<span style="color: #ff0000;">&quot;/Users/fabio/Sviluppo/python-2.7/bin/python&quot;</span> \<br />
<span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">make</span> \<br />
<span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></div></div>
<p>where /Users/fabio/Sviluppo/python-2.7/bin/python is the directory where I installed python 2.7 and django via <a title="Virtualenv" href="http://www.virtualenv.org/en/latest/index.html" target="_blank">virtualenv</a> and <a title="PIP installer" href="http://www.pip-installer.org/en/latest/index.html" target="_blank">pip</a>.</p>
<p>It&#8217;s now time to configure Apache. Of course using vi :)</p>
<div class="codecolorer-container bash twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">anubis:conf fabio$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">vi</span> httpd.conf</div></div>
<p>and inside I added the following lines</p>
<div class="codecolorer-container bash twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Alias <span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span>fabio<span style="color: #000000; font-weight: bold;">/</span>Sviluppo<span style="color: #000000; font-weight: bold;">/</span>booklibrary<span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">/</span><br />
<br />
<span style="color: #000000; font-weight: bold;">&lt;</span>directory <span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span>fabio<span style="color: #000000; font-weight: bold;">/</span>Sviluppo<span style="color: #000000; font-weight: bold;">/</span>booklibrary<span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">&gt;</span><br />
Order deny,allow<br />
Allow from all<br />
<span style="color: #000000; font-weight: bold;">&lt;/</span>directory<span style="color: #000000; font-weight: bold;">&gt;</span><br />
<br />
<span style="color: #666666; font-style: italic;">#MOD_WSGI</span><br />
LoadModule wsgi_module modules<span style="color: #000000; font-weight: bold;">/</span>mod_wsgi.so<br />
<br />
WSGIDaemonProcess books <span style="color: #007800;">user</span>=fabio <span style="color: #007800;">group</span>=staff python-path=<span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span>fabio<span style="color: #000000; font-weight: bold;">/</span>Sviluppo<span style="color: #000000; font-weight: bold;">/</span>python-<span style="color: #000000;">2.7</span><span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>python2.7<span style="color: #000000; font-weight: bold;">/</span>site-packages <span style="color: #007800;">processes</span>=<span style="color: #000000;">2</span> <span style="color: #007800;">threads</span>=<span style="color: #000000;">25</span><br />
<br />
WSGIProcessGroup books<br />
<br />
WSGIScriptAlias <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span>fabio<span style="color: #000000; font-weight: bold;">/</span>Sviluppo<span style="color: #000000; font-weight: bold;">/</span>booklibrary<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">/</span>booklibrary.wsgi<br />
<span style="color: #666666; font-style: italic;">#WSGIScriptAlias /books /Users/fabio/Sviluppo/booklibrary/apache/test.wsgi</span><br />
<br />
<span style="color: #000000; font-weight: bold;">&lt;</span>directory <span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span>fabio<span style="color: #000000; font-weight: bold;">/</span>Sviluppo<span style="color: #000000; font-weight: bold;">/</span>booklibrary<span style="color: #000000; font-weight: bold;">/</span>apache<span style="color: #000000; font-weight: bold;">&gt;</span><br />
Order deny,allow<br />
Allow from all<br />
<span style="color: #000000; font-weight: bold;">&lt;/</span>directory<span style="color: #000000; font-weight: bold;">&gt;</span></div></div>
<p>Since the django app is in my home directory, we must ensure apache is able to run the code. This is accomplished with the lines</p>
<ul>
<li>WSGIDaemonProcess books user=fabio group=staff &#8230;</li>
<li>WSGIProcessGroup books</li>
</ul>
<div>The others are simply mappings and aliases which are almost straightforward.</div>
<div>Last but not least, the file .wsgi. I wrote 2 versions, one was a mere test of a correct installation of mod_wsgi in apache (test.wsgi):</p>
<div class="codecolorer-container python twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="python codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">sys</span><br />
<br />
<span style="color: #ff7700;font-weight:bold;">def</span> application<span style="color: black;">&#40;</span>environ<span style="color: #66cc66;">,</span> start_response<span style="color: black;">&#41;</span>: <br />
&nbsp; &nbsp; status <span style="color: #66cc66;">=</span> <span style="color: #483d8b;">'200 OK'</span><br />
&nbsp; &nbsp; output <span style="color: #66cc66;">=</span> <span style="color: #483d8b;">'It Works! -- Python executable at '</span>+ <span style="color: #dc143c;">sys</span>.<span style="color: black;">executable</span><br />
&nbsp; &nbsp; response_headers <span style="color: #66cc66;">=</span> <span style="color: black;">&#91;</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'Content-Type'</span><span style="color: #66cc66;">,</span> <span style="color: #483d8b;">'text/plain'</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: black;">&#40;</span><span style="color: #483d8b;">'Content-Length'</span><span style="color: #66cc66;">,</span> &nbsp; <span style="color: #008000;">str</span><span style="color: black;">&#40;</span><span style="color: #008000;">len</span><span style="color: black;">&#40;</span>output<span style="color: black;">&#41;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span><span style="color: black;">&#93;</span> <br />
&nbsp; &nbsp; start_response<span style="color: black;">&#40;</span>status<span style="color: #66cc66;">,</span> response_headers<span style="color: black;">&#41;</span> <br />
&nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">return</span> <span style="color: black;">&#91;</span>output<span style="color: black;">&#93;</span></div></div>
<p>the other is the one which make the django app start:</p>
<div class="codecolorer-container python twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="python codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">os</span><br />
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">sys</span><br />
<br />
<span style="color: #808080; font-style: italic;">#sys.path.append('/usr/lib/python2.4/site-packages/django')</span><br />
<span style="color: #808080; font-style: italic;">#/Users/fabio/Sviluppo/python-2.7/bin/</span><br />
paths <span style="color: #66cc66;">=</span> <span style="color: black;">&#91;</span><span style="color: #483d8b;">'/Users/fabio/Sviluppo'</span><span style="color: #66cc66;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #483d8b;">'/Users/fabio/Sviluppo/booklibrary'</span><span style="color: black;">&#93;</span><br />
<span style="color: #ff7700;font-weight:bold;">for</span> path <span style="color: #ff7700;font-weight:bold;">in</span> paths:<br />
&nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">if</span> path <span style="color: #ff7700;font-weight:bold;">not</span> <span style="color: #ff7700;font-weight:bold;">in</span> <span style="color: #dc143c;">sys</span>.<span style="color: black;">path</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #dc143c;">sys</span>.<span style="color: black;">path</span>.<span style="color: black;">append</span><span style="color: black;">&#40;</span>path<span style="color: black;">&#41;</span><br />
<br />
<span style="color: #dc143c;">os</span>.<span style="color: black;">environ</span><span style="color: black;">&#91;</span><span style="color: #483d8b;">'DJANGO_SETTINGS_MODULE'</span><span style="color: black;">&#93;</span> <span style="color: #66cc66;">=</span> <span style="color: #483d8b;">'booklibrary.settings'</span><br />
<br />
<span style="color: #ff7700;font-weight:bold;">import</span> django.<span style="color: black;">core</span>.<span style="color: black;">handlers</span>.<span style="color: black;">wsgi</span><br />
application <span style="color: #66cc66;">=</span> django.<span style="color: black;">core</span>.<span style="color: black;">handlers</span>.<span style="color: black;">wsgi</span>.<span style="color: black;">WSGIHandler</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></div></div>
<p>And that&#8217;s all ;)</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.fabiofalcinelli.it/2011/09/mod_wsgi-on-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iSync con Samsung SGH-E250</title>
		<link>http://www.fabiofalcinelli.it/2009/07/isync-con-samsung-sgh-e250/</link>
		<comments>http://www.fabiofalcinelli.it/2009/07/isync-con-samsung-sgh-e250/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 19:59:25 +0000</pubDate>
		<dc:creator>Fabio</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iSync]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Rosa]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[SGH-E250]]></category>

		<guid isPermaLink="false">http://www.fabiofalcinelli.it/?p=323</guid>
		<description><![CDATA[La cosa bella di un Mac è che presenta una rosa di software pronta all&#8217;uso. La cosa brutta è che non essendo software OpenSource spesso non è possibile personalizzare al meglio le funzionalità che più ci occorrono. iSync è un&#8217;applicazione veramente ben fatta, mi ha dato subito soddisfazione con il mio vecchio Nokia 6600 per [...]]]></description>
			<content:encoded><![CDATA[<p>La cosa bella di un Mac è che presenta una <strong>rosa</strong> di software pronta all&#8217;uso. La cosa brutta è che non essendo software OpenSource spesso non è possibile personalizzare al meglio le funzionalità che più ci occorrono.</p>
<p>iSync è un&#8217;applicazione veramente ben fatta, mi ha dato subito soddisfazione con il mio vecchio Nokia 6600 per il quale, installando un agent sul cellulare stesso, tutto è andato alla grande. Con il Samsung SGH-E250, invece, il risultato era sempre lo stesso: dispositivo non supportato.</p>
<p>Con un po&#8217; di ricerche con Google, però, ho visto che telefoni come il Samsung D900, che è molto simile nell&#8217;aspetto e nelle specifiche al mio, funzionano alacremente.</p>
<p>Sono andato dunque dentro la cartella di iSync ( <em>/Applications/iSync.app/</em> ) a cercare qualcosa ed ho trovato appunto i driver del D900 dentro la cartella</p>
<p>/Applications/iSync.app/Contents/PlugIns/ApplePhoneConduit.syncdevice/Contents/PlugIns/Samsung-D900.phoneplugin</p>
<p>e mi son detto che magari come per le stampanti il mio telefono potrebbe funzionare con un driver di un altro molto simile a lui&#8230; E di fatti ha funzionato!</p>
<p>In sostanza mi sono limitato a copiare la cartella in</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">/Applications/iSync.app/Contents/PlugIns/ApplePhoneConduit.syncdevice/Contents/PlugIns/Samsung-E250.phoneplugin</div></div>
<p>All&#8217;interno della cartella ho sostituito tutte le occorrenze di &#8220;D900&#8243; con &#8220;E250&#8243; nei seguenti file</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">/Applications/iSync.app/Contents/PlugIns/ApplePhoneConduit.syncdevice/Contents/PlugIns/Samsung-E250.phoneplugin/Contents/Info.plist<br />
/Applications/iSync.app/Contents/PlugIns/ApplePhoneConduit.syncdevice/Contents/PlugIns/Samsung-E250.phoneplugin/Contents/Resources/MetaClasses.plist</div></div>
<p>ed infine ho rinominato il file (situato nella cartella /Applications/iSync.app/Contents/PlugIns/ApplePhoneConduit.syncdevice/Contents/PlugIns/Samsung-E250.phoneplugin/Contents/Resources/) <strong>com.samsung.D900.tiff</strong> in <strong>com.samsung.E250.tiff</strong>.</p>
<p>Certo, l&#8217;icona non è proprio la stessa però ci si avvicina molto ed è sempre meglio di niente :)</p>
<p>Avviando iSync la sincronizzazione è andata a buon fine, numeri di cellulare, indirizzi e-mail e compleanni sono stati caricati correttamente, solo le immagini personali non sono state caricate, ma direi che è accettabile anche questo :)</p>
<p>Il driver, ottenuto come sopra, per il Samsung SGH-E250 lo potete scaricare dal mio sito a <a title="Samsung E250 phone plugin" href="http://www.fabiofalcinelli.it/files/Samsung-E250.phoneplugin.tar.gz" target="_blank">questo link</a>, ricordate però che non è ufficiale e che l&#8217;utilizzo è a vostro rischio e pericolo ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fabiofalcinelli.it/2009/07/isync-con-samsung-sgh-e250/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Dopo iWork &#8217;09 anche Photoshop CS4&#8230;</title>
		<link>http://www.fabiofalcinelli.it/2009/01/dopo-iwork-09-anche-photoshop-cs4/</link>
		<comments>http://www.fabiofalcinelli.it/2009/01/dopo-iwork-09-anche-photoshop-cs4/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 12:21:37 +0000</pubDate>
		<dc:creator>Fabio</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Trojan]]></category>

		<guid isPermaLink="false">http://fabiofalcinelli.netsons.org/?p=80</guid>
		<description><![CDATA[Bisognava aspettarselo e molto probabilmente ci saranno anche altri prodotti compromessi. Il trojan è il OSX.Trojan.iServices.B e come spiega anche MacWorld: &#8220;The crack application installs a backdoor in the /var/tmp directory, copies an executable to /usr/bin/DivX and saves the root hash password in the file /var/root/.DivX, according to Intego. It then listens on a random [...]]]></description>
			<content:encoded><![CDATA[<p>Bisognava aspettarselo e molto probabilmente ci saranno anche altri prodotti compromessi. Il trojan è il OSX.Trojan.iServices.B e come spiega anche <a title="Trojan Photoshop CS4" href="http://www.macworld.com/article/138432/2009/01/piratedphotoshop.html" target="_blank">MacWorld</a>:</p>
<blockquote><p><em>&#8220;The crack application installs a backdoor in the /var/tmp directory, copies an executable to /usr/bin/DivX and saves the root hash password in the file /var/root/.DivX, according to Intego. It then listens on a random TCP port and attemps to make repeated connections to two IP addresses. Intego concludes that the creator of the malware intends to be alerted through this method and may have the ability to connect to affected Macs and perform various actions remotely&#8221;</em></p></blockquote>
<p>Non troppo tempo fa era apparsa, sul sito del supporto Apple, una pagina che consigliava l&#8217;utilizzo di software di protezione. La pagina risale al 2007, ma fu aggiornata anche nello scorso novembre. Lo scalpore generato, che definirei anche smisurato, fece sì che la pagina fosse rimossa&#8230; Forse era meglio tenerla, visto che i virus non sono l&#8217;unica minaccia circolante&#8230;</p>
<p>Chi non si ricordasse della vicenda può informarsi su <a title="Disinformatico - Apple consiglia antivirus" href="http://attivissimo.blogspot.com/2008/12/antibufala-apple-consiglia-antivirus.html" target="_blank">questo link </a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fabiofalcinelli.it/2009/01/dopo-iwork-09-anche-photoshop-cs4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trojan in iWork &#8217;09</title>
		<link>http://www.fabiofalcinelli.it/2009/01/trojan-in-iwork-09/</link>
		<comments>http://www.fabiofalcinelli.it/2009/01/trojan-in-iwork-09/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 09:31:52 +0000</pubDate>
		<dc:creator>Fabio</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iWork]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Trojan]]></category>

		<guid isPermaLink="false">http://fabiofalcinelli.netsons.org/?p=57</guid>
		<description><![CDATA[Ebbene, come spiego spesso a molti miei amici, il solo sistema operativo non garantisce la sicurezza, è soprattutto la consapevolezza di chi lo usa e gli accorgimenti che adotta che rendono il sistema una &#8220;roccaforte&#8221;. Secondo Engadget esiste una versione di iWork &#8217;09 pirata, scaricata da diverse migliaia di utenti, che conterrebbe al suo interno [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Ebbene, come spiego spesso a molti miei amici, il solo sistema operativo non garantisce la sicurezza, è soprattutto la consapevolezza di chi lo usa e gli accorgimenti che adotta che rendono il sistema una &#8220;roccaforte&#8221;.</p>
<p style="text-align: justify;">Secondo <a title="Trojan iWork '09" href="http://www.engadget.com/2009/01/22/iwork-09-trojan-infects-at-least-20-000-machines/" target="_blank">Engadget</a> esiste una versione di iWork &#8217;09 <strong>pirata</strong>, scaricata da diverse migliaia di utenti, che conterrebbe al suo interno un Trojan (OSX.Trojan.iServices) che guadagnerebbe accesso con permessi di root alla macchina OSX su cui è installato. Ciò permette l&#8217;accesso remoto alla macchina con la possibilità di installare componenti e manipolare le applicazioni già esistenti.</p>
<p style="text-align: justify;">Da <a title="Trojan iWork '09" href="http://www.macworld.com/article/138380/iworktrojan.html" target="_blank">MacWorld</a> (fonte dalla quale la notizia di <a title="Engadget blog" href="http://www.engadget.com" target="_blank">engadget</a> blog è tratta) ecco come controllare se si è infetti o meno:</p>
<blockquote style="text-align: justify;"><p><em>&#8220;To check if you’ve been infected, look in /System/Library/StartupItems for an item named iWorkServices. If it exists, you’ve been infected with this Trojan horse.&#8221;</em></p></blockquote>
<p style="text-align: justify;">Ed ecco qual&#8217;è la vera differenza tra software &#8220;OpenSource/ClosedSource&#8221; e tra &#8220;gratuito/a pagamento&#8221;: dov&#8217;è la necessità di scaricare materiale pirata se liberamente disponibile? Quanto tempo si sarebbe impiegato ad identificare il trojan se il codice fosse stato open? Con questo non metto in dubbio l&#8217;elevata qualità dei prodotti <a title="Apple's home page" href="http://www.apple.com" target="_blank">Apple</a>, è chiaro, manifesto solo i lati che apprezzo del software opensource.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fabiofalcinelli.it/2009/01/trojan-in-iwork-09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

