Code Monkey home page Code Monkey logo

Comments (7)

304NotModified avatar 304NotModified commented on August 16, 2024

Is this not a problem with IE's "great" MIME Type Detection ?

from htmlsanitizer.

gedeh avatar gedeh commented on August 16, 2024

But multimedia data type should be safe, no? for example audio, image, and video.

from htmlsanitizer.

304NotModified avatar 304NotModified commented on August 16, 2024

or example, when a web application allows users to upload an image and only checks the file extension, the user can upload an image.jpg that actually contains HTML code. Older versions of Internet Explorer (especially versions 6 and 7) then render the file as HTML, which opened the possibility for a persistent Cross-Site Scripting (XSS) attack.

http://blog.fox-it.com/2012/05/08/mime-sniffing-feature-or-vulnerability/

Not sure if this counts for data uris

from htmlsanitizer.

gedeh avatar gedeh commented on August 16, 2024

I tried several case with image and script, also iframe tag in IE11 (MDN page says IE11 only support data URI for CSS, link, and img)

<img alt="Incorrect image using image/png data type" src="data:image/png;base64,amF2YXNjcmlwdDphbGVydCgnWFNTJyk7"/>
<img alt="Incorrect image using text/html data type contain javascript:alert('XSS');" src="data:text/html;base64,amF2YXNjcmlwdDphbGVydCgnWFNTJyk7"/>
<img alt="Incorrect image using text/html data type contain <script>alert('Hello');</script>" src="data:text/html;base64,PHNjcmlwdD5hbGVydCgiSGVsbG8iKTs8L3NjcmlwdD4="/>
<script src="data:text/html;base64,amF2YXNjcmlwdDphbGVydCgnWFNTJyk7"></script>
<iframe src="data:text/html;base64,PHNjcmlwdD5hbGVydCgiSGVsbG8iKTs8L3NjcmlwdD4="></iframe>

img tag doesn't expose XSS threat although using invalid mime type and data. SO I think above link doesn't count for data uris

Updated

from htmlsanitizer.

mganss avatar mganss commented on August 16, 2024

If you want to allow the data protocol, you can do so using the AllowedSchemes property. Potential problems with "wrong" MIME types apply equally to http, don't they? That is, if you allow img tags, you'll have to trust the browser because you have no control over what the server responds with.

from htmlsanitizer.

304NotModified avatar 304NotModified commented on August 16, 2024

Agree on that :)

from htmlsanitizer.

gedeh avatar gedeh commented on August 16, 2024

Agreed too. Thanks for your explanation :)

from htmlsanitizer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.