当前位置:   article > 正文

ESAPI_esapi.encoder().encodeforsql(new mysqlcodec(mysqlc

esapi.encoder().encodeforsql(new mysqlcodec(mysqlcodec.mode.standard),input1

ESAPI是owasp提供的一套API级别的web应用解决方案。https://www.owasp.org/

转自:https://blog.csdn.net/frog4/article/details/81876462

maven

  1. <dependency>
  2. <groupId>org.owasp.esapi</groupId>
  3. <artifactId>esapi</artifactId>
  4. <version>2.1.0.1</version>
  5. </dependency>

加入配置文件

在工程的资源文件目录下增加配置配置文件ESAPI.properties及validation.properties,文件内容可为空。如果为空则都取默认值。

使用

1、针对xss漏洞

  1. //对用户输入“input”进行HTML编码,防止XSS
  2. input = ESAPI.encoder().encodeForHTML(input);
  3. //根据自己不同的需要可以选用以下方法
  4. //input = ESAPI.encoder().encodeForHTMLAttribute(input);
  5. //input = ESAPI.encoder().encodeForJavaScript(input);
  6. //input = ESAPI.encoder().encodeForCSS(input);
  7. //input = ESAPI.encoder().encodeForURL(input);
  8. //针对富文本进行html编码

2、针对sql注入漏洞

除了支持mysql还支持oracle

  1. String input1="用户输入1";
  2. String input2="用户输入2";
  3. //解决注入问题
  4. input1 = ESAPI.encoder().encodeForSQL(new MySQLCodec(MySQLCodec.Mode.STANDARD),input1);
  5. input2 = ESAPI.encoder().encodeForSQL(new MySQLCodec(MySQLCodec.Mode.STANDARD),input2);
  6. String sqlStr="select name from tableA where id="+input1 +"and date_created ='" + input2+"'";
  7. //执行SQL

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/150456
推荐阅读
  

闽ICP备14008679号