<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Omar Benbouazza Villa</title>
	<atom:link href="http://omarbv.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://omarbv.com</link>
	<description>Tecnología, Seguridad y Hacking</description>
	<lastBuildDate>Wed, 23 May 2012 14:18:26 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='omarbv.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Omar Benbouazza Villa</title>
		<link>http://omarbv.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://omarbv.com/osd.xml" title="Omar Benbouazza Villa" />
	<atom:link rel='hub' href='http://omarbv.com/?pushpress=hub'/>
		<item>
		<title>¿Arruinamos a Whatsapp?</title>
		<link>http://omarbv.com/2012/04/24/arruinamos-a-whatsapp/</link>
		<comments>http://omarbv.com/2012/04/24/arruinamos-a-whatsapp/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 08:13:41 +0000</pubDate>
		<dc:creator>Omar B. Villa</dc:creator>
				<category><![CDATA[Bug/Error]]></category>
		<category><![CDATA[Hacked]]></category>
		<category><![CDATA[Seguridad]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[whatsapp]]></category>

		<guid isPermaLink="false">http://omarbv.com/?p=745</guid>
		<description><![CDATA[Artículo publicado el 26 de Marzo de 2012 en SecuritybyDefault. Después de los distintos post sobre la inseguridad de esta aplicación que han venido haciendo los compañeros de SecurityByDefault, hago [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarbv.com&#038;blog=13450143&#038;post=745&#038;subd=axdir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p><strong>Artículo publicado el 26 de Marzo de 2012 en <a href="http://www.securitybydefault.com/2012/03/arruinamos-whatsapp.html" target="_blank">SecuritybyDefault.</a></strong></p></blockquote>
<p>Después de los distintos post sobre la inseguridad de esta aplicación que <a href="http://www.securitybydefault.com/search?q=whatsapp">han venido haciendo los compañeros de SecurityByDefault</a>, hago este pequeño artículo que explica la <strong>posibilidad de realizar envíos masivos de SMS empleando la plataforma que brinda WhatsApp.</strong></p>
<p>El mantener una plataforma de mensajería abierta y gratuita, cuesta mucho dinero. Si a esto se le suma provocar un gasto no contemplado de manera constante, podría acabar con el modelo de negocio que tienen a día de hoy.</p>
<div><img class="aligncenter size-medium wp-image-753" title="Whatsapp Code" src="http://axdir.files.wordpress.com/2012/04/img_0810.png?w=200&h=300" alt="" width="200" height="300" /></div>
<p>Cuando un cliente se instala por primera vez la aplicación, o bien cambia de terminal, este tiene la obligación de solicitar un código de seguridad para verificar que ese número de teléfono es el correcto y prevenir un ID Spoofing.</p>
<p>La URL empleada para la solicitud del código es la siguiente:<br />
<em>https://r.whatsapp.net/v1/code.php?method=sms&amp;to=34600000000&amp;in=600000000&amp;cc=34&amp;mcc=000&amp;mnc=000 </em></p>
<p>Se especifica en la primera variable &#8220;to=&#8221; el número de teléfono con el prefijo internacional (34 para España), y en la segundo &#8220;in&#8221;, sin el prefijo. En &#8220;cc=&#8221; volvemos a poner el prefijo, y las variables &#8220;mcc/mnc&#8221; son datos de la operadora telefónica y las dejaremos a cero-cero-cero.</p>
<p>Con la creación de un script muy básico, se puede realizar un envío <a href="http://www.securitybydefault.com/2012/03/casi-10-millones-de-moviles-espanoles.html">a los 10 millones de teléfonos móviles españoles</a> que tienen WhatsApp instalado.</p>
<p>Empresas como esta, emplean pasarelas de envío de SMS a un precio mucho más bajo del establecido por las operadoras de telefonía, con lo que si el precio que paga esta empresa por SMS lo situamos en 0,01€, cada vez que ejecutemos el script, provocaríamos un gasto de 100.000 euros. En realidad, seguro que pagan mucho menos dinero por SMS, pero también tenemos la posibilidad de enviar muchos más SMS de manera global a otros países, tan sólo valdría con cambiar el prefijo&#8230;</p>
<p>Código del script realizado por <a href="http://twitter.com/#%21/chencho">@chencho</a>:</p>
<p><code>#!/bin/bash<br />
let i=600000000<br />
let END=699999999<br />
echo "\n" &gt; data<br />
while ((i&lt;=END))<br />
do<br />
echo "[*] Mobile number: $i" &gt;&gt; data<br />
echo "[--- " &gt;&gt; data<br />
curl -d "method=sms&amp;to=34$i&amp;in=$i&amp;cc=34&amp;mcc=000&amp;mnc=000" https://r.whatsapp.net/v1/code.php &gt;&gt; data<br />
let i++status="success-sent"<br />
echo "---]" &gt;&gt; data<br />
done</code></p>
<div>
<p>Este script nos generará un fichero DATA, donde veremos a qué teléfonos les ha llegado el SMS con el Status &#8220;success-sent&#8221; o bien han fallado por demasiados intentos en un corto espacio de tiempo y no se enviará.</p>
<p>No se ha llegado a probar sobre un escenario real, ya que posiblemente se banearía la dirección IP. Esto no deja de ser una prueba de concepto, y por tanto me exonero de toda responsabilidad por su mal uso, ya que podría haber <a href="http://www.elconfidencial.com/tecnologia/2011/10/22/hackers-cuando-la-curiosidad-te-lleva-a-la-carcel-1261/">serios problemas legales</a>.</p>
<p>De hecho, antes de la publicación de este artículo, se ha informado debidamente al <a href="https://www.gdt.guardiacivil.es/">Grupo de Delitos Telemáticos de la Guardia Civil</a>,  que ha trabajado de manera impecable dando a conocer a WhatsApp este problema en tiempo récord para una solución lo más rápida posible.</p>
</div>
<div>A día de hoy la vulnerabilidad sigue existiendo, por lo que una vez más, la seguridad de esta aplicación y  su gestión de incidencias quedan en evidencia.</div>
<div></div>
<p>Al final van a tener que poner el <a href="http://blog.whatsapp.com/index.php/2012/01/it-is-a-hoax-really-it-is/">WhasApp de pago</a>&#8230;</p>
<p><em>* El día 30 de marzo, 4 días después de la publicación de este artículo, Whatsapp desconectó la pasarela de SMS para no sufrir este tipo de ataques.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axdir.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axdir.wordpress.com/745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axdir.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axdir.wordpress.com/745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axdir.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axdir.wordpress.com/745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axdir.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axdir.wordpress.com/745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axdir.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axdir.wordpress.com/745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axdir.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axdir.wordpress.com/745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axdir.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axdir.wordpress.com/745/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarbv.com&#038;blog=13450143&#038;post=745&#038;subd=axdir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarbv.com/2012/04/24/arruinamos-a-whatsapp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aa7df355390a00b4e4a05a23237659b3?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">omarbvilla</media:title>
		</media:content>

		<media:content url="http://axdir.files.wordpress.com/2012/04/img_0810.png?w=200" medium="image">
			<media:title type="html">Whatsapp Code</media:title>
		</media:content>
	</item>
		<item>
		<title>Ejemplos de Phishing (II)</title>
		<link>http://omarbv.com/2012/03/29/ejemplos-de-phishing-ii/</link>
		<comments>http://omarbv.com/2012/03/29/ejemplos-de-phishing-ii/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 13:33:53 +0000</pubDate>
		<dc:creator>Omar B. Villa</dc:creator>
				<category><![CDATA[Phising]]></category>
		<category><![CDATA[Seguridad]]></category>
		<category><![CDATA[banco de chile]]></category>
		<category><![CDATA[bradesco]]></category>
		<category><![CDATA[corpbanca]]></category>
		<category><![CDATA[phising]]></category>

		<guid isPermaLink="false">http://omarbv.com/?p=729</guid>
		<description><![CDATA[Banco Bradesco - http://www.bogotasportsonline.com/cache/mod_cleanmenu/ Banco de Chile - http://200.24.40.40/h/inv/oc/redir/d760f2c36db8fcbef7a3d59c5625aa48/a29zdGFfbWFya29uaUBob3RtYWlsLmNvbQ0%3d/ Corpbanca - http://www.ubuntu.upc.edu/docus/www/authenticacion/id_category/Online/index.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarbv.com&#038;blog=13450143&#038;post=729&#038;subd=axdir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;"><strong>Banco Bradesco </strong>- http://www.bogotasportsonline.com/cache/mod_cleanmenu/<strong><br />
</strong></p>
<p style="text-align:center;"><a href="http://axdir.files.wordpress.com/2012/03/1.png"><img class="aligncenter  wp-image-730" title="1" src="http://axdir.files.wordpress.com/2012/03/1.png?w=405&h=226" alt="" width="405" height="226" /></a></p>
<p style="text-align:left;"><strong>Banco de Chile </strong>- http://200.24.40.40/h/inv/oc/redir/d760f2c36db8fcbef7a3d59c5625aa48/a29zdGFfbWFya29uaUBob3RtYWlsLmNvbQ0%3d/<strong><br />
</strong></p>
<p style="text-align:center;"><a href="http://axdir.files.wordpress.com/2012/03/2.png"><img class="aligncenter  wp-image-731" title="2" src="http://axdir.files.wordpress.com/2012/03/2.png?w=405&h=742" alt="" width="405" height="742" /></a></p>
<p style="text-align:left;"><strong>Corpbanca </strong>- http://www.ubuntu.upc.edu/docus/www/authenticacion/id_category/Online/index.htm</p>
<p style="text-align:center;"><a href="http://axdir.files.wordpress.com/2012/03/corpbanca.png"><img class="aligncenter  wp-image-742" title="corpbanca" src="http://axdir.files.wordpress.com/2012/03/corpbanca.png?w=405&h=452" alt="" width="405" height="452" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axdir.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axdir.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axdir.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axdir.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axdir.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axdir.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axdir.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axdir.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axdir.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axdir.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axdir.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axdir.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axdir.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axdir.wordpress.com/729/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarbv.com&#038;blog=13450143&#038;post=729&#038;subd=axdir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarbv.com/2012/03/29/ejemplos-de-phishing-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aa7df355390a00b4e4a05a23237659b3?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">omarbvilla</media:title>
		</media:content>

		<media:content url="http://axdir.files.wordpress.com/2012/03/1.png" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://axdir.files.wordpress.com/2012/03/2.png" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://axdir.files.wordpress.com/2012/03/corpbanca.png" medium="image">
			<media:title type="html">corpbanca</media:title>
		</media:content>
	</item>
		<item>
		<title>Unas NAS algo peligrosas</title>
		<link>http://omarbv.com/2012/02/13/unas-nas-algo-peligrosas/</link>
		<comments>http://omarbv.com/2012/02/13/unas-nas-algo-peligrosas/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 09:23:08 +0000</pubDate>
		<dc:creator>Omar B. Villa</dc:creator>
				<category><![CDATA[Bug/Error]]></category>
		<category><![CDATA[Hacked]]></category>
		<category><![CDATA[Seguridad]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[nas]]></category>
		<category><![CDATA[sbd]]></category>
		<category><![CDATA[television]]></category>

		<guid isPermaLink="false">http://omarbv.com/?p=716</guid>
		<description><![CDATA[Artículo publicado el 24 de Enero de 2012 en SecuritybyDefault. Hace unos años, la empresa LaCie, cuyos discos duros extraíbles podéis encontrar en cualquier centro comercial, comenzó a vender NAS [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarbv.com&#038;blog=13450143&#038;post=716&#038;subd=axdir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p><strong>Artículo publicado el 24 de Enero de 2012 en <a href="http://www.securitybydefault.com/2012/01/unas-nas-algo-peligrosas.html" target="_blank">SecuritybyDefault.</a></strong></p></blockquote>
<div>Hace unos años, la empresa LaCie, cuyos discos duros extraíbles podéis encontrar en cualquier centro comercial, comenzó a vender <strong>NAS “domesticas”</strong> para aquellos que necesitan suficiente espacio para sus fotos, películas, etc. o incluso para <strong>PYMES que requieran de espacio para gran cantidad de datos</strong>.</div>
<div></div>
<div>Estos modelos de NAS, conectados mediante RJ45 al router, es en muchos casos accesible desde internet para ofrecer espacio a los amigos, o bien poder entrar en la NAS y visualizar archivos o documentos desde el trabajo.</div>
<div></div>
<div>Hasta aquí todo normal, ¿no?</div>
<div></div>
<p><div><a href="http://axdir.files.wordpress.com/2012/02/1.png"><img class="aligncenter size-medium wp-image-717" title="1" src="http://axdir.files.wordpress.com/2012/02/1.png?w=300&h=154" alt="" width="300" height="154" /></a></div>
<div></div>
<div>
<div></div>
<p>
<div>El problema viene, cuando <strong>este tipo de dispositivos, por defecto permite la conexión mediante HTTP y FTP de un usuario anónimo</strong>. ¿Puede entonces cualquier persona visualizar los documentos de mi empresa en la NAS? Si, y también editarlos o borrarlos.</div>
<div></div>
<div>Hace unos meses, avisé a un CERT de la existencia de una LaCie BIG5 expuesta que pertenecía a una cadena de televisión local. Probé a entrar como anonymous, y BINGO. Pude comprobar como tenían establecidas distintas carpetas con las películas, series, telenovelas y dibujos animados o reportajes de forma bastante ordenada y con una calidad asombrosa.</div>
<div></div>
<div>También pude observar como había acceso a modificar la “mosca” o logotipo de la cadena, así como con las “cortinillas” que te decían que iban a publicidad y que volvían en cuestión de minutos.</div>
<div></div>
<div>El mayor de los problemas no era poderte descargar parte de su programación. Sino que tenía en mi mano el <strong>poder sustituir videos que iban a entrar en el informativo del día</strong> por un video gracioso de Youtube o poner el logo de Anonymous o Rooted como la “mosca”. ¿A quién no le gusta la televisión a la carta?</div>
<div></div>
<div>Desde <a href="http://www.shodanhq.com/search?q=LaCie">Shodan</a> podéis vosotros mismos comprobar la cantidad de dispositivos que tienen permitido el uso “anónimo”.</div>
</div>
<div></div>
<p>
<div><a href="http://axdir.files.wordpress.com/2012/02/2.png"><img class="aligncenter size-medium wp-image-718" title="2" src="http://axdir.files.wordpress.com/2012/02/2.png?w=284&h=300" alt="" width="284" height="300" /></a></div>
<div></div>
<div>
<p>
<div>Algo parecido sucede también con algunos modelos de NAS de la compañía NetAPP, responsable de soluciones para grandes empresas. Traen un panel de administración (/na_admin) con un usuario por defecto root sin password. <a href="http://www.shodanhq.com/search?q=%2Fna_admin">Con una sencilla búsqueda</a>, puedes <strong>entrar a los ficheros de cualquier gran empresa o universidad</strong>, que las utilizan mucho.</div>
<div></div>
<div>Accediendo al panel, no podremos acceder a los datos de forma directa, pero si modificar propiedades de la NAS y poder hacer un mirror en cualquier servidor externo, donde ya si podremos analizar los datos.</div>
</div>
<div></div>
<p>
<div><a href="http://axdir.files.wordpress.com/2012/02/3.png"><img class="aligncenter size-medium wp-image-719" title="3" src="http://axdir.files.wordpress.com/2012/02/3.png?w=300&h=246" alt="" width="300" height="246" /></a></div>
<div></div>
<p>
<div>Por lo que vemos, queda demostrado que a pesar de todas las noticias que vemos diariamente, relacionadas sobre el robo de información, hacking y demás, no es suficiente ni mucho menos. Todavía hay gente que tras comprar o contratar unos sistemas de almacenamiento, <strong>los conectan directamente sin tan siquiera modificar la contraseña que viene por defecto</strong>.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axdir.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axdir.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axdir.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axdir.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axdir.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axdir.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axdir.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axdir.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axdir.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axdir.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axdir.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axdir.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axdir.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axdir.wordpress.com/716/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarbv.com&#038;blog=13450143&#038;post=716&#038;subd=axdir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarbv.com/2012/02/13/unas-nas-algo-peligrosas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aa7df355390a00b4e4a05a23237659b3?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">omarbvilla</media:title>
		</media:content>

		<media:content url="http://axdir.files.wordpress.com/2012/02/1.png?w=300" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://axdir.files.wordpress.com/2012/02/2.png?w=284" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://axdir.files.wordpress.com/2012/02/3.png?w=300" medium="image">
			<media:title type="html">3</media:title>
		</media:content>
	</item>
		<item>
		<title>Miénteme</title>
		<link>http://omarbv.com/2012/01/24/mienteme/</link>
		<comments>http://omarbv.com/2012/01/24/mienteme/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 17:01:46 +0000</pubDate>
		<dc:creator>Omar B. Villa</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Offtopic]]></category>
		<category><![CDATA[Seguridad]]></category>
		<category><![CDATA[comportamientos]]></category>
		<category><![CDATA[ingenieria social]]></category>
		<category><![CDATA[lie to me]]></category>
		<category><![CDATA[mienteme]]></category>

		<guid isPermaLink="false">http://omarbv.com/?p=707</guid>
		<description><![CDATA[Lie to me (Mienteme), es una serie que están emitiendo desde el año 2009. Me parece muy interesante y divertida, ya que da un punto de vista muy a menudo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarbv.com&#038;blog=13450143&#038;post=707&#038;subd=axdir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.imdb.com/title/tt1235099/" target="_blank">Lie to me (Mienteme)</a>, es una serie que están emitiendo desde el año 2009. Me parece muy interesante y divertida, ya que da un punto de vista muy a menudo olvidado &#8220;a pie de calle&#8221;, sobre las reacciones y comportamientos naturales de las personas.</p>
<ul>
<li>¿Os planteais emplear esto para hacer Ingeniería Social?</li>
</ul>
<ul>
<li>¿Qué ocurre si somos capaces de controlar todos nuestros gestos?</li>
</ul>
<ul>
<li>¿Y si llevamos a cabo una conversación, mdtificando el rumbo de la misma según los gestos que nos transmite nuestro interlocutor?</li>
</ul>
<p><a href="http://axdir.files.wordpress.com/2012/01/lie.jpg"><img class="aligncenter size-full wp-image-708" style="border:0 none;" title="lie" src="http://axdir.files.wordpress.com/2012/01/lie.jpg?w=470" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axdir.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axdir.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axdir.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axdir.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axdir.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axdir.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axdir.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axdir.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axdir.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axdir.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axdir.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axdir.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axdir.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axdir.wordpress.com/707/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarbv.com&#038;blog=13450143&#038;post=707&#038;subd=axdir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarbv.com/2012/01/24/mienteme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aa7df355390a00b4e4a05a23237659b3?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">omarbvilla</media:title>
		</media:content>

		<media:content url="http://axdir.files.wordpress.com/2012/01/lie.jpg" medium="image">
			<media:title type="html">lie</media:title>
		</media:content>
	</item>
		<item>
		<title>LAN en Peggy Sue&#8217;s</title>
		<link>http://omarbv.com/2011/12/20/lan-en-peggy-sues/</link>
		<comments>http://omarbv.com/2011/12/20/lan-en-peggy-sues/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 21:47:55 +0000</pubDate>
		<dc:creator>Omar B. Villa</dc:creator>
				<category><![CDATA[Offtopic]]></category>
		<category><![CDATA[conexión]]></category>
		<category><![CDATA[Lan]]></category>
		<category><![CDATA[rj45]]></category>

		<guid isPermaLink="false">https://axdir.wordpress.com/?p=649</guid>
		<description><![CDATA[Las famosas gramolas &#8220;restauradas&#8221; de las hamburgueserias Peggy Sue´s a veces dejan ver la conexión RJ45 que tienen&#8230; Estaría divertido poner una canción &#8220;fuera de carta&#8221;.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarbv.com&#038;blog=13450143&#038;post=649&#038;subd=axdir&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Las famosas gramolas &#8220;restauradas&#8221; de las hamburgueserias Peggy Sue´s a veces dejan ver la conexión RJ45 que tienen&#8230;</p>
<p>Estaría divertido poner una canción &#8220;fuera de carta&#8221;.</p>
<p style="text-align:center;"><a href="http://axdir.files.wordpress.com/2011/12/20111221-135316.jpg"><img class="size-full aligncenter" style="border:0 none;" src="http://axdir.files.wordpress.com/2011/12/20111221-135316.jpg?w=470" alt="20111221-135316.jpg"   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/axdir.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/axdir.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/axdir.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/axdir.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/axdir.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/axdir.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/axdir.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/axdir.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/axdir.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/axdir.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/axdir.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/axdir.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/axdir.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/axdir.wordpress.com/649/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=omarbv.com&#038;blog=13450143&#038;post=649&#038;subd=axdir&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://omarbv.com/2011/12/20/lan-en-peggy-sues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aa7df355390a00b4e4a05a23237659b3?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">omarbvilla</media:title>
		</media:content>

		<media:content url="http://axdir.files.wordpress.com/2011/12/20111221-135316.jpg" medium="image">
			<media:title type="html">20111221-135316.jpg</media:title>
		</media:content>
	</item>
	</channel>
</rss>
