rfc:secure-html-escape
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Previous revision
Next revision
rfc:secure-html-escape [2014/02/17 05:23] yohgaki
Line 1: Line 1:
 +
 +====== PHP RFC: Improve HTML escape ======
 +  * Version: 1.0
 +  * Created: 2014-02-03
 +  * Date: 2014-02-10
 +  * Author: Yasuo Ohgaki <yohgaki@ohgaki.net>
 +  * Status: Vote
 +  * First Published at: http://wiki.php.net/rfc/secure-html-escape
 +
 +===== Introduction =====
 +
 +HTML escape can be improved by escaping all dangerous chars. HTML escape can be improved by escaping "<", ">", """, "'", "&" and "/".
 +
 +OWASP [[https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet#RULE_.231_-_HTML_Escape_Before_Inserting_Untrusted_Data_into_HTML_Element_Content
 +|recommends]] escaping "<", ">", """, "'", "&" and "/".
 +
 +[[https://wiki.php.net/rfc/default_encoding|PHP 5.6 has default character encoding]], If PHP ignores ENT_COMPAT, users may write simply 
 +
 +<code php>
 +  <textarea><?php echo htmlentities($str); ?></textarea>
 +</code>
 +
 +Weak legacy scripts may be protected also by this change.
 +
 +
 +User may do
 +<code php>
 +  <tag attr=<?php echo htmlentities($str, ENT_QUOTES, 'UTF-8') ?>>
 +</code>
 +
 +When this is the case, HTML TAG structure is broken. It's broken in first place as attribute is not quoted, but it would not be good to destroy tag structure while we can avoid it.
 +
 +Or broken HTML parser may recognize JavaScript comment and execute malicious code. 
 +
 +<code html>
 +<tag onmouseover="user_code_here;/*"><tag foo="*/ evil_code_here;">
 +<tag onmouseover=user_code_here;/* ><tag foo=*/evil_code_here; >
 +</code>
 +
 +Escaping all chars recommended by OWASP always is more secure and preferred.
 +
 +NOTE: PCI DSS standard requires to follow OWASP, SANS, NIST and other security standards and guidelines.
 +
 +===== Proposal =====
 +
 +Escape all chars OWASP recommends.
 +
 +  * Deprecate ENT_COMPAT/ENT_QUOTES and ignore them and add "/" escape.
 +
 +===== Backward Incompatible Changes =====
 +
 +None for almost all applications.
 +
 +Since output differs, there might be test program issues.
 +
 +===== Proposed PHP Version(s) =====
 +
 +PHP 5.6 and up
 +
 +
 +===== Open Issues =====
 +
 +
 +
 +===== Vote =====
 +
 +
 +VOTE: 2014/02/17 - 2014/02/22
 + 
 +<doodle title="Add / escape and Make ENT_QUOTES default" auth="yohgaki" voteType="single" closed="false">
 +   * Yes
 +   * No
 +</doodle>
 +
 +Thank you for voting!
 +
 +===== Patches and Tests =====
 +
 +TBD
 +
 +===== Implementation =====
 +
 +After the project is implemented, this section should contain 
 +  - the version(s) it was merged to
 +  - a link to the git commit(s)
 +  - a link to the PHP manual entry for the feature
 +
 +===== References =====
 +
 +Links to external references, discussions or RFCs
 +
 +  * http://marc.info/?l=php-internals&m=139131067522473&w=2
 +
 +===== Rejected Features =====
 +
 +Keep this updated with features that were discussed on the mail lists.
 +
  
rfc/secure-html-escape.txt · Last modified: 2017/09/22 13:28 by 127.0.0.1