<?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>Buanzolandia &#187; General</title>
	<atom:link href="http://blogs.buanzo.com.ar/category/general/feed" rel="self" type="application/rss+xml" />
	<link>http://blogs.buanzo.com.ar</link>
	<description>El blog de Buanzo y sus Secuaces</description>
	<lastBuildDate>Thu, 23 Jun 2011 14:58:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Proactive protection enhancements for fail2ban &#8211; Part 1</title>
		<link>http://blogs.buanzo.com.ar/2011/06/proactive-protection-enhancements-for-fail2ban-part-1.html</link>
		<comments>http://blogs.buanzo.com.ar/2011/06/proactive-protection-enhancements-for-fail2ban-part-1.html#comments</comments>
		<pubDate>Thu, 23 Jun 2011 14:56:35 +0000</pubDate>
		<dc:creator>Buanzo</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[fail2ban]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://blogs.buanzo.com.ar/?p=5567</guid>
		<description><![CDATA[Introducing fail2ban, and first steps towards sharing attacker&#8217;s IP by Arturo &#8216;Buanzo&#8217; Busleiman Fail2ban is a lovely python-based tool written by Cyril Jaquier that monitors different logfiles for lines matching regular expressions.  From those lines it extracts the attackers IP address, and runs a command passing that as a parameter. In more simple terms, it [...]]]></description>
			<content:encoded><![CDATA[<p><strong> Introducing fail2ban, and first steps towards sharing attacker&#8217;s IP</strong><br />
by Arturo &#8216;Buanzo&#8217; Busleiman</p>
<p>Fail2ban is a lovely python-based tool written by Cyril Jaquier that<br />
monitors different logfiles for lines matching regular expressions.  From<br />
those lines it extracts the attackers IP address, and runs a command passing<br />
that as a parameter.</p>
<p>In more simple terms, it detects when your SSH (or other service) is<br />
&#8220;attacked&#8221;, and then proceeds to firewall the attacker.</p>
<p>We could start discussing about false positives here, specially for UDP<br />
based services or log-injection vulnerable daemons, but I&#8217;d like to focus on<br />
a special usage scenario: what if I manage multiple servers? Should I wait<br />
for the same attacker to target each of my fail2ban-monitored servers?</p>
<p>Maybe I could share the attacker&#8217;s IP, collected from a brute-force attempt<br />
to SSH on server1, with the rest of the servers I manage. Or with my<br />
friends&#8217; servers. Or maybe with everybody through twitter? Well, maybe<br />
everybody is too much and possibly a bad idea if fail2ban is detecting false<br />
positives, or spoofed IP addresses. But it could also help out if you manage<br />
your own small or medium sized group of servers.</p>
<p>If you think this might interest you, then keep reading.</p>
<p>Architecturally, fail2ban is one main process (the fail2ban-server). It<br />
needs a so-called &#8220;jail&#8221; definition (a group of filter+action+logfile<br />
configuration items), a filter definition (regular expressions for a certain<br />
kind of logfile, such as sshd or apache error log), and an action<br />
definition (what to do when a filter detects an attacker, in that certain<br />
jail).</p>
<p>This is what the standard ssh jail looks like:</p>
<p>[ssh]<br />
enabled = true<br />
port    = ssh<br />
filter  = sshd<br />
logpath  = /var/log/daemon.log<br />
maxretry = 3</p>
<p>As you can see, it defines if the jail is enabled or not (active or not),<br />
what destionation port[s] it will block for the attacker, what filter<br />
(regex) is to be used to determine (or ignore!) attackers, and which<br />
logfile[s] it will monitor. Also, the number of times the same attacker must<br />
be detected in a pre-defined time period for the action to be executed.</p>
<p>What does that mean? Easy: If, by any reason, you or another user mistypes<br />
the password and is trying to access the server from a non-whitelisted IP<br />
address, instead of trying more than 3 times in a row, it should wait a<br />
couple minutes and try again. Having a detection threshold helps avoiding<br />
false positives.</p>
<p>Fail2ban has the ability to ignore certain IP addresses or netblocks, or<br />
have different actions for each jail. This level of flexibility is what<br />
interest us for the purpose of this article.</p>
<p>Standard fail2ban configuration contains 20+ actions, spanning<br />
iptables, ipfw, shorewall, etc. More than 30 filter definitions, including<br />
regexes for apache, sshd, php-url-fopen, proftpd, pam and more.</p>
<p>For a detailed fail2ban-configuration document, I recommend you just<br />
download the package and read its filters, actions and jails. It&#8217;s very self<br />
explanatory. A knowledge of regular expressions will come in handy,<br />
especially if your POSIX-compatible system has differences in the logfile<br />
format for the services you&#8217;re trying to protect.</p>
<p>* How to share the attacker&#8217;s details</p>
<p>Lets imagine we own a small web-hosting company, providing ssh access to our<br />
limited number of customers. Or a big web app load-balanced and with<br />
failover protection spanning 10 geographically-distant dedicated servers.</p>
<p>Also, let&#8217;s assume we have a standard ssh jail configured to run iptables,<br />
matching the sshd filter.</p>
<p>If server1&#8242;s fail2ban detects, for instance, that an attacker with IP address<br />
203.0.113.20 is attempting to brute-force our ssh service<br />
(note: that address is part of the TEST-NET-3 netblock, allocated by<br />
RFC 5737 for usage in documentation), then the attacker will be firewalled<br />
using iptables.</p>
<p>But only on server1.</p>
<p>Should I manually filter the attacker on the other servers? Well, it&#8217;ll take<br />
a long time. Or I could write a script to do it. Or maybe I could try and<br />
work with what fail2ban gives me: lots of flexibility.</p>
<p>The first time I started thinking about this &#8220;fail2ban-cluster&#8221; tool, I<br />
thought I should design a new &#8220;action&#8221;, one that would not only run iptables<br />
but also notify the other servers.</p>
<p>But that&#8217;d be a waste of resources, not to mention TIME.</p>
<p>So I decided to use a different approach. Fail2ban has a lovely log file,<br />
that tells us when a certain attacker is banned, and then un-banned after a<br />
configurable amount of time.</p>
<p>Maybe I could write a filter to read fail2ban&#8217;s log itself, with an action<br />
to spread that IP address, possibly using lynx, or curl, to as many other<br />
servers as I wanted, by means of some authenticated http service. And I&#8217;d<br />
run that on top of my inter-server virtual private network, for good<br />
measure.</p>
<p>This is how fail2ban&#8217;s log file looks like:</p>
<p>2011-05-01 15:23:56,380 fail2ban.actions: WARNING [ssh] Ban 203.0.113.20<br />
2011-05-01 15:38:57,641 fail2ban.actions: WARNING [ssh] Unban 203.0.113.20</p>
<p>As you can see, we have entries for Ban and for Unban events. But I do not<br />
want to notify unban events, because different servers could have different<br />
how-long-to-ban-the-attacker policies. I just want to notify BANs.</p>
<p>So maybe a simple regular expression like: &#8216;\ Ban\ &lt;HOST&gt;$&#8217; would take care<br />
of detecting BANs only. And it does. Fail2ban provides the fail2ban-regex<br />
tool, to test regular expressions against a sample log line or file.</p>
<p>I ran it like this: fail2ban-regex /var/log/fail2ban.log &#8216;\ Ban\ &lt;HOST&gt;$&#8217;</p>
<p>It yielded the expected results. The special &lt;HOST&gt; tag in the regex is what<br />
tells fail2ban how to extract the IP address from there. Currently, it<br />
supports IPv4 but the fail2ban team and contributors are working on IPv6<br />
support as I write.</p>
<p>So, now I can write a fail2ban filter configuration file, such as this:</p>
<p>*** contents of /etc/fail2ban/filter.d/f2bcluster.conf ***</p>
<p>[Definition]<br />
failregex = \ Ban\ &lt;HOST&gt;$<br />
ignoreregex =</p>
<p>*** end ***</p>
<p>But we have no action. We can&#8217;t write a jail definition without an action!</p>
<p>An action file contains definitions of commands to run: once at the start of<br />
fail2ban, once at the stop, once before each ban event, and the ban action<br />
itself, and the unban one. It also includes a default name, port and<br />
protocol definition, in case the jail config file does not define them.</p>
<p>Inside each action definition you can use special tags, similar to the<br />
&lt;HOST&gt; one used in filters. For actions, we have &lt;ip&gt; (holds the attacker&#8217;s<br />
IP obtained from &lt;HOST&gt;), &lt;name&gt; and &lt;protocol&gt; (used for some iptables<br />
parameters).</p>
<p>When the commands are run, each of those special tags will be replaced by<br />
the values we expect.</p>
<p>As an exercise to the reader, or you can wait for the next article in this<br />
series, I&#8217;d like you to write an actioban definition, with these hints:</p>
<p>a) the actionban should be a simple bash script<br />
b) the bash script will use lynx/curl to send an authenticated http request<br />
c) the request will go the server2, server3, etc. As many times as required.<br />
d) the request will be received by a simple python-based (or php&#8230;) script<br />
that REQUIRES http authentication. It will receive the attacker&#8217;s IP from<br />
the QUERY STRING.<br />
e) The http python/php/whatever script will NOT run iptables, but write to a<br />
log file.</p>
<p>As you probably guess, the log file will be monitored by that server&#8217;s own<br />
fail2ban instance, by means of a more classic filter definition.</p>
<p>And remember: security is a state of mind.</p>
<p><strong>About me</strong></p>
<p>I&#8217;ve been using GNU/Linux non-stop since September 1995, when I<br />
was 13 years old. Currently working in the IT security area as a consultant,<br />
sysadmin and forensics specialist. I&#8217;m an OWASP Project Leader (check out<br />
Enigform and mod_openpgp for Apache). I play the guitar, and currently<br />
experiencing with electronic music and livecoding with fluxus. I&#8217;m a geek.</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblogs.buanzo.com.ar%2F2011%2F06%2Fproactive-protection-enhancements-for-fail2ban-part-1.html&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://blogs.buanzo.com.ar/2009/04/fail2ban-patch-ban-ip-address-manually.html" rel="bookmark" class="wherego_title">fail2ban patch: ban IP address manually</a></li><li><a href="http://blogs.buanzo.com.ar/2008/06/anulando-la-inyeccion-de-rst-en-bittorrent.html" rel="bookmark" class="wherego_title">Anulando la inyeccion de RST en Bittorrent</a></li><li><a href="http://blogs.buanzo.com.ar/2009/08/im-now-a-fail2ban-developer-d.html" rel="bookmark" class="wherego_title">I&#8217;m now a fail2ban developer :D</a></li><li><a href="http://blogs.buanzo.com.ar/2009/04/fail2ban-filter-for-php-injection-attacks.html" rel="bookmark" class="wherego_title">Fail2ban filter for PHP Injection attacks</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/where-did-they-go-from-here/">Where did they go from here?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blogs.buanzo.com.ar/2011/06/proactive-protection-enhancements-for-fail2ban-part-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Injection&#8230;</title>
		<link>http://blogs.buanzo.com.ar/2011/05/sql-injection.html</link>
		<comments>http://blogs.buanzo.com.ar/2011/05/sql-injection.html#comments</comments>
		<pubDate>Tue, 31 May 2011 16:25:58 +0000</pubDate>
		<dc:creator>Buanzo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.buanzo.com.ar/?p=5564</guid>
		<description><![CDATA[Es un tema que afecta a la gran mayoría de los sitios web del mundo. Suena exagerado decirlo así, pero si lo analizamos desde la perspectiva de que es un problema que muchas veces los programadores resuelven únicamente donde/cuando han sido atacados, y en el futuro vuelven a escribir código inseguro, tal vez entonces no [...]]]></description>
			<content:encoded><![CDATA[<p>Es un tema que afecta a la gran mayoría de los sitios web del mundo. Suena exagerado decirlo así, pero si lo analizamos desde la perspectiva de que es un problema que muchas veces los programadores resuelven únicamente donde/cuando han sido atacados, y en el futuro vuelven a escribir código inseguro, tal vez entonces no suene tan descabellado.</p>
<p>Mucha gente escucha &#8220;inyección sql&#8221; y piensan que es un vector de ataque que permite únicamente inyectar sentencias SQL con el objeto de modificar la información de una base de datos.</p>
<p>Lo cual es verdad.</p>
<p>El problema es que la inyección sql, y dependiendo del sistema de base de datos utilizado por el backend del aplicativo web, permite incluso la ejecución de programas en el servidor donde se encuentra la base de datos a la cual se accede, indirectamente, vía web.</p>
<p>La principal solución es sencilla: desconfiar del usuario. O mejor aún, SABER que el aspecto de un sitio web, sus formularios, su tecnología AJAX, en fin, el diseño del sitio web no limitan de ninguna manera lo que el atacante puede enviar al servidor web.</p>
<p>¿Qué quiero decir con eso? Muchísimos diseñadores web incorporan algún tipo de validación de datos, pero si esta validación ocurre únicamente vía JavaScript en el NAVEGADOR del usuario, dicha validación para un atacante de poco conocimiento es sinceramente fácil de evitar.</p>
<p>Por ejemplo, filtrar un campo numérico para que solo admita caracteres del 0 al 9 utilizando únicamente JavaScript, pasa a ser únicamente algo &#8220;funcional&#8221; para el verdadero usuario, y una inexistente limitación para el atacante. Con instalar la extensión Tamper Data para Mozilla Firefox, al momento de hacer clic en &#8220;enviar&#8221; a dicho formulario, podemos modificar a nuestro antojo casi cualquier aspecto de la consulta HTTP &#8220;fabricada&#8221; por el formulario. Y poner una comilla simple y ver que resultados no esperados (por ejemplo, un mensaje de error del motor de base de datos) surgen de dicha manipulación.</p>
<p>Si la validación de datos ocurriera TAMBIÉN del lado del aplicativo web, en el nivel que sea, dicha técnica no sería aplicable.</p>
<p>Referencias:<br />
Puede encontrar más información:<br />
<a href=" https://www.owasp.org/index.php/Guide_to_SQL_Injection"></p>
<p>https://www.owasp.org/index.php/Guide_to_SQL_Injection</a></p>
<p><a href="https://www.owasp.org/index.php/Reviewing_Code_for_SQL_Injection">https://www.owasp.org/index.php/Reviewing_Code_for_SQL_Injection</a><br />
<a href="https://www.owasp.org/index.php/Testing_for_SQL_Injection_(OWASP-DV-005)﻿">https://www.owasp.org/index.php/Testing_for_SQL_Injection_(OWASP-DV-005)﻿</a></p>
<p>&nbsp;</p>
<p>Y ahora, para divertirse un poco&#8230; piensen que abusar parametros, cookies, cualquier dato que pueda de una manera u otra ser controlado por un navegante es potencialmente un punto de inyeccion, no solo de SQLi, sino para XSS, RFI, etc.</p>
<p>&nbsp;</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblogs.buanzo.com.ar%2F2011%2F05%2Fsql-injection.html&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://blogs.buanzo.com.ar/2011/04/la-seguridad-en-el-estado-nacional.html" rel="bookmark" class="wherego_title">La seguridad en el estado nacional</a></li><li><a href="http://blogs.buanzo.com.ar/2009/04/fail2ban-filter-for-php-injection-attacks.html" rel="bookmark" class="wherego_title">Fail2ban filter for PHP Injection attacks</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/where-did-they-go-from-here/">Where did they go from here?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blogs.buanzo.com.ar/2011/05/sql-injection.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buscamos una Nieta</title>
		<link>http://blogs.buanzo.com.ar/2011/05/buscamos-una-nieta.html</link>
		<comments>http://blogs.buanzo.com.ar/2011/05/buscamos-una-nieta.html#comments</comments>
		<pubDate>Fri, 27 May 2011 15:35:43 +0000</pubDate>
		<dc:creator>Buanzo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.buanzo.com.ar/?p=5562</guid>
		<description><![CDATA[Pasen por este post de taringa. Si pueden votenlo, asi logra ser sticky. &#160;]]></description>
			<content:encoded><![CDATA[<p>Pasen <a href="http://www.taringa.net/posts/solidaridad/10816557/Buscamos-una-Nieta_-Buscamos-a-Clara-Anahi_.html">por este post</a> de taringa. Si pueden votenlo, asi logra ser sticky.</p>
<p>&nbsp;</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblogs.buanzo.com.ar%2F2011%2F05%2Fbuscamos-una-nieta.html&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div id="wherego_related"> </div>]]></content:encoded>
			<wfw:commentRss>http://blogs.buanzo.com.ar/2011/05/buscamos-una-nieta.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Busqueda para SYMANTEC &#8211; Gente con cerebro en uso unicamente</title>
		<link>http://blogs.buanzo.com.ar/2011/05/busqueda-para-symantec-gente-con-cerebro-en-uso-unicamente.html</link>
		<comments>http://blogs.buanzo.com.ar/2011/05/busqueda-para-symantec-gente-con-cerebro-en-uso-unicamente.html#comments</comments>
		<pubDate>Sun, 22 May 2011 19:11:28 +0000</pubDate>
		<dc:creator>Buanzo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.buanzo.com.ar/?p=5556</guid>
		<description><![CDATA[Busco gente que se adecue a estos perfiles. Escribanme con CV en ingles a buanzo@buanzo.com.ar. Solo gente que se la banque. Quienes me manden el CV y no cumplan los requisitos solicitados, seran ignorados y formaran parte de anecdotas entre amigos. (obviamente, aca me refiero a la gente que manda el CV sin prestarle ni [...]]]></description>
			<content:encoded><![CDATA[<p>Busco gente que se adecue a estos perfiles. Escribanme con CV en ingles a buanzo@buanzo.com.ar. Solo gente que se la banque. Quienes me manden el CV y no cumplan los requisitos solicitados, seran ignorados y formaran parte de anecdotas entre amigos. (obviamente, aca me refiero a la gente que manda el CV sin prestarle ni un 1% de atencion al pedido&#8230; he pedido sysadmins y me han caido recepcionistas, por ejemplo).</p>
<p>-    Data Loss Prevention Tech Support Engineer (Windows Server Administration, Networking, SQL, Active Directory, Linux)<br />
-    NetBackup Tech Support Engineer (Windows Server Administration, backup software)<br />
-    PGP Tech Support Engineer (Windows Server Administration, Linux, Microsoft Exchange Server, DNS &amp; Networking, SQL, Encryption is a Plus)<br />
-    Guardian Edge Tech Support Engineer  (Windows Server Administration, Microsoft Exchange Server, DNS &amp; Networking, SQL, Encryption is a Plus)<br />
-    Enterprise Vault Tech Support Engineer (Microsoft Exchange Server, SQL, Windows Server Administration)</p>
<p>Beneficios:<br />
- Swiss Medical PREMIUM (plan más alto)<br />
- A partir del 6to mes, facultad paga (carreras de grado/postgrado, incluye libros)<br />
- OPCIONAL: Plan de acciones (15% rebajadas).</p>
<p>- Combi (ida y vuelta)<br />
- Horario flexible<br />
- Certificaciones pagas (Microsoft, CISCO, IBM, VMWare, Linux, etc)</p>
<p>Requisitos:</p>
<p>- MUY buen ingles (excluyente)<br />
- Conocimientos técnicos<br />
- CV en ingles (excluyente)</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblogs.buanzo.com.ar%2F2011%2F05%2Fbusqueda-para-symantec-gente-con-cerebro-en-uso-unicamente.html&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://blogs.buanzo.com.ar/2009/03/mail-server-protection-service.html" rel="bookmark" class="wherego_title">Mail Server Protection Service</a></li><li><a href="http://blogs.buanzo.com.ar/2007/05/primer-virus-openoffice-multiplataforma.html" rel="bookmark" class="wherego_title">Primer Virus OpenOffice Multiplataforma</a></li><li><a href="http://blogs.buanzo.com.ar/2006/08/outlook-replacement-for-windows-and-exchange.html" rel="bookmark" class="wherego_title">Outlook Replacement for Windows and Exchange</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/where-did-they-go-from-here/">Where did they go from here?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blogs.buanzo.com.ar/2011/05/busqueda-para-symantec-gente-con-cerebro-en-uso-unicamente.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>interpretacion rapida: UK cookies para sitios non-EU</title>
		<link>http://blogs.buanzo.com.ar/2011/05/interpretacion-rapida-uk-cookies-para-sitios-non-eu.html</link>
		<comments>http://blogs.buanzo.com.ar/2011/05/interpretacion-rapida-uk-cookies-para-sitios-non-eu.html#comments</comments>
		<pubDate>Tue, 10 May 2011 14:21:32 +0000</pubDate>
		<dc:creator>Buanzo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.buanzo.com.ar/?p=5542</guid>
		<description><![CDATA[* dicen que los de para mantenerse logeados y de carritos son validos y que no requieren consentimiento porque requieren que el usuario haya hecho click en botones&#8230; aca la palabra magica es que los cookies resultado de una accion del usuario estan todo bien.. * lo jodido: cookies de seguimiento, publicidad y terceras partes. [...]]]></description>
			<content:encoded><![CDATA[<p>* dicen que los de para mantenerse logeados y de carritos son validos y que no requieren consentimiento porque requieren que el usuario haya hecho click en botones&#8230; aca la palabra magica es que los cookies resultado de una accion del usuario estan todo bien..</p>
<p>* lo jodido: cookies de seguimiento, publicidad y terceras partes.</p>
<p>(gracias Ewarik por el rapido analisis!)</p>
<p>LINKS:<br />
<a href="http://www.ico.gov.uk/~/media/documents/library/Privacy_and_electronic/Practical_application/advice_on_the_new_cookies_regulations.pdf">http://www.ico.gov.uk/~/media/documents/library/Privacy_and_electronic/Practical_application/advice_on_the_new_cookies_regulations.pdf</a></p>
<p><a href="http://blog.statcounter.com/2011/05/the-cookie-directive/">http://blog.statcounter.com/2011/05/the-cookie-directive/</a></p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblogs.buanzo.com.ar%2F2011%2F05%2Finterpretacion-rapida-uk-cookies-para-sitios-non-eu.html&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://blogs.buanzo.com.ar/2007/03/towebs-ex-hackers-y-la-con.html" rel="bookmark" class="wherego_title">Towebs, ex hackers y la con&#8230;</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/where-did-they-go-from-here/">Where did they go from here?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blogs.buanzo.com.ar/2011/05/interpretacion-rapida-uk-cookies-para-sitios-non-eu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>La seguridad en el estado nacional</title>
		<link>http://blogs.buanzo.com.ar/2011/04/la-seguridad-en-el-estado-nacional.html</link>
		<comments>http://blogs.buanzo.com.ar/2011/04/la-seguridad-en-el-estado-nacional.html#comments</comments>
		<pubDate>Fri, 29 Apr 2011 15:05:25 +0000</pubDate>
		<dc:creator>Buanzo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.buanzo.com.ar/?p=5540</guid>
		<description><![CDATA[Estos ultimos dias un pibe empezo a tirar &#8220;advisories&#8221; a las listas de seguridad, contando de varios sql injection en diversos sitios .gov.ar En esos mails, el chabon dice que le aviso a la ONTI (no se a que mail habra escrito, pero nadie lo conoce) y al arcert (area donde yo trabajo, TAMPOCO LLEGO [...]]]></description>
			<content:encoded><![CDATA[<p>Estos ultimos dias un pibe empezo a tirar &#8220;advisories&#8221; a las listas de seguridad, contando de varios sql injection en diversos sitios .gov.ar</p>
<p>En esos mails, el chabon dice que le aviso a la ONTI (no se a que mail habra escrito, pero nadie lo conoce) y al arcert (area donde yo trabajo, TAMPOCO LLEGO NINGUN MAIL).</p>
<p>Y despues salta alguien que no se quien es, en twitter (https://twitter.com/ochoigualaD/status/63978046650191873) diciendo: &#8220;injec7or hell esta poniendo en riesgo la infraestructura nacional! Donde esta el arCert? Y la ONTI? Y @buanzo? Y la moto?&#8221; &#8211; Mis respuestas pueden verlas en twitter.com/buanzo</p>
<p>La posta es que el arcert no tiene por que responder ningun mail (cosa no aplicable en este caso, ya que NI SIQUIERA recibimos nada del tal injec7or&#8230;)</p>
<p>Hay una politica MUY BIEN redactada en ArCERT sobre que procedimiento seguir en caso de advisories que son dados a conocer al publico general, y eso, les aseguro, esta en proceso. Uno de los items de dicha politica es contactarse con el que envio la data a las listas publicas, el tal anonymous coward injec7or.</p>
<p>En 1996 yo encontre una seria vulnerabilidad de ejecucion de codigo remota en el sitio de la presidencia. Y le mande un mail al admin, CON MIS DATOS REALES. Ese admin el dia de hoy todavia es mi amigo, y todavia trabaja en el estado.</p>
<p>Si el flaco hubiera mandado los mails a ONTI y arcert como el dice, no hubiera tenido necesidad de usar un pseudonimo.</p>
<p>Saludos.</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblogs.buanzo.com.ar%2F2011%2F04%2Fla-seguridad-en-el-estado-nacional.html&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://blogs.buanzo.com.ar/2007/12/detalles-spam-abelyncomar.html" rel="bookmark" class="wherego_title">Detalles SPAM Abelyn.com.ar</a></li><li><a href="http://blogs.buanzo.com.ar/2010/01/sobre-la-diplomatura-en-seguridad-de-ucatec-bolivia-cochabamba.html" rel="bookmark" class="wherego_title">Sobre la Diplomatura en Seguridad de UCATEC Bolivia Cochabamba</a></li><li><a href="http://blogs.buanzo.com.ar/2006/06/buanzocomar-hosteado-en-google-mail.html" rel="bookmark" class="wherego_title">buanzo.com.ar hosteado en Google Mail!</a></li><li><a href="http://blogs.buanzo.com.ar/2005/11/estoy-harto-de-nic-argentina.html" rel="bookmark" class="wherego_title">Estoy HARTO de Nic Argentina</a></li><li><a href="http://blogs.buanzo.com.ar/2006/06/la-side-esta-capturando-todo.html" rel="bookmark" class="wherego_title">La SIDE esta capturando todo</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/where-did-they-go-from-here/">Where did they go from here?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blogs.buanzo.com.ar/2011/04/la-seguridad-en-el-estado-nacional.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No compren en Army Technologies SA (armytech.com.ar)</title>
		<link>http://blogs.buanzo.com.ar/2011/04/no-compren-en-army-technologies-sa-armytech-com-ar.html</link>
		<comments>http://blogs.buanzo.com.ar/2011/04/no-compren-en-army-technologies-sa-armytech-com-ar.html#comments</comments>
		<pubDate>Mon, 25 Apr 2011 15:24:56 +0000</pubDate>
		<dc:creator>Buanzo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.buanzo.com.ar/?p=5534</guid>
		<description><![CDATA[El 12 de Abril por error les envie un dinero por paypal. Inmediatamente, siendo yo cliente, los llame por telefono para pedirles que cancelen la transaccion asi me devuelven el dinero. Me dicen que no tienen acceso a la cuenta. Hablo con paypal, y me dicen que la cuenta esta activa y sin problemas. La [...]]]></description>
			<content:encoded><![CDATA[<p>El 12 de Abril por error les envie un dinero por paypal. Inmediatamente, siendo yo cliente, los llame por telefono para pedirles que cancelen la transaccion asi me devuelven el dinero. Me dicen que no tienen acceso a la cuenta. Hablo con paypal, y me dicen que la cuenta esta activa y sin problemas. La gente de armytech, preferiria no dar nombres personales, ahora me dice que tienen acceso a la cuenta pero que esta &#8220;en rojo&#8221;&#8230;.. y que es problema mio por haberles enviado dinero por error.</p>
<p>Inicio el reclamo en paypal, se que me van a ayudar, pero sepanlo: ARMYTECH = garcas</p>
<p><strong>ACTUALIZACION:</strong> paypal me devolvio la plata, pero la gente de armytech mas que ofenderse no hizo nada. pesima comunicacion. ojo, esto fue siempre asi, incluso cuando gaste plata comprandoles a ellos. por algo tienen tanto exceso de seguridad en el local que tienen.</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblogs.buanzo.com.ar%2F2011%2F04%2Fno-compren-en-army-technologies-sa-armytech-com-ar.html&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://blogs.buanzo.com.ar/2010/03/xoom-com-ya-no-acepta-paypal.html" rel="bookmark" class="wherego_title">Xoom.com ya no acepta paypal!</a></li><li><a href="http://blogs.buanzo.com.ar/2010/01/sobre-la-diplomatura-en-seguridad-de-ucatec-bolivia-cochabamba.html" rel="bookmark" class="wherego_title">Sobre la Diplomatura en Seguridad de UCATEC Bolivia Cochabamba</a></li><li><a href="http://blogs.buanzo.com.ar/2006/09/proximas-charlas-mias.html" rel="bookmark" class="wherego_title">Proximas Charlas Mias</a></li><li><a href="http://blogs.buanzo.com.ar/2005/09/buanzo-y-microsoft.html" rel="bookmark" class="wherego_title">Buanzo y Microsoft</a></li><li><a href="http://blogs.buanzo.com.ar/2009/11/si-siguen-cansados-del-club-nextel.html" rel="bookmark" class="wherego_title">Si siguen cansados del Club Nextel&#8230;</a></li><li><a href="http://blogs.buanzo.com.ar/2007/12/novedades-paypal-visa-y-argentina.html" rel="bookmark" class="wherego_title">Novedades Paypal, VISA y Argentina</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/where-did-they-go-from-here/">Where did they go from here?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blogs.buanzo.com.ar/2011/04/no-compren-en-army-technologies-sa-armytech-com-ar.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AsadoresDelPlata.com foro de todo lo que se haga a la parrilla</title>
		<link>http://blogs.buanzo.com.ar/2011/04/asadoresdelplata-com-foro-de-todo-lo-que-se-haga-a-la-parrill.html</link>
		<comments>http://blogs.buanzo.com.ar/2011/04/asadoresdelplata-com-foro-de-todo-lo-que-se-haga-a-la-parrill.html#comments</comments>
		<pubDate>Thu, 14 Apr 2011 01:59:30 +0000</pubDate>
		<dc:creator>Buanzo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.buanzo.com.ar/?p=5536</guid>
		<description><![CDATA[Los invito a visitar el www.asadoresdelplata.com &#8211; Es un foro que creamos con Juan Manuel Ferreyra (autor del libro de GIMP publicado por packtpub http://www.amazon.com/GIMP-cookbook-Juan-Manuel-Ferreyra/dp/1849512027 ). La idea es un espacio donde compartir tips, precios, conocer gente, organizar asados Vegetarianos incluidos! Dale, pasen, copense &#160;]]></description>
			<content:encoded><![CDATA[<p>Los invito a visitar el www.asadoresdelplata.com &#8211; Es un foro que creamos con Juan Manuel Ferreyra (autor del libro de GIMP publicado por packtpub http://www.amazon.com/GIMP-cookbook-Juan-Manuel-Ferreyra/dp/1849512027 ).</p>
<p>La idea es un espacio donde compartir tips, precios, conocer gente, organizar asados <img src='http://blogs.buanzo.com.ar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Vegetarianos incluidos!</p>
<p>Dale, pasen, copense <img src='http://blogs.buanzo.com.ar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblogs.buanzo.com.ar%2F2011%2F04%2Fasadoresdelplata-com-foro-de-todo-lo-que-se-haga-a-la-parrill.html&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div id="wherego_related"> </div>]]></content:encoded>
			<wfw:commentRss>http://blogs.buanzo.com.ar/2011/04/asadoresdelplata-com-foro-de-todo-lo-que-se-haga-a-la-parrill.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remixes HERMOSOS de Jorge Drexler por Bianco y Benedetti</title>
		<link>http://blogs.buanzo.com.ar/2011/04/remixes-hermosos-de-jorge-drexler-por-bianco-y-benedetti.html</link>
		<comments>http://blogs.buanzo.com.ar/2011/04/remixes-hermosos-de-jorge-drexler-por-bianco-y-benedetti.html#comments</comments>
		<pubDate>Thu, 07 Apr 2011 19:09:54 +0000</pubDate>
		<dc:creator>Buanzo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.buanzo.com.ar/?p=5533</guid>
		<description><![CDATA[Queria compartir con los lectores de mi blog un hermoso video, que esta disponible tambien en 3D, producido por Dilek Records, el label que mi viejo y querido amigo DJ Franco Bianco junto con su hermosisima Raffaella Bec han producido. Les dejo el texto del email que mando a sus amigos y familiares, espero lo [...]]]></description>
			<content:encoded><![CDATA[<p>Queria compartir con los lectores de mi blog un hermoso video, que esta disponible tambien en 3D, producido por Dilek Records, el label que mi viejo y querido amigo DJ Franco Bianco junto con su hermosisima Raffaella Bec han producido. Les dejo el texto del email que mando a sus amigos y familiares, espero lo disfruten:</p>
<p><em>Estimados amigos y familiares, </em></p>
<p><em>Acá  les dejo el video que filmamos en donde vivimos junto a Raffaella, para  dar lugar a un repaso sonoro de las mejores canciones del disco de  reversiones electrónicas del cantautor Jorge Drexler. Luego de 3 años y  mucho esfuerzo, amor y una sinfonía de sentimientos vertidos en ceros y  unos (en conjunto con el uruguayo Nacho Benedetti) está terminado y en  producción (física).</em></p>
<p><em>Acá  pueden escuchar partes de esas canciones mezcladas para el objetivo  (lógico y deducible) de promocionar el disco antes de su venta en  formato vinilo, cd y digital (itunes y demás!)</em></p>
<p><em><a href="http://www.youtube.com/watch?v=Deda-wGAhSQ" target="_blank">http://www.youtube.com/watch?v=Deda-wGAhSQ</a></em></p>
<p><em>Los abrazo desde una suiza con hoy 26°!</em></p>
<p><em>Besos y abrazos!</em></p>
<p><em>f.</em></p>
<p>&nbsp;</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblogs.buanzo.com.ar%2F2011%2F04%2Fremixes-hermosos-de-jorge-drexler-por-bianco-y-benedetti.html&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div id="wherego_related"> </div>]]></content:encoded>
			<wfw:commentRss>http://blogs.buanzo.com.ar/2011/04/remixes-hermosos-de-jorge-drexler-por-bianco-y-benedetti.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blaving &#8211; Red Social o base de datos biometrica de la VOZ?</title>
		<link>http://blogs.buanzo.com.ar/2011/02/blaving-red-social-o-base-de-datos-biometrica-de-la-voz.html</link>
		<comments>http://blogs.buanzo.com.ar/2011/02/blaving-red-social-o-base-de-datos-biometrica-de-la-voz.html#comments</comments>
		<pubDate>Thu, 24 Feb 2011 12:57:25 +0000</pubDate>
		<dc:creator>Buanzo</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[identidad blaving twitter]]></category>

		<guid isPermaLink="false">http://blogs.buanzo.com.ar/?p=5527</guid>
		<description><![CDATA[Blaving es una nueva red social donde se utiliza la VOZ para intercambiar mensajes al estilo twitter. Es un concepto HERMOSO, no me malinterpreten y me parece maravilloso. Pero de golpe dije: DAMN, esto va a servir para que haya robo de identidad mucho mas avanzado. O falsificacion de comunicaciones, etc. Usando ingenieria social, seguramente [...]]]></description>
			<content:encoded><![CDATA[<p>Blaving es una nueva red social donde se utiliza la VOZ para intercambiar mensajes al estilo twitter. Es un concepto HERMOSO, no me malinterpreten y me parece maravilloso.</p>
<p>Pero de golpe dije: DAMN, esto va a servir para que haya robo de identidad mucho mas avanzado. O falsificacion de comunicaciones, etc.</p>
<p>Usando ingenieria social, seguramente se pudiera lograr que una persona DIGA palabras que un abusador necesite. Incluso para inculpar a alguien.</p>
<p>Va a ser muy necesario que tengamos eso en cuenta.</p>
<p>Epero Blaving agregue algun &#8220;procesador de efectos&#8221; para la voz!</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblogs.buanzo.com.ar%2F2011%2F02%2Fblaving-red-social-o-base-de-datos-biometrica-de-la-voz.html&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div id="wherego_related"> </div>]]></content:encoded>
			<wfw:commentRss>http://blogs.buanzo.com.ar/2011/02/blaving-red-social-o-base-de-datos-biometrica-de-la-voz.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

