漏洞信息
漏洞名称: IoT vDME Simulator Panel - Detect
漏洞类型: 未授权访问
漏洞等级: 中危
漏洞描述: IoT vDME Simulator是一个用于模拟物联网设备的工具,通常用于开发和测试环境中,以模拟物联网设备的行为和数据交换。这种工具在物联网开发和测试领域较为常见,但其暴露的面板如果配置不当,可能会导致安全风险。该漏洞属于未授权访问类型,具体表现为IoT vDME Simulator面板允许匿名用户创建新项目,而无需任何形式的身份验证。这种漏洞的根源在于缺乏适当的访问控制机制,使得未经认证的用户能够执行本应受限的操作。这种漏洞的存在可能导致恶意用户滥用系统功能,例如创建恶意项目或干扰正常的模拟过程,从而可能对依赖这些模拟数据的开发和测试活动造成影响。虽然该漏洞的CVSS评分为5.3,属于中等严重性,但在特定环境下,如开发环境中使用了敏感数据,其实际影响可能会更加严重。
产品名称: IoT vDME Simulator
搜索语法: http.title:”IoT vDME Simulator”
来源: https://github.com/projectdiscovery/nuclei-templates/blob/3442666f0f77cfb9c0212eb8044484062643effd/http%2Fmisconfiguration%2Fiot-vdme-simulator.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
| id: iot-vdme-simulator
info: name: IoT vDME Simulator Panel - Detect author: tess severity: medium description: | loT vDME Simulator panel was detected. Exposure IoT vDME Simulator panel allows anonymous access to create new Items. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N cvss-score: 5.3 cwe-id: CWE-200 metadata: verified: true max-request: 2 shodan-query: http.title:"IoT vDME Simulator" tags: exposure,misconfig,panel
http: - method: GET path: - '{{BaseURL}}' - '{{Host}}:{{Port}}'
stop-at-first-match: true
matchers-condition: and matchers: - type: word part: body words: - '<title>IoT vDME Simulator</title>' - 'Configuration Repository' - 'Current configuration' condition: and
- type: word part: header words: - "text/html"
- type: status status: - 200
|