<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>SEO Business</title>
	
	<link>http://www.seo-business.biz</link>
	<description>SEO Tools - Google - Bing.com - Live Search - Twitter - SEM - Yahoo!</description>
	<lastBuildDate>Fri, 29 Jan 2010 21:35:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SeoBusiness" /><feedburner:info uri="seobusiness" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Wordpress 2.8.3 : Vulnerabilidad : Reseteo : password: admin</title>
		<link>http://feedproxy.google.com/~r/SeoBusiness/~3/WYR4bcWTikI/</link>
		<comments>http://www.seo-business.biz/wordpress-2-8-3-vulnerabilidad-reseteo-password-admin/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 21:21:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[hack]]></category>

		<guid isPermaLink="false">http://www.seo-business.biz/?p=95</guid>
		<description><![CDATA[Una vulnerabilidad se ha encontrado en Wordpress 2.8.3 y todos los anteriores. Fue descubierta por Laurent Gaffié, mejor hagan una actualización a wordpress 2.8.4.La probé y era cierta, hacías un http://DOMAIN_NAME.TLD/wp-login.php?action=rp&#38;key[]= y te mandaba un password reseteado a tu cuenta de mail. Ok , hasta ahí no hay mucho problema, pero imagínense, que puedan inyectar [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Una vulnerabilidad se ha encontrado en Wordpress 2.8.3 y todos los anteriores. Fue descubierta por Laurent Gaffié, mejor hagan una actualización a wordpress 2.8.4.La probé y era cierta, hacías un http://DOMAIN_NAME.TLD/wp-login.php?action=rp&amp;key[]= y te mandaba un password reseteado a tu cuenta de mail. Ok , hasta ahí no hay mucho problema, pero imagínense, que puedan inyectar otra password, en el arreglo key[], ahí sí que sería un poco , y no tan poco, más bien bastante heavy….Actualizar es  la idea ahora la última versión.</p>
<p>Bajar <a href="http://wordpress.org/latest.zip" rel="nofollow" target="_blank">Wordpress última Versión</a></p>
<pre>=============================================
- Release date: August 10th, 2009
- Discovered by: Laurent Gaffié
- Severity: Medium
=============================================

I. VULNERABILITY
-------------------------
WordPress &lt;= 2.8.3 Remote admin reset password II. BACKGROUND ------------------------- WordPress is a state-of-the-art publishing platform with a focus on aesthetics, web standards, and usability. WordPress is both free and priceless at the same time. More simply, WordPress is what you use when you want to work with your blogging software, not fight it. III. DESCRIPTION ------------------------- The way Wordpress handle a password reset looks like this: You submit your email adress or username via this form /wp-login.php?action=lostpassword ; Wordpress send you a reset confirmation like that via email: " Someone has asked to reset the password for the following site and username. http://DOMAIN_NAME.TLD/wordpress Username: admin To reset your password visit the following address, otherwise just ignore this email and nothing will happen http://DOMAIN_NAME.TLD/wordpress/wp-login.php?action=rp&amp;key=o7naCKN3OoeU2KJMMsag " You click on the link, and then Wordpress reset your admin password, and sends you over another email with your new credentials. Let's see how it works: wp-login.php: ...[snip].... line 186: function reset_password($key) {     global $wpdb;     $key = preg_replace('/[^a-z0-9]/i', '', $key);     if ( empty( $key ) )         return new WP_Error('invalid_key', __('Invalid key'));     $user = $wpdb-&gt;get_row($wpdb-&gt;prepare("SELECT * FROM $wpdb-&gt;users WHERE user_activation_key = %s", $key));
    if ( empty( $user ) )
        return new WP_Error('invalid_key', __('Invalid key'));
...[snip]....
line 276:
$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'login';
$errors = new WP_Error();

if ( isset($_GET['key']) )
    $action = 'resetpass';

// validate action so as to default to the login screen
if ( !in_array($action, array('logout', 'lostpassword', 'retrievepassword', 'resetpass', 'rp', 'register', 'login')) &amp;&amp; false === has_filter('login_form_' . $action) )
    $action = 'login';
...[snip]....

line 370:

break;

case 'resetpass' :
case 'rp' :
    $errors = reset_password($_GET['key']);

    if ( ! is_wp_error($errors) ) {
        wp_redirect('wp-login.php?checkemail=newpass');
        exit();
    }

    wp_redirect('wp-login.php?action=lostpassword&amp;error=invalidkey');
    exit();

break;
...[snip ]...

You can abuse the password reset function, and bypass the first step and
then reset the admin password by submiting an array to the $key
variable.

IV. PROOF OF CONCEPT
-------------------------
A web browser is sufficiant to reproduce this Proof of concept:

http://DOMAIN_NAME.TLD/wp-login.php?action=rp&amp;key[]=

The password will be reset without any confirmation.

V. BUSINESS IMPACT
-------------------------
An attacker could exploit this vulnerability to compromise the admin
account of any wordpress/wordpress-mu &lt;= 2.8.3

VI. SYSTEMS AFFECTED
-------------------------
All

VII. SOLUTION
-------------------------
No patch aviable for the moment.

VIII. REFERENCES
-------------------------

http://www.wordpress.org

IX. CREDITS
-------------------------
This vulnerability has been discovered by Laurent Gaffié Laurent.gaffie{remove-this}(at)gmail.com
I'd like to shoot some greetz to securityreason.com for them great
research on PHP, as for this under-estimated vulnerability discovered by
Maksymilian Arciemowicz : http://securityreason.com/achievement_securityalert/38

X. REVISION HISTORY
-------------------------
August 10th, 2009: Initial release

XI. LEGAL NOTICES
-------------------------
The information contained within this advisory is supplied "as-is"
with no warranties or guarantees of fitness of use or otherwise.
I accept no responsibility for any damage caused by the use or
misuse of this information.

# milw0rm.com [2009-08-11]</pre>
<img src="http://feeds.feedburner.com/~r/SeoBusiness/~4/WYR4bcWTikI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seo-business.biz/wordpress-2-8-3-vulnerabilidad-reseteo-password-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.seo-business.biz/wordpress-2-8-3-vulnerabilidad-reseteo-password-admin/</feedburner:origLink></item>
		<item>
		<title>Google Chile Zeitgeist 2009 y 2008</title>
		<link>http://feedproxy.google.com/~r/SeoBusiness/~3/DclL8MIDxJw/</link>
		<comments>http://www.seo-business.biz/google-chile-zeitgeist-2008/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 21:00:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.seo-business.biz/?p=90</guid>
		<description><![CDATA[

Las palabras claves más buscadas en google.cl en el año 2008fueron publicadas en el sitio oficial de Google. Cabe destacar que viendo bien, los resultados arrojados para Chile, y otros países, podemos ver una gran apuesta por el contenido social. Lo otro interesante a destacar que la palabra clave Facebook, se esta buscando, o sea, los usuarios no ingresan directamente a facebook.com, [...]]]></description>
			<content:encoded><![CDATA[<p></p><div>
<div id="list0">
<p>Las <strong>palabras claves más buscadas</strong> en <a title="Google Chile" rel="nofollow" href="http://www.google.cl/" target="_blank">google.cl</a> en el <strong>año 2008</strong>fueron publicadas en el <strong>sitio oficial de Google</strong>. Cabe destacar que viendo bien, los resultados arrojados para Chile, y otros países, podemos ver una gran apuesta por el <strong>contenido social</strong>. Lo otro interesante a destacar que la palabra clave <strong>Facebook</strong>, se esta buscando, o sea, los usuarios no ingresan directamente a <a title="Facebook" rel="nofollow" href="http://www.facebook.com/" target="_blank">facebook.com</a>, sino mas bien estan utilizando a <strong>Google </strong>como portal.<br />
<a title="Google Zeitgeist" rel="nofollow" href="http://www.seo-business.biz/wp-content/uploads/2010/01/gogle-zeitgeist-2008.png" target="_blank"><img title="google-zeitgeist-2008" src="http://www.edreams.cl/wp-content/uploads/2008/12/gogle-zeitgeist-2008.png" alt="Google Zeitgeist 2008" width="249" height="72" /></a></p>
<p>Según el sitio Oficial de <strong>Google Zeitgeist</strong>: Este ha sido un año de <strong>cambios en el país</strong> y la gente ha utilizado <strong>Google</strong> para informarse acerca de estos cambios. Las búsquedas más activas incluyeron términos de la <strong>actualidad política </strong>y <strong>económica</strong> tales como la <strong>búsqueda de empleos</strong> y conceptos técnicos que afectaron directamente a los <strong>consumidores</strong> y usuarios a nivel nacional como la <strong>Unidad de Fomento</strong> (UF) o el dólar.</p>
<h2>Zeitgeist 2009</h2>
<h3>Más Populares</h3>
<ol>
<li>facebook</li>
<li>chile</li>
<li>juegos</li>
<li>youtube</li>
<li>videos</li>
<li>traductor</li>
<li>hotmail</li>
<li>musica</li>
<li>msn</li>
<li>google</li>
</ol>
</div>
<h3>Celebridades</h3>
<ol>
<li>michael jackson</li>
<li>daddy yankee</li>
<li>jonas brothers</li>
<li>megan fox</li>
<li>robert pattinson</li>
<li>la noche</li>
<li>lucila vit</li>
<li>lady gaga</li>
<li>pamela díaz</li>
<li>metallica</li>
</ol>
</div>
<h3>Servicios Públicos</h3>
<ol>
<li>sii</li>
<li>inp</li>
<li>registro civil</li>
<li>sii.cl</li>
<li>fonasa</li>
<li>transantiago</li>
<li>inp.cl</li>
<li>www.inp.cl</li>
<li>mineduc</li>
<li>poder judicial</li>
</ol>
<div>
<div id="list0">
<div id="zg-list-0">
<h3>Emergentes</h3>
<ol>
<li>facebook</li>
<li>taringa</li>
<li>inp</li>
<li>youtube</li>
<li>ben 10</li>
<li>traductor google</li>
<li>banco estado</li>
<li>hotmail</li>
<li>kaskus</li>
<li>lady gaga</li>
</ol>
</div>
<div id="zg-list-2">
<h3>Economía</h3>
<ol>
<li>banco estado</li>
<li>banco de chile</li>
<li>banco santander</li>
<li>santander santiago</li>
<li>credichile</li>
<li>banefe</li>
<li>banco central</li>
<li>scotiabank</li>
<li>banco del desarrollo</li>
<li>bolsa de santiago</li>
</ol>
</div>
<div id="zg-list-4">
<h3>Deportes</h3>
<ol>
<li>cdf</li>
<li>rojadirecta</li>
<li>anfp</li>
<li>espn</li>
<li>colo-colo</li>
<li>universidad de chile</li>
<li>universidad catolica</li>
<li>roja directa</li>
<li>juegos de fútbol</li>
<li>unión española</li>
</ol>
</div>
<h2>Zeitgeist 2008</h2>
<h3>Emergentes (Fastest Rising)</h3>
<ol>
<li>facebook ( Estimado de Wordtracker: 223,228 visitas al día)</li>
<li>rapidshare (Estimado de visitas: 1,993)</li>
<li>juegos.com (Estimado de visitas: 88 )</li>
<li>habbo ( Estimado: 1,718)</li>
<li>youtube (Estimado: 278,575)</li>
<li>cdf (Estimado: 235 )</li>
<li>rastro ( Estimado: 9 )</li>
<li>naruto (Estimado:29,397 )</li>
<li>vtr (Estimado: 34 )</li>
<li>movistar (Estimado: 141)</li>
</ol>
<p>*Las estimaciones son según Wordtracker al día de hoy 10 de Diciembre de 2008. Y hay que tener en cuenta que estas son estimaciones globales, y no son precisamente concordantes a la realidad local.</p>
</div>
</div>
<div>
<div id="list1">
<h3>Más Populares (Most Popular)</h3>
<ol>
<li>chile</li>
<li>juegos juegos</li>
<li>juegos</li>
<li>youtube</li>
<li>facebook</li>
<li>videos</li>
<li>traductor</li>
<li>msn</li>
<li>hotmail</li>
<li>you</li>
</ol>
</div>
<p>Fuente: <a rel="nofollow" href="http://www.google.com/intl/en/press/zeitgeist2008/index.html#top" target="_blank">Google Zeitgeist</a></p>
</div>
<img src="http://feeds.feedburner.com/~r/SeoBusiness/~4/DclL8MIDxJw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seo-business.biz/google-chile-zeitgeist-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.seo-business.biz/google-chile-zeitgeist-2008/</feedburner:origLink></item>
		<item>
		<title>Factores importantes para un buen posicionamiento en los buscadores</title>
		<link>http://feedproxy.google.com/~r/SeoBusiness/~3/nC3iNbzBQGE/</link>
		<comments>http://www.seo-business.biz/factores-importantes-para-un-buen-posicionamiento-en-los-buscadores/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 20:53:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[posicionamiento]]></category>

		<guid isPermaLink="false">http://www.seo-business.biz/?p=87</guid>
		<description><![CDATA[Mucho se ha hablado sobre cuáles son los factores que Googletoma en cuenta para un posicionamiento en su buscador. Como bien dijo Matt Cutts, hay más de 200 factores que Google toma en cuenta para hacer un ranking de una página en particular. Sin ser, ni pretender ser la voz oficial de esto, pues no la soy(o si no, sería millonario), entregaré [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Mucho se ha hablado sobre cuáles son los <strong>factores</strong> que <strong>Google</strong>toma en cuenta para un <strong>posicionamiento</strong> en su buscador. Como bien dijo <strong>Matt Cutts</strong>, hay más de 200 <strong>factores</strong> que <strong>Google</strong> toma en cuenta para hacer un <strong>ranking</strong> de una<strong> página</strong> en particular. Sin ser, ni pretender ser la voz oficial de esto, pues no la soy(o si no, sería millonario), entregaré mi parecer con respecto a cuales son algunas de estos factores a tomar en cuenta.<br />
Ahora bien, recogiendo algunos otros comentarios en la web, como el de <strong>Vanesa Fox </strong>(ex Google a cargo de Webmaster Tools), y lo que expreso <strong>Matt Cutts</strong>, el <strong>Page Rank</strong> se divide en dos, uno que es el que sale en el ToolBar( desde el 1 al 10, digámosle PRT) y el que usa Google Internamente(Llamémosle PRI).</p>
<p>1.- Historia del dominio (¿ha cambiado de dueño?, ¿Cuánto tiempo el sitio tiene?…etc.)</p>
<p>2.- Historia de los vínculos y la Calidad de estos ( ¿Han crecido en forma natural a través del tiempo, La gente que visita el sitio, ¿se queda por algún tiempo o salen inmediatamente?, ¿Cual es la proporción entre vínculos de calidad y de baja calidad que tiene el sitio?…etc.)</p>
<p>3.- <strong>Historia del Contenido</strong> y la generación de este ( ¿Está escrito en forma natural?, ¿Cómo se compara con contenidos de sitios de<strong>Spam</strong>?, ¿Cómo se compara el Contenido con respecto a los libros que ha escaneado Google?..etc.)</p>
<p>4.-Uso de los Datos (Datos de <strong>Google Toolbar</strong>, <strong>Google Account</strong>; Si tienes Rss feed, ¿la gente se subscribe?;¿Cual es la frecuencia de revisitas en tu sitio?;¿Esta la gente hablando de tu sitio , a través de<strong>Gmail</strong> o <strong>Gtalk</strong>?…)</p>
<p>5.- Tu nombre de sitio o marca (¿Los usuarios buscan tu marca, o nombre de sitio?;¿Hay blog acerca de tu sitio, o los usuario están hablando de ellos en las plataformas de <strong>blogging</strong>?; ¿Hay citas de tu sitio o marca en <strong>Google News</strong>?..)</p>
<p>6.- Palabras Claves, Keywords(Si tienes google adwords, ¿qué hacen las vistas después de hacer click en tu ad?; ¿Cuales otros sitios están publicitando similares keywords; Que proporción tiene tu sitio en el mercado, para ello usan Google checkout, El histórico de <strong>Adwords</strong>, <strong>Google Analytics</strong>….etc.)</p>
<p>7.- ¿Cuales sitios te visitan a menudo? ( ¿Tienen los mismos datos del Whois?; La gente que te visita, ¿visita sitios de la misma temática? ; ¿Son confiables sitios, o son más relacionados a Spam?..)</p>
<p>Google al tener tantos productos, como<strong> Analytics</strong>, <strong>Reader</strong>, <strong>Gmail</strong>,<strong>Gtalk</strong>, <strong>feedburner</strong>, toolbars, los <strong>ads</strong>, y más, se puede hacer una buena idea de cómo tu sitio es visto en internet, y esto suma y sigue, así que creo que las técnicas que uno utilice tendrán que empezar a variar, pero sin dejar de lado, que <strong>el contenido es el Rey</strong>.</p>
<img src="http://feeds.feedburner.com/~r/SeoBusiness/~4/nC3iNbzBQGE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seo-business.biz/factores-importantes-para-un-buen-posicionamiento-en-los-buscadores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.seo-business.biz/factores-importantes-para-un-buen-posicionamiento-en-los-buscadores/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 0.070 seconds -->
