Re: Security Markup

* Orion Adrian wrote:
>> > <div id="comment123"  nocode="true">
>>
>> I'm afraid that this would be too easy to bypass:
>>
>> <div id="comment123"  nocode="true">
>>         $comment
>> </div>
>>
>> $comment = '</div><script ...';
>
>Not if you required the comments to be well-formed by themselves.

Here is a "well-formed" comment:

  +ADw-/div+AD4-+ADw-script+AD4-alert('pwnd')+ADw-/script+AD4-...

If the document does not declare an encoding and the comment is placed
appropriately in the document, this will likely cause IE6 to consider
the document UTF-7 encoded and the script will be executed. Of course,
escaping the comment would not protect from this problem either, only
a proper encoding declaration will.
-- 
Björn Höhrmann · mailto:bjoern@hoehrmann.de · http://bjoern.hoehrmann.de
Weinh. Str. 22 · Telefon: +49(0)621/4309674 · http://www.bjoernsworld.de
68309 Mannheim · PGP Pub. KeyID: 0xA4357E78 · http://www.websitedev.de/ 

Received on Monday, 21 August 2006 13:38:49 UTC