<?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>Cayu - Sergio Cayuqueo Pagina Personal Weblog Bitacora de vida diaria y demas &#187; seguridad</title>
	<atom:link href="http://cayu.com.ar/index.php/tag/seguridad/feed/" rel="self" type="application/rss+xml" />
	<link>http://cayu.com.ar</link>
	<description>La vida de Sergio Cayuqueo en la Web</description>
	<lastBuildDate>Wed, 01 Feb 2012 18:31:50 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Vuelve Kernel.org (parcialmente)</title>
		<link>http://cayu.com.ar/index.php/2011/10/04/vuelve-kernel-org-parcialmente/</link>
		<comments>http://cayu.com.ar/index.php/2011/10/04/vuelve-kernel-org-parcialmente/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 13:24:56 +0000</pubDate>
		<dc:creator>cayu</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[desarrolladores]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[kernel.org]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[seguridad]]></category>

		<guid isPermaLink="false">http://cayu.com.ar/?p=872</guid>
		<description><![CDATA[Después del grave problema de seguridad vuelve Kernel.org, aunque con cosas parciales, estuve bajando el código del Kernel últimamente de github, pero no es muy cómodo que digamos aca un mail de recomendación para los desarrolladores del núcleo de la lista de correo de LKML (es bueno también como recomendación para tener en cuenta para [...]]]></description>
			<content:encoded><![CDATA[<p>Después del grave problema de seguridad vuelve Kernel.org, aunque con cosas parciales, estuve bajando el código del Kernel últimamente de github, pero no es muy cómodo que digamos</p>
<p>aca un mail de recomendación para los desarrolladores del núcleo de la lista de correo de LKML (es bueno también como recomendación para tener en cuenta para todos los días en la computadora de casa)</p>
<pre>
The compromise of kernel.org and related machines has made it clear that
some developers, at least, have had their systems penetrated.  As we
seek to secure our infrastructure, it is imperative that nobody falls
victim to the belief that it cannot happen to them.  We all need to
check our systems for intrusions.  Here are some helpful hints as
proposed by a number of developers on how to check to see if your Linux
machine might be infected with something:

0. One way to be sure that your system is not compromised is to simply
   do a clean install; we can all benefit from a new start sometimes.
   Before reinstalling any systems, though, consider following the steps
   below to learn if your system has been hit or not.

1. Install the chkrootkit package from your distro repository and see if it
   reports anything.  If your distro doesn't have the chkroot package,
   download it from:

http://www.chkrootkit.org/

   Another tool is the ossec-rootcheck tool which can be found at:

http://www.ossec.net/main/rootcheck

   And another one is the rkhunter program:

http://www.rootkit.nl/projects/rootkit_hunter.html

   [Note, this tool has the tendancy to give false-positives on some
   Debian boxes, please read /usr/share/doc/rkhunter/README.Debian.gz if
   you run this on a Debian machine]

2. Verify that your package signatures match what your package manager thinks
   they are.

   To do this on a rpm-based system, run the following command:
   	rpm --verify --all
   Please read the rpm man page for information on how to interpret the
   output of this command.

   To do this on a Debian based system, run the following bash snippet:
	dpkg -l \*|while read s n rest; do if [ "$s" == "ii" ]; then echo $n;
	fi; done > ~/tmp.txt
	for f in `cat ~/tmp.txt`; do debsums -s -a $f; done
   If you have a source-based system (Gentoo, LFS, etc.) you presumably
   know what you are doing already.

3. Verify that your packages are really signed with the distro's keys.

   Here's a bash snippet that can do this on a rpm based system to
   verify that the packages are signed with any key, not necessarily
   your distro's key.  That exercise is left for the reader:

	for package in `rpm -qa`; do
		sig=`rpm -q --qf '%{SIGPGP:pgpsig}\n' $package`
		if [ -z "$sig" ] ; then
			# check if there is a GPG key, not a PGP one
			sig=`rpm -q --qf '%{SIGGPG:pgpsig}\n' $package`
			if [ -z "$sig" ] ; then
				echo "$package does not have a signature!!!"
			fi
		fi
	done
   Unfortunately there is no known way of verifying this on Debian-based
   systems.

4. To replace a package that you find suspect, uninstall it and install
   it anew from your distro.  For example, if you want to reinstall the
   ssh daemon, you would do:
	$ /etc/init.d/sshd stop
	rpm -e openssh
	zypper install openssh	# for openSUSE based systems
	yum install openssh	# for Fedora based systems

   Ideally do this from a live cdrom boot, using the 'rpm --root' option
   to point rpm at the correct location.

5. From a liveCD environment, look for traces such as:
   a. Rogue startup scripts in /etc/rc*.d and equivalent directories.
   b. Strange directories in /usr/share that do not belong to a package.
      This can be checked on an rpm system with the following bash snippet:
	for file in `find /usr/share/`; do
		package=`rpm -qf -- ${file} | grep "is not owned"`
		if [ -n "$package" ] ; then
			echo "weird file ${file}, please check this out"
		fi
	done
6. Look for mysterious log messages, such as:
   a. Unexpected logins in wtmp and /var/log/secure*, quite possibly
      from legitimate users from unexpected hosts.
   b. Any program trying to touch /dev/mem.
   c. References to strange (non-text) ssh version strings in
      /var/log/secure*.  These do not necessarily indicate *successful*
      breakins, but they indicate *attempted* breakins which means your
      system or IP address has been targeted.

7. If any of the above steps show possible signs of compromise, you
   should investigate further and identify the actual cause.  If it
   becomes clear that the system has indeed been compromised, you should
   certainly reinstall the system from the beginning, and change your
   credentials on all machines that this machine would have had access
   to, or which you connected to through this machine.  You will need
   to check your other systems carefully, and you should almost
   certainly notify the administrators of other systems to which you
   have access.

Finally, please note that these hints are not guaranteed to turn up
signs of a compromised systems.  There are a lot of attackers out there;
some of them are rather more sophisticated than others.  You should
always be on the alert for any sort of unexpected behavior from the
systems you work with.

thanks,
</pre>
<h3 class='related_post_title'>Posteos relacionados:</h3>
<ul class='related_post'>
<li><a href='http://cayu.com.ar/index.php/2008/09/02/iii-jornadas-de-software-libre-en-la-unju-san-salvador-de-jujuy-2008/' title='III Jornadas de Software Libre en la UNJU &#8211; San Salvador de Jujuy 2008'>III Jornadas de Software Libre en la UNJU &#8211; San Salvador de Jujuy 2008</a></li>
<li><a href='http://cayu.com.ar/index.php/2008/05/18/webcam-virtual-para-amsn/' title='Webcam Virtual para amsn'>Webcam Virtual para amsn</a></li>
<li><a href='http://cayu.com.ar/index.php/2011/10/28/lanux-reunion-aniversario/' title='Lanux reunión aniversario'>Lanux reunión aniversario</a></li>
<li><a href='http://cayu.com.ar/index.php/2011/09/06/linux-3-0-0-crash-oflo_sw_cpu_clock_crash/' title='Linux 3.0.0 crash oflo_sw_cpu_clock_crash'>Linux 3.0.0 crash oflo_sw_cpu_clock_crash</a></li>
<li><a href='http://cayu.com.ar/index.php/2011/06/19/auditoria-y-seguridad-en-sap/' title='Auditoria y seguridad en SAP'>Auditoria y seguridad en SAP</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://cayu.com.ar/index.php/2011/10/04/vuelve-kernel-org-parcialmente/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auditoria y seguridad en SAP</title>
		<link>http://cayu.com.ar/index.php/2011/06/19/auditoria-y-seguridad-en-sap/</link>
		<comments>http://cayu.com.ar/index.php/2011/06/19/auditoria-y-seguridad-en-sap/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 02:26:57 +0000</pubDate>
		<dc:creator>cayu</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trabajo]]></category>
		<category><![CDATA[auditoria]]></category>
		<category><![CDATA[pentest]]></category>
		<category><![CDATA[sap]]></category>
		<category><![CDATA[seguridad]]></category>

		<guid isPermaLink="false">http://cayu.com.ar/?p=765</guid>
		<description><![CDATA[No suelo repostear / retwittear post etc que veo en otros blogs a menos que me parescan interesantes y sean cosas que me ayudar a resolver mi trabajo / hobbie / lo que sea en mi vida ya sea software/fotografia/recetas de cocina/recomendacion para lavar la ropa, vi estos links en un twitteo de mis contactos [...]]]></description>
			<content:encoded><![CDATA[<p>No suelo repostear / retwittear post etc que veo en otros blogs a menos que me parescan interesantes y sean cosas que me ayudar a resolver mi trabajo / hobbie / lo que sea en mi vida ya sea software/fotografia/recetas de cocina/recomendacion para lavar la ropa, vi estos links en un twitteo de mis contactos y esta muy interesante</p>
<h1>Metodología o Checklist para auditar un sistema SAP</h1>
<p>Hablando con varios amigos, sobre el problema que uno de ellos tenia para auditar un sistema <a class="st_tag internal_tag" title="Entradas etiquetadas con SAP" rel="tag" href="http://www.dragonjar.org/tag/sap">SAP</a> y al buscar para ayudarle con ese problema, nos dimos cuenta de la poca documentación existente para realizar un <a title="Pentesting" href="http://www.dragonjar.org/tag/pentesting">Pentesting</a> de manera metódica en un sistema SAP, no encontramos fácilmente una guía o <a class="st_tag internal_tag" title="Entradas etiquetadas con Checklist" rel="tag" href="http://www.dragonjar.org/tag/checklist">checklist</a> a seguir para auditar efectivamente estos sistemas.</p>
<p style="text-align: center;"><img class="alignnone" title="Pentesting SAP" src="http://dragonjar.s3-website-us-east-1.amazonaws.com/wp-content/uploads/2011/06/Seguridad-SAP.jpg" alt="Seguridad SAP Metodología o Checklist para auditar un sistema SAP" width="249" height="249" /></p>
<p>Aunque conocíamos buenas <a title="herramientas" rel="nofollow" href="http://www.dragonjar.org/tag/herramientas" target="_blank">herramientas</a> como <a href="www.dragonjar.org/sapyto-framework-para-realizar-penetration-tests-sobre-sistemas-sap.xhtml">Sapyto, un framework para auditoria de sistemas SAP del que ya habíamos hablado en la comunidad</a>, y una excelente charla que dio Mariano Nuñez Di Croce, su creador, donde habla de pentesting a sistemas SAP, seguíamos sin encontrar una <a title="metodología" rel="nofollow" href="http://www.dragonjar.org/tag/metodologia" target="_blank">metodología</a> a seguir, por eso decidimos <a href="http://twitter.com/#!/DragonJAR/status/81098235288109056">preguntar en Twitter si alguien conocía alguna metodología</a> para realizar un <a title="pentest" href="http://www.dragonjar.org/category/pentest">pentest</a> en sistemas SAP y la respuesta fue tan buena que dio lugar a la creación de este post, donde pretendemos reunir en un solo lugar, los mejores recursos que puedas llegar a necesitar cuando realices una auditoria a sistemas SAP.</p>
<p>El primer recurso que les comparto es la charla de Mariano Niñez sobre Pentesting en Sistemas SAP:</p>
<p style="text-align: center;">
<p><script type="text/javascript">// <![CDATA[
var flashvars = {
width: "580",
height: "480",
autostart: "false",
repeat: "false",
backcolor: "111111",
frontcolor: "cccccc",
lightcolor: "66cc00",
stretching: "fill",
enablejs: "true",
mute: "false",
skin: "http://www.dragonjar.org/wp-content/plugins/proplayer/players/skins/default.swf",
image: "http://dragonjar.s3-website-us-east-1.amazonaws.com/wp-content/uploads/2011/06/DragoNVideo.jpg",
plugins: "",
javascriptid: "6585pp-single-4dfd59d5dee9f",
image: "http://dragonjar.s3-website-us-east-1.amazonaws.com/wp-content/uploads/2011/06/DragoNVideo.jpg",
file: 'http://www.dragonjar.org/wp-content/plugins/proplayer/playlist-controller.php?pp_playlist_id=6585pp-single-4dfd59d5dee9f&#038;sid=1308449237'
};
var params = {
wmode: "transparent",
allowfullscreen: "true",
allowscriptaccess: "always",
allownetworking: "all"
};
var attributes = {
id: "obj-pro-player-6585pp-single-4dfd59d5dee9f",
name: "obj-pro-player-6585pp-single-4dfd59d5dee9f"
};
swfobject.embedSWF("http://www.dragonjar.org/wp-content/plugins/proplayer/players/player.swf", "pro-player-6585pp-single-4dfd59d5dee9f", "580", "480", "9.0.0", false, flashvars, params, attributes);
// ]]&gt;</script></p>
<p>En los aportes que nos realizaron se encuentra la <a rel="nofollow" href="http://goo.gl/CFVZ9" target="_blank">Guía de Seguridad para sistemas SAP NetWeaver</a>, pero también unas directrices para auditar SAP <a class="st_tag internal_tag" title="Entradas etiquetadas con ECC" rel="tag" href="http://www.dragonjar.org/tag/ecc">ECC</a> creado en el 2009 por Nishant Sourabh un empleado de IBM, que eran justo lo que necesitábamos:</p>
<p style="text-align: center;"><span> </span> <span> </span> <span> </span><object style="width: 580px; height: 360px;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100" height="100" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="mode=embed&amp;layout=http%3A%2F%2Fskin.issuu.com%2Fv%2Flight%2Flayout.xml&amp;showFlipBtn=true&amp;documentId=110615233201-d8ff7990b7034b62a54ad7fdc2ade456&amp;docName=sap_ecc_audit_guidelines&amp;username=dragonjar&amp;loadingInfoText=SAP%20ECC%20Audit%20Guidelines&amp;et=1308180857765&amp;er=53" /><param name="src" value="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf" /><param name="allowfullscreen" value="true" /><embed style="width: 580px; height: 360px;" type="application/x-shockwave-flash" width="100" height="100" src="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf" allowfullscreen="true" flashvars="mode=embed&amp;layout=http%3A%2F%2Fskin.issuu.com%2Fv%2Flight%2Flayout.xml&amp;showFlipBtn=true&amp;documentId=110615233201-d8ff7990b7034b62a54ad7fdc2ade456&amp;docName=sap_ecc_audit_guidelines&amp;username=dragonjar&amp;loadingInfoText=SAP%20ECC%20Audit%20Guidelines&amp;et=1308180857765&amp;er=53"></embed></object></p>
<p style="text-align: center;"><a rel="nofollow" href="http://www.4shared.com/document/vFuWzbZm/SAP_ECC_Audit_Guidelines.html" target="_blank">Descarga las directrices para auditar SAP ECC de este enlace</a></p>
<p>Pero también documentación creada por la misma SAP con lineamientos para auditar SAP <a class="st_tag internal_tag" title="Entradas etiquetadas con R/3" rel="tag" href="http://www.dragonjar.org/tag/r3">R/3</a> que nos ayudaran mucho en la tarea de auditar sistemas SAP.</p>
<p style="text-align: center;"><span> </span> <span> </span> <object style="width: 580px; height: 360px;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100" height="100" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="mode=embed&amp;layout=http%3A%2F%2Fskin.issuu.com%2Fv%2Flight%2Flayout.xml&amp;showFlipBtn=true&amp;documentId=110615230658-7395e5a79cf54cc3a8e3e635c6c9d5a8&amp;docName=sapaudit&amp;username=dragonjar&amp;loadingInfoText=SAP-%20Audit%20Guidelines%20R%2F3&amp;et=1308180943095&amp;er=64" /><param name="src" value="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf" /><param name="allowfullscreen" value="true" /><embed style="width: 580px; height: 360px;" type="application/x-shockwave-flash" width="100" height="100" src="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf" allowfullscreen="true" flashvars="mode=embed&amp;layout=http%3A%2F%2Fskin.issuu.com%2Fv%2Flight%2Flayout.xml&amp;showFlipBtn=true&amp;documentId=110615230658-7395e5a79cf54cc3a8e3e635c6c9d5a8&amp;docName=sapaudit&amp;username=dragonjar&amp;loadingInfoText=SAP-%20Audit%20Guidelines%20R%2F3&amp;et=1308180943095&amp;er=64"></embed></object></p>
<p style="text-align: center;"><a rel="nofollow" href="http://www.4shared.com/document/bOqXCqJ9/SAPAudit.html" target="_blank">Descarga los lineamientos para auditar SAP R/3 creados por SAP</a></p>
<p><a rel="nofollow" href="http://www.seguridadsap.com/" target="_blank">En español encontramos un portal dedicado enteramente a la seguridad SAP llamado SeguridadSAP.com</a>, el cual recomendamos totalmente desde <a title="La Comunidad DragonJAR" rel="nofollow" href="http://www.dragonjar.org/tag/la-comunidad-dragonjar" target="_blank">La Comunidad DragonJAR</a>, también agradecemos  <a href="http://twitter.com/#!/EspeisCouboi/status/81098911799975936">Space Cowboy (@EspeisCouboi)</a> y <a rel="nofollow" href="http://twitter.com/#!/bertico413/status/81101611799298048" target="_blank">Alberto Hil (@bertico413)</a>, por su colaboración.</p>
<p>Si tienes mas aportes en esta materia dejalos en los comentarios, para que juntos construyamos un buen listado de recursos para auditar sistemas SAP.</p>
<p>y tambien :</p>
<h1>SAPYTO – Framework para realizar Penetration Tests sobre sistemas SAP</h1>
<p>Sapyto <a title="Entradas etiquetadas con SAP" rel="tag" href="http://www.dragonjar.org/tag/sap">SAP</a> R/3 <a title="Pentest" href="http://www.dragonjar.org/category/pentest">Pentest</a> Tool es un <a title="Entradas etiquetadas con Framework" rel="tag" href="http://www.dragonjar.org/tag/framework">Framework</a> para realizar <a title="Penetration Tests" href="http://www.dragonjar.org/tag/penetration-tests">Penetration Tests</a> sobre sistemas SAP. Permite que profesionales de <a title="seguridad" href="http://www.dragonjar.org/">seguridad</a> lleven a cabo analisis de seguridad de diferentes componentes de implementaciones de SAP R/3.</p>
<p>Sapyto fue Presentado en <a title="Blackhat Europe" href="http://www.dragonjar.org/tag/blackhat-europe">Blackhat Europe</a> 2007, fue liberado con varios modulos para analizar la seguridad de la implementacion de la interfaz RFC de los sistemas SAP. La arquitectura modular permite que los usuarios desarrollen sus propios modulos, extendiendo la funcionalidad y permitiendo que el Framework detected nuevas <a title="vulnerabilidades" href="http://www.dragonjar.org/tag/vulnerabilidades">vulnerabilidades</a>. Esta herramienta ha sido escrito en Python.</p>
<p><a rel="nofollow" href="http://www.cybsec.com/vuln/tools/sapyto.tgz" target="_blank">Descargar SAPYTO</a><br />
Fuente del recurso: <a rel="nofollow" href="http://seguridad-informacion.blogspot.com/2008/06/sapyto-framework-para-realizar.html" target="_blank">CRYPTEX</a></p>
<p>Tambien enlaces como</p>
<h2><a rel="nofollow" href="http://code.google.com/p/inguma/" target="_blank">Proyecto Inguma</a></h2>
<p>Proyecto<a rel="nofollow" href="http://getmantra.com/" target="_blank"> Mantra</a></p>
<p>Aca el link de SAP <a href="http://help.sap.com/saphelp_nw04/helpdata/en/ed/18cc38e6df4741a264bddcd4f98ae2/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/ed/18cc38e6df4741a264bddcd4f98ae2/frameset.htm</a></p>
<p>y los archivos de documentación oficial de SAP y seguridad los subi aca en <a href="http://cayu.com.ar">cayu</a> en la url</p>
<p><a href="http://cayu.com.ar/files/sap/">http://cayu.com.ar/files/sap/</a></p>
<p>SAPYTO <a href="http://www.cybsec.com/EN/research/sapyto.php">http://www.cybsec.com/EN/research/sapyto.php</a></p>
<p>ah y recomendado bajarse los pdf de los slides de Mariano Nuñez en las diferentes ekopartys</p>
<p>POST Original : <a href="http://www.dragonjar.org/metodologia-o-checklist-para-auditar-un-sistema-sap.xhtml">http://www.dragonjar.org/metodologia-o-checklist-para-auditar-un-sistema-sap.xhtml</a></p>
<p>ah y no nos olvidemos de usar los plugins de SAP CCMS para Nagios yo hasta ahora los vengo usando desde hace 4 años y tuve buenos resultados, y bueno tener bien armado el contexto de monitoreo y log centralizado<br />
<h3 class='related_post_title'>Posteos relacionados:</h3>
<ul class='related_post'>
<li><a href='http://cayu.com.ar/index.php/2011/10/04/vuelve-kernel-org-parcialmente/' title='Vuelve Kernel.org (parcialmente)'>Vuelve Kernel.org (parcialmente)</a></li>
<li><a href='http://cayu.com.ar/index.php/2008/09/02/iii-jornadas-de-software-libre-en-la-unju-san-salvador-de-jujuy-2008/' title='III Jornadas de Software Libre en la UNJU &#8211; San Salvador de Jujuy 2008'>III Jornadas de Software Libre en la UNJU &#8211; San Salvador de Jujuy 2008</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://cayu.com.ar/index.php/2011/06/19/auditoria-y-seguridad-en-sap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>III Jornadas de Software Libre en la UNJU &#8211; San Salvador de Jujuy 2008</title>
		<link>http://cayu.com.ar/index.php/2008/09/02/iii-jornadas-de-software-libre-en-la-unju-san-salvador-de-jujuy-2008/</link>
		<comments>http://cayu.com.ar/index.php/2008/09/02/iii-jornadas-de-software-libre-en-la-unju-san-salvador-de-jujuy-2008/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 02:50:12 +0000</pubDate>
		<dc:creator>cayu</dc:creator>
				<category><![CDATA[Eventos]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[conferencias]]></category>
		<category><![CDATA[estudiante]]></category>
		<category><![CDATA[evento]]></category>
		<category><![CDATA[filosofia]]></category>
		<category><![CDATA[fotos]]></category>
		<category><![CDATA[jornadas]]></category>
		<category><![CDATA[jujuy]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nacional]]></category>
		<category><![CDATA[seguridad]]></category>
		<category><![CDATA[servidores]]></category>
		<category><![CDATA[software libre]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[universidad]]></category>
		<category><![CDATA[unju]]></category>

		<guid isPermaLink="false">http://cayu.com.ar/index.php/2008/09/02/iii-jornadas-de-software-libre-en-la-unju-san-salvador-de-jujuy-2008/</guid>
		<description><![CDATA[&#160; III Jornadas de Software Libre en la UNJU &#8211; San Salvador de Jujuy &#160; Hace poco pasaron las Jornadas de Software Libre en la Universidad Nacional de Jujuy, en la cuales tuve el honor de participar como disertante. &#160; En las mismas se a convocado a diferentes exponentes del Software Libre que venian de [...]]]></description>
			<content:encoded><![CDATA[<p align="center">&nbsp;</p>
<p align="center">III Jornadas de Software Libre en la UNJU &#8211; San Salvador de Jujuy</p>
<p align="center"><img src="http://cayu.com.ar/images/jornadasunju2008/portada.jpg" height="780" width="512" /></p>
<p align="left">&nbsp;</p>
<p align="left">Hace poco pasaron las Jornadas de Software Libre en la Universidad Nacional de Jujuy, en la cuales tuve el honor de participar como disertante.</p>
<p align="left">&nbsp;</p>
<p> En las mismas se a convocado a diferentes exponentes del Software Libre que venian de diferentes puntos del pais. Cada uno exponia sobre una tematica diferente, Filosofia del Software Libre, temas tecnicos, programacion, tutoriales, seguridad entre otros. Precisamente stas Jornadas se destacaron porque hubo una variedad de temas muy amplia de temas.</p>
<p>Ademas en lo que refiere a nivel tecnico se destaco en gran manera por la ultimas charlas de seguridad donde se estudiaron y probaron Buffer Overflows, Rootkits, Exploits, SQL Inyeccion y demas cosas todas con su metodo practico de aplicacion je <img src='http://cayu.com.ar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Para comenzar parti desde Buenos Aires con destino a Jujuy un viaje largo se podria decir, al llegar de dia el Jueves a la tarde fui recibido en la terminal por Cesar, de ahi parti para el Hotel a dejar las cosas, luego fuimos a tomar algo a un cafe local frente a la plaza principal donde ya estaban alli Carolina y Ezequiel</p>
<p>Luego en la Facultad de Ingenieria nos recibio muy amablemente el Decano y estuvimos hablando un rato de lo que iban a ser las Jornadas.</p>
<p>Luego recorrimos parte del centro, la plaza, la peatonal y la casa de gobierno en la cual hay un museo historico sobre la bandera de Belgrano y muchas cosas interesantes, luego visitamos la catedral y otra iglesia historica tambien.</p>
<p>Luego al hotel a enganchar redes WiFi por la zona, cabe destacar que todo el centro de Jujuy esta cubierto de WiFi, asi que geeks, quedensen tranquilos y vayan a Jujuy :p</p>
<p>Y de ahi fuimos a comer un restaurant de la zona</p>
<p>Al otro dia temprano comenzamos las jornadas en el auditorio de la facultad de ingenieria, la concurrencia habra sido de una 120% de lo que soporta la sala <img src='http://cayu.com.ar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>El Decano realizo la apertura del evento y se dio por comenzada la Jornada</p>
<p align="center">El viernes a las 10 am me toco disertar a mi <img src='http://cayu.com.ar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: center"><img src="http://cayu.com.ar/images/jornadasunju2008/disertando1.jpg" /></p>
<p style="text-align: center">Estaba repleto el auditorio</p>
<p style="text-align: center"><img src="http://cayu.com.ar/images/jornadasunju2008/disertando2.jpg" height="268" width="512" /></p>
<p style="text-align: center"> <img src="http://cayu.com.ar/images/jornadasunju2008/disertando3.jpg" height="384" width="512" /></p>
<p style="text-align: center">bueno luego de las demas charlas segui filmando :p</p>
<p style="text-align: center"><img src="http://cayu.com.ar/images/jornadasunju2008/filmando.jpg" height="385" width="512" /></p>
<p style="text-align: center">luego nos fueron entregando los certificados de expositores</p>
<p style="text-align: center"><img src="http://cayu.com.ar/images/jornadasunju2008/certificado.jpg" height="384" width="512" /></p>
<p>El evento fue muy dinamico, hubo buen humor, debate. Ademas la cobertura de los medios locales como algunos diarios y afiches por toda la Universidad ayudo mucho en la asistencia.</p>
<p style="text-align: center">Aqui la mayoria de los disertantes</p>
<p style="text-align: center"><img src="http://cayu.com.ar/images/jornadasunju2008/disertantes1.jpg" height="330" width="512" /></p>
<p style="text-align: center">aqui de nuevo casi todos <img src='http://cayu.com.ar/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: center"><img src="http://cayu.com.ar/images/jornadasunju2008/disertantes2.jpg" height="307" width="512" /></p>
<p style="text-align: center">aqui con parte de la organizacion</p>
<p style="text-align: center">a mi lado de izquierda y derecha   estan mis dos anfitriones Cesar y Carolin</p>
<p style="text-align: center">que me llevaron a recorrer la ciudad y estuvieron pendientes de cada uno de los que participamos</p>
<p style="text-align: center"><img src="http://cayu.com.ar/images/jornadasunju2008/organizacion.jpg" height="385" width="512" /></p>
<p>Sin duda la charla que mas entretuvo fue la de seguridad de los Chicos del Chaco</p>
<p align="center">luego de cerradas las jornadas se realizo un installfest</p>
<p style="text-align: center"><img src="http://cayu.com.ar/images/jornadasunju2008/intallfest.jpg" height="385" width="512" /></p>
<p style="text-align: center">y muy concurrido por cierto</p>
<p align="center"><img src="http://cayu.com.ar/images/jornadasunju2008/installfest2.jpg" height="241" width="512" /></p>
<p align="center">aca  con el Tux de las Jornadas</p>
<p style="text-align: center"><img src="http://cayu.com.ar/images/jornadasunju2008/sergio_tux.jpg" height="507" width="512" /></p>
<p>El sitio oficial del evento http://www.fi.unju.edu.ar/jornadas/</p>
<p><a href="http://picasaweb.google.com/cayuqueo/IIIJornadasDeSoftwareLibreEnLaUNJU" title="Fotos de las jornadas" target="_blank">La fotos del evento http://picasaweb.google.com/cayuqueo/IIIJornadasDeSoftwareLibreEnLaUNJU</a></p>
<p>Mi vision personal del evento :</p>
<p><em>Fue muy activo,  el tipo de publico que estuvo presente, espectante escuchaba cada charla, en su mayoria fueron estudiantes de ingenieria de la facultad, despues habia docentes, estudiantes de humanidades, independientes, interesados en el tema etc. Luego la organizacion, todos pendientes de todo y cada uno en su área, durante mi estadia y la estadia de todos estuvieron pendientes de como estabamos y que necesitabamos. Todos pusieron lo mejor de su parte y el nivel fue excelente.</em></p>
<p>Despues prometo los videos tengo que ver como recortarlos son algo asi como 32 GB de datos :-p<br />
<h3 class='related_post_title'>Posteos relacionados:</h3>
<ul class='related_post'>
<li><a href='http://cayu.com.ar/index.php/2009/09/03/iv-jornadas-de-software-libre-en-la-unju-y-rms-en-bs-as/' title='IV Jornadas de Software Libre en la UNJU y RMS en Bs As'>IV Jornadas de Software Libre en la UNJU y RMS en Bs As</a></li>
<li><a href='http://cayu.com.ar/index.php/2009/08/13/iv-jornadas-de-software-libre-de-la-unju/' title='IV Jornadas de Software Libre de la UNJU'>IV Jornadas de Software Libre de la UNJU</a></li>
<li><a href='http://cayu.com.ar/index.php/2010/11/17/asi-fue-conurbania-2010/' title='Asi fue Conurbania 2010'>Asi fue Conurbania 2010</a></li>
<li><a href='http://cayu.com.ar/index.php/2009/11/22/conurbania-2009-conferencias-sobre-software-libre-en-el-conurbano-bonaerense/' title='Conurbania 2009 &#8211; conferencias sobre Software Libre en el conurbano bonaerense'>Conurbania 2009 &#8211; conferencias sobre Software Libre en el conurbano bonaerense</a></li>
<li><a href='http://cayu.com.ar/index.php/2011/05/10/barcamp-litoral-2011/' title='Barcamp Litoral 2011 un éxito'>Barcamp Litoral 2011 un éxito</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://cayu.com.ar/index.php/2008/09/02/iii-jornadas-de-software-libre-en-la-unju-san-salvador-de-jujuy-2008/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc (Requested URI is rejected)
Database Caching 1/15 queries in 0.010 seconds using apc
Object Caching 396/435 objects using apc

Served from: cayu.com.ar @ 2012-02-08 08:14:05 -->
