encodeForHtml()
(CF10中的新增功能)与htmlEditFormat()
的区别是什么?
最佳答案
我认为它与Java的OWASP ESAPI中的encodeForHTML函数相同。避免XSS攻击以使用HTML内容更安全。
<cfsavecontent variable="htmlcontent">
<html>
<head>
<script>function hello() {alert('hello')}</script>
</head>
<body>
<a href="#bookmark">Book Mark & Anchor</a><br/>
<div class="xyz">Div contains & here.</div>
<IMG SRC=javascript:alert(&# x27XSS')>
<IMG SRC=javascript:alert('XSS')>
</body>
</html></cfsavecontent>
<cfoutput>#htmleditformat(htmlcontent)#</cfoutput>
<br />
<cfoutput>#encodeforhtml(htmlcontent)#</cfoutput>
关于coldfusion - encodeForHtml()与htmlEditFormat(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10597073/