<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre, #msg p { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[11808] trunk/wp-admin/includes/file.php:
  Strip slashes from POST data in request_filesystem_credentials(),
  props dd32, fixes #10567</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/11808">11808</a></dd>
<dt>Author</dt> <dd>azaozz</dd>
<dt>Date</dt> <dd>2009-08-13 06:03:26 +0000 (Thu, 13 Aug 2009)</dd>
</dl>

<h3>Log Message</h3>
<pre>Strip slashes from POST data in request_filesystem_credentials(), props dd32, fixes <a href="http://trac.wordpress.org/ticket/10567">#10567</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesfilephp">trunk/wp-admin/includes/file.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesfilephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/file.php (11807 => 11808)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/file.php        2009-08-12 10:57:15 UTC (rev 11807)
+++ trunk/wp-admin/includes/file.php        2009-08-13 06:03:26 UTC (rev 11808)
</span><span class="lines">@@ -676,13 +676,13 @@
</span><span class="cx">         $credentials = get_option('ftp_credentials', array( 'hostname' =&gt; '', 'username' =&gt; ''));
</span><span class="cx"> 
</span><span class="cx">         // If defined, set it to that, Else, If POST'd, set it to that, If not, Set it to whatever it previously was(saved details in option)
</span><del>-        $credentials['hostname'] = defined('FTP_HOST') ? FTP_HOST : (!empty($_POST['hostname']) ? $_POST['hostname'] : $credentials['hostname']);
-        $credentials['username'] = defined('FTP_USER') ? FTP_USER : (!empty($_POST['username']) ? $_POST['username'] : $credentials['username']);
-        $credentials['password'] = defined('FTP_PASS') ? FTP_PASS : (!empty($_POST['password']) ? $_POST['password'] : '');
</del><ins>+        $credentials['hostname'] = defined('FTP_HOST') ? FTP_HOST : (!empty($_POST['hostname']) ? stripslashes($_POST['hostname']) : $credentials['hostname']);
+        $credentials['username'] = defined('FTP_USER') ? FTP_USER : (!empty($_POST['username']) ? stripslashes($_POST['username']) : $credentials['username']);
+        $credentials['password'] = defined('FTP_PASS') ? FTP_PASS : (!empty($_POST['password']) ? stripslashes($_POST['password']) : '');
</ins><span class="cx"> 
</span><span class="cx">         // Check to see if we are setting the public/private keys for ssh
</span><del>-        $credentials['public_key'] = defined('FTP_PUBKEY') ? FTP_PUBKEY : (!empty($_POST['public_key']) ? $_POST['public_key'] : '');
-        $credentials['private_key'] = defined('FTP_PRIKEY') ? FTP_PRIKEY : (!empty($_POST['private_key']) ? $_POST['private_key'] : '');
</del><ins>+        $credentials['public_key'] = defined('FTP_PUBKEY') ? FTP_PUBKEY : (!empty($_POST['public_key']) ? stripslashes($_POST['public_key']) : '');
+        $credentials['private_key'] = defined('FTP_PRIKEY') ? FTP_PRIKEY : (!empty($_POST['private_key']) ? stripslashes($_POST['private_key']) : '');
</ins><span class="cx"> 
</span><span class="cx">         //sanitize the hostname, Some people might pass in odd-data:
</span><span class="cx">         $credentials['hostname'] = preg_replace('|\w+://|', '', $credentials['hostname']); //Strip any schemes off
</span><span class="lines">@@ -697,7 +697,7 @@
</span><span class="cx">         else if ( defined('FTP_SSL') &amp;&amp; 'ftpext' == $type ) //Only the FTP Extension understands SSL
</span><span class="cx">                 $credentials['connection_type'] = 'ftps';
</span><span class="cx">         else if ( !empty($_POST['connection_type']) )
</span><del>-                $credentials['connection_type'] = $_POST['connection_type'];
</del><ins>+                $credentials['connection_type'] = stripslashes($_POST['connection_type']);
</ins><span class="cx">         else if ( !isset($credentials['connection_type']) ) //All else fails (And its not defaulted to something else saved), Default to FTP
</span><span class="cx">                 $credentials['connection_type'] = 'ftp';
</span><span class="cx"> 
</span><span class="lines">@@ -791,10 +791,10 @@
</span><span class="cx"> &lt;/table&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;?php if ( isset( $_POST['version'] ) ) : ?&gt;
</span><del>-&lt;input type=&quot;hidden&quot; name=&quot;version&quot; value=&quot;&lt;?php echo esc_attr($_POST['version']) ?&gt;&quot; /&gt;
</del><ins>+&lt;input type=&quot;hidden&quot; name=&quot;version&quot; value=&quot;&lt;?php echo esc_attr(stripslashes($_POST['version'])) ?&gt;&quot; /&gt;
</ins><span class="cx"> &lt;?php endif; ?&gt;
</span><span class="cx"> &lt;?php if ( isset( $_POST['locale'] ) ) : ?&gt;
</span><del>-&lt;input type=&quot;hidden&quot; name=&quot;locale&quot; value=&quot;&lt;?php echo esc_attr($_POST['locale']) ?&gt;&quot; /&gt;
</del><ins>+&lt;input type=&quot;hidden&quot; name=&quot;locale&quot; value=&quot;&lt;?php echo esc_attr(stripslashes($_POST['locale'])) ?&gt;&quot; /&gt;
</ins><span class="cx"> &lt;?php endif; ?&gt;
</span><span class="cx"> &lt;p class=&quot;submit&quot;&gt;
</span><span class="cx"> &lt;input id=&quot;upgrade&quot; name=&quot;upgrade&quot; type=&quot;submit&quot; class=&quot;button&quot; value=&quot;&lt;?php esc_attr_e('Proceed'); ?&gt;&quot; /&gt;
</span></span></pre>
</div>
</div>

</body>
</html>