<?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/"
	>

<channel>
	<title>Solo Wordpress</title>
	<atom:link href="http://carlosandrade.es/blogs/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://carlosandrade.es/blogs/wordpress</link>
	<description>Just another Carlosandrade.es Blogs weblog</description>
	<pubDate>Sun, 18 Oct 2009 23:20:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP y upload (1)</title>
		<link>http://carlosandrade.es/blogs/wordpress/2009/10/19/php-y-upload-1/</link>
		<comments>http://carlosandrade.es/blogs/wordpress/2009/10/19/php-y-upload-1/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 23:15:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Plataforma]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Upload files]]></category>

		<guid isPermaLink="false">http://carlosandrade.es/blogs/wordpress/?p=19</guid>
		<description><![CDATA[http://www.bilbaodigital.es/Hacking/php-shell-upload-iv.html
The understanding of the systems architecture is essential to analize its security. PHP file upload architecture:

Files are transferred from client filesystem to server RAM.
Apache process will check httpd.conf and php.ini directives.
Once completed, file will be dumped into the server&#8217;s default temporary directory, unless another location has been given with the upload_tmp_dir directive in php.ini. The temporary [...]]]></description>
			<content:encoded><![CDATA[<p>http://www.bilbaodigital.es/Hacking/php-shell-upload-iv.html</p>
<p>The understanding of the systems architecture is essential to analize its security. <strong>PHP file upload architecture</strong>:</p>
<ol>
<li>Files are transferred from client filesystem to server RAM.</li>
<li>Apache process will check httpd.conf and php.ini directives.</li>
<li>Once completed, file will be dumped into the server&#8217;s default temporary directory, unless another location has been given with the upload_tmp_dir directive in php.ini. The temporary directory used for storing files must be writable by apache user.</li>
<li>After a correct transfer, if track_vars is enabled (always since 4.0.3), $_FILES superglobal array is defined (is available in all scopes throughout a script. There is no need to do global $variable; to access it within functions or methods). Only name and type are provided by the user, and therefore tmp_name, error, and size are provided by PHP. The related variables will be initialized as globals if register_globals is enabled (must be desactivated).</li>
<li>The control is given to the php script to move the file to another location. If not, the temp file will be automatically unlinked at the end of the script.</li>
</ol>
<ul>
<li>Directives in a <strong>php.ini</strong> file
<ul>
<li><code>upload_max_filesize = 10M</code></li>
<li><code>post_max_size = 20M</code></li>
</ul>
</li>
<li>.htaccess file
<ul>
<li><code>php_value upload_max_filesize 10M</code></li>
<li><code>php_value post_max_size 20M</code></li>
</ul>
<div><span style="font-family: monospace"><br />
</span></div>
<div><span style="font-family: monospace">The PHP documentation states that the memory_limit setting also affects file uploading. Generally speaking, memory_limit should be larger than post_max_size. </span></div>
<div><span style="font-family: monospace"><br />
</span></div>
<div><span style="font-family: monospace"></p>
<ul>
<li><code>memory_limit = 16M</code> to your php.ini file (recommended, if you have access)</li>
<p>With root access, you can use the sed util in Linux/Unix based systems, in order to increace the memory for 64M. Don&#8217;t forget to properly locate you php.ini file!</p>
<div class="codeblock"><code>sed -i 's/memory_limit = 16M/memory_limit = 64M/' /etc/php5/apache2/php.ini</code></div>
<li><code>ini_set('memory_limit', '16M');</code> to your sites/default/settings.php file</li>
<li><code>php_value memory_limit 16M</code> to your .htaccess file in root</li>
<div></div>
</ul>
<p></span></div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://carlosandrade.es/blogs/wordpress/2009/10/19/php-y-upload-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ideas optimizacion</title>
		<link>http://carlosandrade.es/blogs/wordpress/2009/08/15/ideas-optimizacion/</link>
		<comments>http://carlosandrade.es/blogs/wordpress/2009/08/15/ideas-optimizacion/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 11:25:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://carlosandrade.es/blogs/wordpress/?p=16</guid>
		<description><![CDATA[http://www.slideshare.net/jeremyclarke/caching-and-optimization-for-wordpress
]]></description>
			<content:encoded><![CDATA[<p>http://www.slideshare.net/jeremyclarke/caching-and-optimization-for-wordpress</p>
]]></content:encoded>
			<wfw:commentRss>http://carlosandrade.es/blogs/wordpress/2009/08/15/ideas-optimizacion/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress 2.8.3 Admin Reset Exploit</title>
		<link>http://carlosandrade.es/blogs/wordpress/2009/08/14/wordpress-283-admin-reset-exploit/</link>
		<comments>http://carlosandrade.es/blogs/wordpress/2009/08/14/wordpress-283-admin-reset-exploit/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 15:02:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://carlosandrade.es/blogs/wordpress/?p=13</guid>
		<description><![CDATA[http://www.darknet.org.uk/2009/08/wordpress-2-8-3-admin-reset-exploit/
Ah it’s Wordpress again, sometimes I wonder how many holes there are in Wordpress. I guess a dedicated attacker could find some serious ones with the complexity of the code base.
It’s suspected some of the recent high profile breaches have come from Wordpress exploits.
The latest one to become public is a simple but effective flaw, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.darknet.org.uk/2009/08/wordpress-2-8-3-admin-reset-exploit/">http://www.darknet.org.uk/2009/08/wordpress-2-8-3-admin-reset-exploit/</a></p>
<p>Ah it’s Wordpress again, sometimes I wonder how many holes there are in Wordpress. I guess a dedicated attacker could find some serious ones with the complexity of the code base.</p>
<p>It’s suspected some of the recent high profile breaches have come from Wordpress exploits.</p>
<p>The latest one to become public is a simple but effective flaw, it doesn’t enable take-over but it does allow a prankster to lock an admin out of their blog by resetting the password.</p>
<p>Developers of the widely used WordPress blogging software have released an update that fixes a vulnerability that let attackers take over accounts by resetting the administrator password.</p>
<p>The bug in version 2.8.3 is trivial to exploit remotely using nothing more than a web browser and a specially manipulated link. Typically, requests to reset a password are handled using a registered email address. Using the special URL, the old password is removed and a new one generated in its place with no confirmation required, according to this alert published on the Full-Disclosure mailing list.</p>
<p>The flaw lurks in some of the PHP code that fails to properly scrutinize user input when the password reset feature is invoked. Exploiting it is as easy is directing a web browser to a link that looks something like:</p>
<p>I actually saw the alert as it was published on Full-Disclosure, obviously anything to do with Wordpress catches my attention.</p>
<p>The exploit can be executed by running the following code on a Wordpress 2.8.3 blog:</p>
<p>http://www.domain.com/wp-login.php?action=rp&amp;key[]=</p>
<p>Simple but effective.</p>
<p>According to WordPress documentation here, the bug has been fixed by changing a single line of code so the program checks to make sure the input supplied for the new password isn’t an array. If it is, the user gets an error message and must try again.</p>
<p>That would appear to be the end of it, but security researchers Rafal Los and Mike Bailey wonder aloud here whether it would have made more sense to check instead whether the input is a string.</p>
<p>“Hasty coding?” he asks. “Why take the blacklist vs. whitelist approach?”</p>
<p>The bigger point he and other observers seem to make is that PHP is the coding equivalent of an everyman’s jet pack. It allows him to quickly soar into the sky with a minimal amount of training but doesn’t necessarily provide the means to check for buildings, planes or other hazards that may greet the user once he gets there.</p>
<p>Wordpress 2.8.4 has already been released so if you’re running Wordpress do update ASAP to ensure you are safe from this bug.</p>
<p>With the core updates now available on auto-update there’s no excuse for not updating (no more download, extract, upload via FTP).</p>
<p>Of course with its history, this doesn’t mean you are safe from any of the other exploits that haven’t been made public.</p>
<p>Source: The Register</p>
<p>ShareThis</p>
<p>Tags:  exploits,  hacking-wordpress,  vulnerabilities,  Web Hacking,  web-application-security,  wordpress,  wordpress 2.8.3 exploit,  wordpress admin reset bug,  wordpress bug,  wordpress-exploit,  wordpress-security,  wordpress-vulnerability</p>
]]></content:encoded>
			<wfw:commentRss>http://carlosandrade.es/blogs/wordpress/2009/08/14/wordpress-283-admin-reset-exploit/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress and WordPressMU Merged: Whoa!</title>
		<link>http://carlosandrade.es/blogs/wordpress/2009/06/03/wordpress-and-wordpressmu-merged-whoa/</link>
		<comments>http://carlosandrade.es/blogs/wordpress/2009/06/03/wordpress-and-wordpressmu-merged-whoa/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 13:15:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Merge MU y org]]></category>

		<guid isPermaLink="false">http://carlosandrade.es/blogs/wordpress/?p=10</guid>
		<description><![CDATA[Leemos en http://www.blogherald.com/2009/06/02/wordpress-and-wordpressmu-merged-whoa/
Destacar la parte de
I’ve found that people who use WordPress want to work with people who use WordPress. They also want to play with them. Think of the possibilities of creating a special interest group on car racing, a sport, knitting, book reading, or whatever interest you have and/or blog about. Why not? I’d [...]]]></description>
			<content:encoded><![CDATA[<p>Leemos en <a href="http://www.blogherald.com/2009/06/02/wordpress-and-wordpressmu-merged-whoa/">http://www.blogherald.com/2009/06/02/wordpress-and-wordpressmu-merged-whoa/</a></p>
<p>Destacar la parte de</p>
<blockquote><p>I’ve found that people who use WordPress want to work with people who use WordPress. They also want to play with them. Think of the possibilities of creating a special interest group on car racing, a sport, knitting, book reading, or whatever interest you have and/or blog about. Why not? I’d love to connect with people interested in what I’m interested in, learning from and with each other by a common bond.</p></blockquote>
<p>El texto.</p>
<h2><a title="WordPress and WordPressMU Merged: Whoa!" rel="bookmark" href="http://www.blogherald.com/2009/06/02/wordpress-and-wordpressmu-merged-whoa/">WordPress and WordPressMU Merged: Whoa!</a></h2>
<div class="meta">
<div class="left">
<p>Filed as <a title="View all posts in News" rel="category tag" href="http://www.blogherald.com/category/news/">News</a> on June 2, 2009 1:26 pm</div>
<div class="right">
<p>by <a title="Posts by Lorelle VanFossen" href="http://www.blogherald.com/author/lorelle/">Lorelle VanFossen</a></div>
</div>
<div class="entry">
<p><img class="alignright" src="http://www.blogherald.com/wp-content/uploads/2007/04/wpcommunity.png" alt="WordPress Community" /><a title="WordCamp San Francisco 2009" href="http://2009.sf.wordcamp.org/">WordCamp San Francisco 2009</a> this past weekend was a<a title="WordCamp San Francisco 2009 Rocks the WordPress Community" href="http://www.blogherald.com/2009/06/02/wordcamp-san-francisco-2009-rocks-the-wordpress-community/">resounding success</a>, but there is some major confusion coming from the presentation on the <em>State of the Word</em> by <a title="Matt Mullenweg" rel="tag" href="http://ma.tt/">Matt Mullenweg</a> about the “merger” of WordPress and WordPressMU.</p>
<p>In his presentation, Matt Mullenweg, the founder of WordPress, told the more than 700 attendees news about WordPress and its relatives under the <a title="Automattic - parent company of WordPress, WordPress.com, Akismet, BuddyPress, and more" rel="tag" href="http://www.automattic.com/">Automattic</a> umbrella, a form of stockholders report. He also announced that <a title="WordPress" rel="tag" href="http://www.wordpress.org/">WordPress</a> - the ORG part of WordPress - would be merged into <a title="WordPressMU" rel="tag" href="http://mu.wordpress.org/">WordPressMU</a>.</p>
<p>Many, including <a title="Hot News of the Day: WordPress and WordPress Mu to Merge" href="http://planetozh.com/blog/2009/05/hot-news-of-the-day-wordpress-and-wordpress-mu-to-merge/">Ozh of Planet Ozh</a>, <a title="WordPress and WordPress MU Merged?" href="http://www.themelab.com/2009/05/31/wordpress-and-wordpress-mu-merged/">The Theme Lab</a>, and <a title="WordPress and WordPress MU to Merge" href="http://technosailor.com/2009/05/30/wordcamp-sf-announcement-wordpress-and-wordpress-mu-to-merge/">Aaron Brazell</a> were quick to announce their thoughts about the “merger of WordPress and WordPressMU,” misunderstanding the story they were getting across the live blogs and twit-stream from WordCamp San Francisco.</p>
<p>While I’m waiting confirmation, my understanding from Matt’s announcement is that the long time home of all things WordPress, known by many as the WordPress dot org site, will become a<a title="WordPressMU" rel="tag" href="http://mu.wordpress.org/">WordPressMU</a> site, with nothing impacting the downloadable versions of WordPress.</p>
<p>With the site’s move to WordPressMU, combining the WordPress driven informational site with the <a title="bbPress forum software" rel="tag" href="http://www.bbpress.org/">bbPress</a> driven <a title="WordPress Support Forums" rel="tag" href="http://www.wordpress.org/support">WordPress Support Forums</a>, the site will also incorporate the hot new<a title="BuddyPress" rel="tag" href="http://buddypress.org/">BuddyPress</a> kit, a combination of WordPressMU specific Plugins that turn a site into a social media community platform, often called “Facebook in a box.”</p>
<p>This is a huge undertaking, with possibly million of registered users, testing WordPressMU, BuddyPress, bbPress, and the WordPress Community as the site undergoes the changes.</p>
<h3>Building a Real WordPress Community</h3>
<p>In the earliest days of <a title="WordPress.com free blogs" rel="tag" href="http://www.wordpress.com/">WordPress.com</a>, I really looked forward to the <em>community</em> part of WordPress.com bloggers rising up out of the multiple blogs hosted by WordPress.com. Global tags brought some people together, but individually, not by common interest.</p>
<p>With the move of the WordPress.org site to include the profiles and group “friends” and “followers,” I see that dream of a WordPress Community coming true.</p>
<p><a title="Contributing to WordPress, Part I: Development" href="http://wordpress.org/development/2009/03/contributing-to-wordpress-part-i-development/">Jane Wells has been working</a> on building a stronger WordPress Community set of volunteers and contributors, moving beyond coders and hackers to every day WordPress fans to help contribute to the development of WordPress in a variety of non-technical ways, from translations to simply their opinion and feedback. Imagine having access through the BuddyPress profiles on WordPress.org to information on the talents, abilities, and interests of all the WordPress users! The WordPress development team could directly consult with those expressing an interest in a specific area of WordPress.</p>
<p>What about WordPress Plugin authors all interested in the Google Maps API. Imagine them working together to create some new mapping feature for WordPress. Or WordPress members living in a region or community wanting to get together to create a WordPress Meetup or Users Group, or maybe a WordCamp.</p>
<p>I’ve found that people who use WordPress want to work with people who use WordPress. They also want to play with them. Think of the possibilities of creating a special interest group on car racing, a sport, knitting, book reading, or whatever interest you have and/or blog about. Why not? I’d love to connect with people interested in what I’m interested in, learning from and with each other by a common bond.</p>
<p>This is what I believe is the intention of converting the official WordPress.org site to WordPressMU and adding BuddyPress. It serves as a fantastic testing ground for BuddyPress, just as <a title="WordPress.com free blogs" rel="tag" href="http://www.wordpress.com/">WordPress.com</a> does for WordPress and WordPressMU, and will help unite WordPress users in new and exciting ways. With BuddyPress interaction, this may also change WordPress support in some very interesting ways as people may be able to reach out for support directly from the WordPress Community, and not just through the WordPress Support Forums.</p>
<p>I also see WordPress.com embracing BuddyPress as well, hopefully. That would really make my dream come true for the community I so long for from among my millions of brothers and sisters on WordPress.com. It is such a vibrant and mixed community, I’d love to really get to know who they are and what their interest are beyond the Google or WordPress.com search or tags.</p>
<p>In the future, it will be easier to install <a title="WordPressMU" rel="tag" href="http://mu.wordpress.org/">WordPressMU</a> or “flip a switch,” as many are calling it, between the single self-hosted version of WordPress and WordPressMU, but for now, I believe Matt’s intention was to announce the WordPress.org site going WordPressMU and BuddyPress.</p>
<p>It’s exciting times for the WordPress Community!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://carlosandrade.es/blogs/wordpress/2009/06/03/wordpress-and-wordpressmu-merged-whoa/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WP Super Cache 0.9.1</title>
		<link>http://carlosandrade.es/blogs/wordpress/2009/02/26/wp-super-cache-091/</link>
		<comments>http://carlosandrade.es/blogs/wordpress/2009/02/26/wp-super-cache-091/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 14:20:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[plugins]]></category>

		<category><![CDATA[WP Ssuper Cache]]></category>

		<guid isPermaLink="false">http://carlosandrade.es/blogs/wordpress/?p=5</guid>
		<description><![CDATA[Doncha ha publicado su nueva version de WP Super Cache 0.9.1 lo puedes leer en http://ocaoimh.ie/2009/02/26/wp-super-cache-091
]]></description>
			<content:encoded><![CDATA[<p>Doncha ha publicado su nueva version de WP Super Cache 0.9.1 lo puedes leer en <a href="http://ocaoimh.ie/2009/02/26/wp-super-cache-091/trackback/">http://ocaoimh.ie/2009/02/26/wp-super-cache-091</a></p>
]]></content:encoded>
			<wfw:commentRss>http://carlosandrade.es/blogs/wordpress/2009/02/26/wp-super-cache-091/feed/</wfw:commentRss>
		</item>
		<item>
		<title>phpXref Wordpress MU 2.7</title>
		<link>http://carlosandrade.es/blogs/wordpress/2009/02/23/phpxref-wordpress-mu-27/</link>
		<comments>http://carlosandrade.es/blogs/wordpress/2009/02/23/phpxref-wordpress-mu-27/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 14:25:54 +0000</pubDate>
		<dc:creator>carlos</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[branch 1676]]></category>

		<category><![CDATA[phpXref]]></category>

		<category><![CDATA[Wordpress MU]]></category>

		<guid isPermaLink="false">http://carlosandrade.es/blogs/wordpress/2009/02/23/phpxref-wordpress-mu-27/</guid>
		<description><![CDATA[He creado en este enlace una referencia cruzada del Wordpress Mu 2.7. Es de una version con alguna modificación del branch 1676
http://carlosandrade.es/static/WP27b/nav.html?index.html
Espero que este bien cacheado en htaccess
]]></description>
			<content:encoded><![CDATA[<p>He creado en este enlace una <a href="http://carlosandrade.es/static/WP27b/nav.html?index.html">referencia cruzada del Wordpress Mu 2.7</a>. Es de una version con alguna modificación del branch 1676</p>
<p>http://carlosandrade.es/static/WP27b/nav.html?index.html</p>
<p>Espero que este bien cacheado en htaccess</p>
]]></content:encoded>
			<wfw:commentRss>http://carlosandrade.es/blogs/wordpress/2009/02/23/phpxref-wordpress-mu-27/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.478 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-07 10:50:22 -->
<!-- Compression = gzip -->