I am using Clojure/Ring/Compojure-0.4/Enlive stack to build a web application.
Are there functions in this stack that would either strip HTML or HTML-encode (i.e. <a> to <a>) user-supplied strings in order to prevent XSS attacks?
|
feedback
|
|
Update: I knew there had to be more than that...
These are wrappers around Original answer follows. I'm not sure whether there is a public function to do this, but
( You could get at that function with | |||||||||||
feedback
|
|
There's also
This strikes me as not as useful as it could be, because you might want to escape multi-character sequences and this won't let you. But it might work for your HTML-escaping needs. And then there are many Java libraries for this, of course. You could use StringEscapeUtils from Apache Commons:
This strikes me as a bit heavyweight for this purpose though. | |||||
feedback
|
|
It turns out Enlive does escape HTML by default if you use
| |||
|
feedback
|