<?xml version="1.0" encoding="windows-1252"?><rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Italian Betacrew</title><link>http://betacrew.org/dblog/</link>
<description>Italian Betacrew</description><language>it</language>
<item>
	<title><![CDATA[Reverse Proxy con Squid e SSL]]></title>
	<description><![CDATA[<div class="postentry">
<p><strong>1/ Install openssl and libssl-dev packages</strong><br />
<em># aptitude install openssl libssl-dev</em></p>
<p><strong>2/ Donwload squid sources on http://www.squid-cache.org/</strong></p>
<p><strong>3/ Configure it with the openssl option, compile it and install it</strong><br />
<em># ./configure &ndash;enable-ssl &ndash;with-openssl=/usr/include/openssl/<br />
# make<br />
# make install</em></p>
<p><strong>4/ Create necessary certificates (<a onclick="javascript:urchinTracker('/outbound/www.octaldream.com/_scottm/talks/ssl/opensslca.html');" href="http://www.octaldream.com/%7Escottm/talks/ssl/opensslca.html">source</a>)</strong><br />
&ndash; Creating a private CA &ndash;</p>
<p>Go to the OpenSSL bin directory (/usr/local/ssl/misc by default).<br />
There should be a script called CA.sh (and a CA.pl that does the same stuff). This hides all the gruesome details of how this works. Without the script this is a very annoying process.<br />
su to root<br />
Make sure that the OpenSSL bin directory is in your path.</p>
<p><em># ./CA.sh -newca </em></p>
<p>When prompted for CA filename hit return.<br />
Answer the rest of the questions intelligently. The common name would be how this certificate might be referred to. For example, the Equifax Secure CA uses the common name of Equifax Secure Certificate Authority.</p>
<p>&ndash; Creating certificates &ndash;</p>
<p><em># ./CA.sh -newreq </em></p>
<p>This creates an unsigned certificate request.<br />
The procedure is the same as creating a private CA except you&rsquo;ll want to use the name of the host that will use the certificate as the common name (host.domain.com). If they don&rsquo;t match, the client will not like it.<br />
You probably don&rsquo;t want to use the same passphrase for this as you did with the CA.</p>
<p><em># ./CA.sh -sign </em></p>
<p>It will ask for a PEM pass phrase, that&rsquo;s the passphrase you set for the private CA you created.<br />
This signs the certificate that you just created with the CA you created just moments before. You can generate multiple certificates. You&rsquo;ll probably need to. For example, mail.foo.com and www.foo.com each need their own certificate.<br />
The signed certificate is now in the current directory as newcert.pem. If you are going to create more, you should rename this or it will be overwritten be subsequent signatures.</p>
<p><strong>4/ Removing password from key.pem</strong><br />
<em># mv key.pem key.pem.withpass<br />
# openssl rsa -in key.pem.withpass -out key.pem<br />
</em></p>
<p><strong>5/ Edit /usr/local/squid/etc/squid.conf</strong><br />
<em>http_port 3128 vhost defaultsite=yoursite.com</em></p>
<p><em>https_port 443 vhost cert=/path_to/cert.pem key=/path_to/key.pem cafile=/path_to/cacert.pem defaultsite=yoursite.com versi<br />
on=2</em></p>
<p><em>cache_peer yoursite.com parent 80 0 no-query originserver</em></p>
<p><strong>6/ Create squid cache directories and launch squid</strong><br />
<em># /usr/local/squid/sbin/squid -z<br />
# /usr/local/squid/sbin/squid</em></p>
<p>&nbsp;</p>
<p><span style="font-size: smaller;"><em>Fonte http://www.brichet.be/how-to-setup-a-reverse-proxy-server-over-ssl-squid-debian/</em></span></p>
</div><br />]]></description>
	<link><![CDATA[http://betacrew.org/public/post/reverse-proxy-con-squid-e-ssl-19.asp]]></link>
	<guid isPermaLink="true">http://betacrew.org/public/post/reverse-proxy-con-squid-e-ssl-19.asp</guid>
	<dc:date>2008-07-08T20:09:59+01:00</dc:date>
	<dc:creator>Admin</dc:creator>
</item>
<item>
	<title><![CDATA[Certification Authority con OpenSSL]]></title>
	<description><![CDATA[<p><em>This was written using OpenSSL 0.9.5 as a reference.</em></p>
<p>To start with, you'll need <a href="http://www.openssl.org/">OpenSSL</a>. 	Compilation and installation follow the usual methods.  It's worth while to 	note that the default installs everything in <code>/usr/local/ssl</code>. 	No need to change this (unless you want to).</p>
<p>After you have this installed, you may want to edit the OpenSSL 	configuration file with the information for your site so you have 	pleasant defaults when creating and signing certificates.  You'll find this 	in <code>/usr/local/ssl/openssl.cnf</code> in the section 	<code>req_distinguished_name</code>  Here you can set the defaults (denoted 	by the <code>_default</code> appended to the variable name).  Any settings 	that do not have a default, such as <code>localityName</code> can have one 	set by appending <code>_default</code>. In this case you'd set 	<code>localityName_default</code>.</p>
<p>Now, we move on to creating a private Certificate Authority (CA). First, 	some explanation. The CA is used in SSL to verify the authenticity of a 	given certificate. The CA acts as a trusted third party who has 	authenticated the user of the signed certificate as being who they say. 	The certificate is signed by the CA, and if the client trusts the CA, it will 	trust your certificate. For use within your organization, a private CA will 	probably serve your needs.  However, if you intend use your certificates for a 	public service, you should probably obtain a certificate from a known CA.</p>
<p>In addition to identification, your certificate is also used for encryption. 	If you're thinking a certificate sounds similar to a PGP key, you're right. 	They use many of the same methods. Something else PGP and SSL have in common 	is the RSA encryption algorithm, which is patented.  This patent expires in 	September of 2000, so after that you'll be free to use tools with the RSA 	algorithm (like OpenSSL).  Until that time, to legally use RSA you need a 	license.  RSA Data Security usually allows non-commercial use of the RSA 	algorithm for academic purposes.</p>
<h3>Creating a private CA</h3>
<ul>
    <li>Go to the OpenSSL bin directory 	(<code>/usr/local/ssl/misc</code> by default).</li>
    <li>There should be a script called <code>CA.sh</code> (and a 	<code>CA.pl</code> that does the same 			stuff). This hides all the gruesome details of how this works.  Without 			the script this is a very annoying process.</li>
    <li>su to root
    <ul>
        <li>Make sure that the OpenSSL bin directory is in your path.</li>
    </ul>
    </li>
    <li><code>./CA.sh -newca</code>
    <ul>
        <li>When prompted for CA filename hit return.</li>
        <li>Answer the rest of the questions intelligently. The common name 		would be how this certificate might be referred to.  For example, the 		Equifax Secure CA uses the common name of Equifax Secure Certificate 		Authority.</li>
    </ul>
    </li>
</ul>
<h3>Creating certificates</h3>
<ul>
    <li><code>./CA.sh -newreq</code>
    <ul>
        <li>This creates an unsigned certificate request.</li>
        <li>The procedure is the same as creating a private CA except you'll want to 	use the name of the host that will use the certificate as the common name 	(host.domain.com). If they don't match, the client will not like it.</li>
        <li>You probably don't want to use the same passphrase for this as you 	did with the CA.</li>
    </ul>
    </li>
    <li><code>./CA.sh -sign</code>
    <ul>
        <li>It will ask for a PEM pass phrase, that's the passphrase you set for the 	private CA you created.</li>
        <li>This signs the certificate that you just created with the CA you 	created just moments before. You can generate multiple certificates. 	You'll probably need to.  For example, mail.foo.com and www.foo.com each need 	their own certificate.</li>
    </ul>
    </li>
    <li>The signed certificate is now in the current directory as 	<code>newcert.pem</code>.  If you are going to create more, you should rename 	this or it will be overwritten be subsequent signatures.</li>
</ul>
<h3>Creating client-side certificates</h3>
<ul>
    <li><code>openssl pkcs12 -export -in certs.pem -inkey certs.key -out file.p12 -name &quot;Client Certificate&quot;</code></li>
</ul><br />]]></description>
	<link><![CDATA[http://betacrew.org/public/post/certification-authority-con-openssl-18.asp]]></link>
	<guid isPermaLink="true">http://betacrew.org/public/post/certification-authority-con-openssl-18.asp</guid>
	<dc:date>2008-07-08T20:09:39+01:00</dc:date>
	<dc:creator>Admin</dc:creator>
</item>
<item>
	<title><![CDATA[Sources.list completo per APT di Ubuntu 8.04]]></title>
	<description><![CDATA[<pre>
##################################################################################
## INGALEX UBUNTU HARDY HERON 8.04 REPOSITORY SOURCES.LIST ## TOTAL:55 REPOSITORY#
##################################################################################

##HARDY SUPPORTED
deb http://it.archive.ubuntu.com/ubuntu/ hardy main restricted
deb-src http://it.archive.ubuntu.com/ubuntu/ hardy main restricted

##HARDY SUPPORTED - UPDATES
deb http://it.archive.ubuntu.com/ubuntu/ hardy-updates main restricted
deb-src http://it.archive.ubuntu.com/ubuntu/ hardy-updates main restricted

##HARDY SUPPORTED - PROPOSED
deb http://it.archive.ubuntu.com/ubuntu/ hardy-proposed main restricted
deb-src http://it.archive.ubuntu.com/ubuntu/ hardy-proposed main restricted

##HARDY SUPPORTED - SECURITY
deb http://security.ubuntu.com/ubuntu/ hardy-security main restricted
deb-src http://security.ubuntu.com/ubuntu/ hardy-security main restricted

##HARDY COMMUNITY SUPPORTED
#deb http://it.archive.ubuntu.com/ubuntu/ hardy universe multiverse
#deb-src http://it.archive.ubuntu.com/ubuntu/ hardy universe multiverse

##HARDY COMMUNITY SUPPORTED - UPDATES
#deb http://it.archive.ubuntu.com/ubuntu/ hardy-updates universe multiverse
#deb-src http://it.archive.ubuntu.com/ubuntu/ hardy-updates universe multiverse

##HARDY COMMUNITY SUPPORTED - PROPOSED
#deb http://it.archive.ubuntu.com/ubuntu/ hardy-proposed universe multiverse
#deb-src http://it.archive.ubuntu.com/ubuntu/ hardy-proposed universe multiverse

##HARDY COMMUNITY SUPPORTED - SECURITY
#deb http://security.ubuntu.com/ubuntu/ hardy-security universe multiverse
#deb-src http://security.ubuntu.com/ubuntu/ hardy-security universe multiverse

##BACKPORTS
deb http://it.archive.ubuntu.com/ubuntu/ hardy-backports main restricted universe multiverse
deb-src http://it.archive.ubuntu.com/ubuntu/ hardy-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository. This software is not part of Ubuntu, but is
## offered by Canonical and the respective vendors as a service to Ubuntu
## users.
deb http://archive.canonical.com/ubuntu hardy partner

## Emesene
deb http://apt.emesene.org/ ./
# deb-src http://apt.emesene.org/ ./

## WICD
# deb http://wicd.longren.org hardy all


## Medibuntu - Ubuntu 8.04 &quot;hardy heron&quot;
## Please report any bug on https://bugs.launchpad.net/medibuntu/
#deb http://packages.medibuntu.org/ hardy free non-free
#deb-src http://packages.medibuntu.org/ hardy free non-free

## UBUNTU SATANIC
deb http://ubuntusatanic.org/hell hardy main

## REPOSITORY DI PACCHETTI INSTABILI LAUNCHPAD

deb http://ppa.launchpad.net/project-neon/ubuntu hardy main
deb http://ppa.launchpad.net/fta/ubuntu hardy main
deb http://ppa.launchpad.net/mvo/ubuntu hardy main
deb http://ppa.launchpad.net/googlegadgets/ubuntu hardy main
deb-src http://ppa.launchpad.net/googlegadgets/ubuntu hardy main
deb http://ppa.launchpad.net/festor90/ubuntu hardy main

##BLUEMAN

deb http://download.tuxfamily.org/blueman hardy blueman
deb-src http://download.tuxfamily.org/blueman hardy blueman

## Akirad-Hardy - Ubuntu 8.04 &quot;Hardy Heron&quot;
## Please report any bug on akir4d@gmail.com
deb http://akirad.cinelerra.org/ akirad-hardy main
#deb-src http://akirad.cinelerra.org/ akirad-hardy main

## Wine
# gpg --keyserver subkeys.pgp.net --recv 387EE263
# gpg --export --armor 387EE263 | sudo apt-key add -
deb http://wine.budgetdedicated.com/apt hardy main #WineHQ - Ubuntu 8.04 &quot;Hardy Heron&quot;
#deb-src http://wine.budgetdedicated.com/apt hardy main #WineHQ - Ubuntu 8.04 &quot;Hardy Heron&quot;

## Gnome-Do
# sudo apt-get install gnome-do
# For addons: http://do.davebsd.com/addins/
# Place addons in ~/.do/addins and restart Gnome-Do
#
deb http://ppa.launchpad.net/rharding/ubuntu hardy main
deb-src http://ppa.launchpad.net/rharding/ubuntu hardy main

## Swiftfox
deb http://getswiftfox.com/builds/debian unstable non-free

## aMule
# gpg --keyserver wwwkeys.eu.pgp.net --recv 50D0AE60
# gpg --armor --export 50D0AE60 | sudo apt-key add -
#
# deb http://www.vollstreckernet.de/debian/ testing amule

## Broadcom firmware, Google-earth, Secondlife, rTorrent, etc..
# wget http://debian.cafuego.net/cafuego.gpg -O- | sudo apt-key add -
#
deb http://au.ubuntu.cafuego.net hardy-cafuego all
deb-src http://au.ubuntu.cafuego.net hardy-cafuego all

## Miro
deb http://ftp.osuosl.org/pub/pculture.org/miro/linux/repositories/ubuntu hardy/

## Audacious
#deb http://backports.dereferenced.org/ hardy universe

## Elisa Media Center
# wget http://elisa.fluendo.com/packages/philn.asc -O- | sudo apt-key add -
#
#deb http://elisa.fluendo.com/packages hardy main

## Last.fm
# wget http://apt.last.fm/last.fm.repo.gpg -O- | sudo apt-key add -
#
deb http://apt.last.fm/ debian stable

## GShowTV
# gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 585DECB0
# gpg --armor --export 585DECB0 | sudo apt-key add -
deb http://debian.vakevainen.fi unstable main

## GreenOS
# wget http://www.thinkgos.com/files/gos_repo_key.asc -O- | sudo apt-key add -
#
#deb http://packages.thinkgos.com/gos/ painful main
#deb-src http://packages.thinkgos.com/gos/ painful main

## Griffith (film collection manager)
# gpg --keyserver subkeys.pgp.net --recv-keys ED75F599
# gpg --armor --export ED75F599 | sudo apt-key add -
#
deb ftp://ftp.berlios.de/pub/griffith/ ./

## KDE4
# First uninstall:
# sudo apt-get remove kdelibs5 kde4base-data kde4libs-data
#
# Packages needed:
# sudo apt-get install kde4-core kde-l10n-it
#
# Optional packages:
# sudo aptitude install kdegraphics-kde4  kdemultimedia-kde4  kdenetwork-kde4 kdeutils-kde4 extragear-plasma
#
deb http://ppa.launchpad.net/kubuntu-members-kde4/ubuntu hardy main

## Mugshot
# wget -q http://www.nighton.net/nighton_key.asc -O- | sudo apt-key add - &amp;&amp; sudo apt-get update
# sudo apt-get install mugshot
#
deb http://www.nighton.net/ hardy main
deb-src http://www.nighton.net/ hardy main

## Mundogeek Repository
# Packages list: http://mundogeek.net/repo/dists/ubuntu/all/
#
deb http://mundogeek.net/repo ubuntu all

## PyTube
deb http://www.bashterritory.com/pytube/releases /

## Ubuntu Tweak
deb http://ppa.launchpad.net/tualatrix/ubuntu hardy main
deb-src http://ppa.launchpad.net/tualatrix/ubuntu hardy main

## Me TV
deb http://ppa.launchpad.net/michael-lamothe/ubuntu hardy main
deb-src http://ppa.launchpad.net/michael-lamothe/ubuntu hardy main

## Jbbr Repository
# wget -q http://ubuntu.jbbr.net/jbbr_ubuntu.asc -O- | sudo apt-key add -
#
deb http://ubuntu.jbbr.net/packages hardy main
deb-src http://ubuntu.jbbr.net/packages hardy main

##Pollyrepo - www.pollycoke.net
#
deb http://download.tuxfamily.org/pollyrepo hardy/
deb-src http://download.tuxfamily.org/pollyrepo hardy/

##TOR
# gpg --export 94C09C7F | sudo apt-key add -
deb http://mirror.noreply.org/pub/tor hardy main
deb-src http://mirror.noreply.org/pub/tor hardy main

## Skype
#
deb http://download.skype.com/linux/repos/debian/ stable non-free

## Logubuntu
## Offre diversi pacchetti, tra cui le ultime versioni di amule e amule-adunanza (dichiarato ancora come unstable)
# gpg --keyserver subkeys.pgp.net --recv-keys 2674E3FC
# gpg --armor --export 2674E3FC| sudo apt-key add -
#
# deb http://www.logubuntu.it/M0rF3uS hardy-unstable/
# deb-src http://www.logubuntu.it/M0rF3uS hardy-unstable/
deb http://www.logubuntu.it/M0rF3uS/ hardy binary

## Google Linux software repository (GPG key: 7FAC5991)
## Offre pacchetti della suite Google.
deb http://dl.google.com/linux/deb/ stable non-free

## Enlightenment DR17 (GPG key: A7C6F0DF)
## Offre  i pacchetti per installare Enlightenment DR17 e per Elbuntu.
deb http://e17.dunnewind.net/ubuntu/ hardy e17 elbuntu
deb-src http://e17.dunnewind.net/ubuntu/ hardy e17 elbuntu


## Ubuntu hardy University Klagenfurt (GPG key: A2BF7BCB)
## Pacchetti forniti da University Klagenfurt.
deb http://ubuntu.uni-klu.ac.at/ubuntu/ hardy main universe multiverse restricted
deb-src http://ubuntu.uni-klu.ac.at/ubuntu/ hardy main universe multiverse restricted

## Ubuntu hardy University Klagenfurt updates (GPG key: A2BF7BCB)
## Pacchetti aggiornati forniti da University Klagenfurt.
deb http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-updates main universe multiverse restricted
deb-src http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-updates main universe multiverse restricted

## Ubuntu hardy University Klagenfurt backports (GPG key: A2BF7BCB)
## Pacchetti di backports forniti da University Klagenfurt.
deb http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-backports main universe multiverse restricted
deb-src http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-backports main universe multiverse restricted

## Ubuntu hardy University Klagenfurt security fixes (GPG key: A2BF7BCB)
## Pacchetti con aggiornameti di sicurezza forniti da University Klagenfurt.
deb http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-security main universe multiverse restricted
deb-src http://ubuntu.uni-klu.ac.at/ubuntu/ hardy-security main universe multiverse restricted

## Morghot (GPG key: 7E2E4741)
## Offre pacchetti di packport non ufficiali
deb http://morgoth.free.fr/ubuntu hardy-backports main
deb-src http://morgoth.free.fr/ubuntu hardy-backports main

## Le d&Atilde;&copy;pomaniak (GPG key: 1D59E694)
## Offre i pacchetti per extract-xiso, qtpfsgui e radiocap.
##Attualmente non funzionanti
#deb http://ubuntu.davromaniak.eu hardy-depomaniak all
#deb-src http://ubuntu.davromaniak.eu hardy-depomaniak all

## Ryan Kavanagh's packages (GPG key: 02544D0E)
## Offre principalmente applicazioni per KDE.
#deb http://packages.ryanak.ca ryan-hardy all
#deb-src http://packages.ryanak.ca ryan-hardy all
</pre><br />]]></description>
	<link><![CDATA[http://betacrew.org/public/post/sources-list-completo-per-apt-di-ubuntu-8-04-17.asp]]></link>
	<guid isPermaLink="true">http://betacrew.org/public/post/sources-list-completo-per-apt-di-ubuntu-8-04-17.asp</guid>
	<dc:date>2008-07-06T00:56:26+01:00</dc:date>
	<dc:creator>Admin</dc:creator>
</item>
<item>
	<title><![CDATA[Deep reset su Smartphone Nokia Serie N]]></title>
	<description><![CDATA[<p>Ciao a tutti,</p>
<p>vi &eacute; mai capitato di aver installato tante di quelle cose che non sapete pi&ugrave; come liberare il telefono?Oppure il telefono fa le bizze e non capite il perch&egrave;?</p>
<p>La soluzione in molti casi &eacute; un bel deep reset!</p>
<p>Il deep reset pu&ograve; essere fatto in questi tre modi a seconda del vostro smartphone:</p>
<p>- *#7370#<br />
- *#7780#<br />
- accendi il cel pigiando contemporaneamente *+tasto verde+3 e il tasto di accensione fino alla schermata delle mani nokia<br />
&nbsp;</p>
<p>Spero di esser stato d'aiuto.</p>
<p>A presto</p><br /><div id="technorati">
<img src="/dblog/template/insense/gfx/technorati.gif" alt="Technorati" />&nbsp;Tag:&nbsp;
<a href='http://www.technorati.com/tag/nokia' target='_blank' rel='tag'>nokia</a>,&nbsp;<a href='http://www.technorati.com/tag/+smartphone' target='_blank' rel='tag'> smartphone</a>,&nbsp;<a href='http://www.technorati.com/tag/+reset' target='_blank' rel='tag'> reset</a>&nbsp;
</div>
]]></description>
	<link><![CDATA[http://betacrew.org/public/post/deep-reset-su-smartphone-nokia-serie-n-16.asp]]></link>
	<guid isPermaLink="true">http://betacrew.org/public/post/deep-reset-su-smartphone-nokia-serie-n-16.asp</guid>
	<dc:date>2008-06-03T14:44:44+01:00</dc:date>
	<dc:creator>Admin</dc:creator>
</item>
<item>
	<title><![CDATA[Outlook e il blocco automatico di allegati potenzialmente pericolosi]]></title>
	<description><![CDATA[<p>Avete notato che outlook &eacute; un p&ograve; troppo protettivo? Mi sono imbattuto nel dover aprire un file .mdb (Access) arrivatomi in allegato ad un email,</p>
<p>il fido outlook ha tentato di proteggermi anche da questo file access!!! Un p&ograve; troppo esagerato no?</p>
<p>Vediamo come risolvere il problema:</p>
<p>apriamo regedit e andiamo alla radice</p>
<p>HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Security    (12.0 dipende dalla vostra versione di office)</p>
<p>creiamo una nuova chiave di tipo stringa e chiamiamola &quot;Level1Remove&quot;</p>
<p>editiamo tale stringa inserendo le estensioni dei file separati da ; che volete far aprire ad outlook ( esempio -&gt; mdb;zip;rar;exe )</p>
<p>Ora aprite outlook :)</p><br /><div id="technorati">
<img src="/dblog/template/insense/gfx/technorati.gif" alt="Technorati" />&nbsp;Tag:&nbsp;
<a href='http://www.technorati.com/tag/outlook' target='_blank' rel='tag'>outlook</a>,&nbsp;<a href='http://www.technorati.com/tag/+blocco+allegati' target='_blank' rel='tag'> blocco allegati</a>,&nbsp;<a href='http://www.technorati.com/tag/+' target='_blank' rel='tag'> </a>&nbsp;
</div>
]]></description>
	<link><![CDATA[http://betacrew.org/public/post/outlook-e-il-blocco-automatico-di-allegati-potenzialmente-pericolosi-15.asp]]></link>
	<guid isPermaLink="true">http://betacrew.org/public/post/outlook-e-il-blocco-automatico-di-allegati-potenzialmente-pericolosi-15.asp</guid>
	<dc:date>2008-05-27T15:13:31+01:00</dc:date>
	<dc:creator>Admin</dc:creator>
</item>
	</channel></rss>