【web安全】程式設計常用工具類

qianliyan0130發表於2015-03-18

1 apache commons-lang StringEscapeUtils類

  • escapeHtml /unescapeHtml 轉義/反轉義html指令碼
  • escapeJavascript/unescapeJavascript 轉義/反轉義js指令碼
  • escapeSql 提供sql轉移功能,防止sql注入攻擊

2 org.springframework.web.util.HtmlUtils.htmlEscape

 <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>3.0.6.RELEASE</version>
</dependency>

相關文章