漏洞描述
Docker Daemon exposed on the network map can help remote attacker to gain access to the Docker containers and potentially the host system.
fofa: port="2375" && server="docker"
id: docker-daemon-exposed
info:
name: Docker Daemon Exposed
author: arafatansari
severity: critical
verified: true
description: |
Docker Daemon exposed on the network map can help remote attacker to gain access to the Docker containers and potentially the host system.
fofa: port="2375" && server="docker"
created: 2023/05/16
set:
host: request.url.domain
hostname: request.url.host
rules:
r0:
request:
type: tcp
host: "{{hostname}}"
data: "Docker:\nVersion:\n"
expression: 'response.raw.bcontains(b"Server: Docker")'
r1:
request:
type: tcp
host: "{{host}}:2375"
data: "Docker:\nVersion:\n"
expression: 'response.raw.bcontains(b"Server: Docker")'
expression: r0() || r1()