GithubHelp home page GithubHelp logo

Comments (7)

weavejester avatar weavejester commented on August 28, 2024

Why?

from hiccup.

msmith-techempower avatar msmith-techempower commented on August 28, 2024

Most libraries that handle escaping do this; here is a simple mustache example to illustrate why:

<a href='{{untrustedData}}'>Click Me</a>

Apostrophes are technically valid replacements for quotes in this example, and if the untrusted data does not escape apostrophes and the untrusted data happens to be #' onclick='while(true){alert("hahahaha");} you have opened your page to an attack.

Basically, it is just considered best practice to escape apostrophes as well as quotes, amps, and lg/gt.

from hiccup.

weavejester avatar weavejester commented on August 28, 2024

So the use case is if Hiccup is used in conjunction with a library that uses single quotes?

I think we'll need to take into account the special case of HTML4, which doesn't have &apos;

from hiccup.

msmith-techempower avatar msmith-techempower commented on August 28, 2024

Full disclosure - I am updating a test that uses Hiccup to produce HTML output, and I validate the output for our benchmarks; I am running into the problem that we consider the test to have failed validation if the apostrophe is not escaped (again, web's "best practices" is rule of law for our validations).

HTML4 should have &#x27;, &#39;, or &#039; would you be willing to use one of those?

from hiccup.

weavejester avatar weavejester commented on August 28, 2024

Yep, it's recommended to use &#39; by the w3, though of course all the examples you give are just the same character in different bases.

Something like:

(replace "'" (if (= *html-mode* :sgml) "&#39;" "&apos;"))

from hiccup.

msmith-techempower avatar msmith-techempower commented on August 28, 2024

Sounds good to me.

from hiccup.

weavejester avatar weavejester commented on August 28, 2024

Fixed in 9d39730

from hiccup.

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.