I want to display a mail which is in HTML format in a web page.
I guess there are several malicious things in HTML which I should remove before displaying the HTML to the user.
The HTML mail comes from an unknown source and could be created by a evil hacker.
What needs to be done to call "clean" HTML from unknown source?
Malicious content (like "Parental Advisory explicit contents") are not part of this question. I just want to be sure the HTML can do any harm.
When using
jQuery
:use
.text()
to escape HTML.When using
PHP
:use
htmlspecialchars()
to escape HTML. Don't be afraid of HTML tags visible in the browser, they are escaped.