The Google Caja HTML sanitizer can be made "web-ready" by embedded it in a web worker. Any global variables introduced by the sanitizer will be contained within the worker, plus processing takes place in its own thread.
For browsers that do not support Web Workers, we can use an iframe as a separate environment for the sanitizer to work in. Timothy Chien has a polyfill that does just this, using iframes to simulate Web Workers, so that part is done for us.
The Caja project has a wiki page on how to use Caja as a standalone client-side sanitizer:
- Checkout the source, then build by running
ant
- Include
html-sanitizer-minified.js or html-css-sanitizer-minified.js in your page
- Call
html_sanitize(...)
The worker script only needs to follow those instructions:
importScripts('html-css-sanitizer-minified.js'); // or 'html-sanitizer-minified.js'
var urlTransformer, nameIdClassTransformer;
// customize if you need to filter URLs and/or ids/names/classes
urlTransformer = nameIdClassTransformer = function(s) { return s; };
// when we receive some HTML
self.onmessage = function(event) {
// sanitize, then send the result back
postMessage(html_sanitize(event.data, urlTransformer, nameIdClassTransformer));
};
(A bit more code is needed to get the simworker library working, but it's not important to this discussion.)
Demo: https://dl.dropbox.com/u/291406/html-sanitize/demo.html