赞
踩
DVWA-1.0.7.zip
http://IP:Port/dvwa/login.php。默认用户名 admin, 默认密码 password
SQL注入是发生在应用程序数据库层的安全漏洞。简而言之,是输入的文本中注入SQL指令,在设计不良的程序当中忽略了检查,那么这些注入进去的指令就会被数据库服务器误认为是正常的SQL指令而执行,因此遭到破坏。
1.数字型注入
http://www.test.com/msg/test.php?myno=1’
http://www.test.com/msg/test.php?myno=1 or 1=1
http://www.test.com /msg/test.php?myno=1 and 1=2
http://www.test.com/msg/test/php?myno=1 or
‘abc’=‘ab’||‘c’
http://www.test.com/msg/test.php?mychar=aaaa’
http://www.test.com/msg/test.php?mychar=aaaa’ or
‘1’=‘1
http://www.test.com /msg/test.php?mychar=aaaa’ and
‘1’=‘2
http://www.test.com/msg/test/php?mychar=aaaa’ or
‘abc’=‘ab’||'c
SQL注入防范
使用绑定变量
使用存储过程
检查数据类型
使用安全函数
ESAPI.encoder().encodeForSQL
OWASP防御方案,服务端输入校验和输出编码
规则一:进入HTML标签
HTML编码,& -> &
ESAPI.encoder().encodeForHTML
规则二:进入HTML属性值
value,width,height等,编码单引号和双引号为&#xHH
ESAPI.encoder().encodeForAttribute
规则三:进入JavaScript中
ESAPI.encoder().encodeForJavaScript
规则四:进入CSS中
ESAPI.encoder().encodeForCSS
规则五:进入URL
对特殊字符采用%HH编码
ESAPI.encoder.encodeForURL
下一节:更新接口安全测试之XS
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。