5671,5672 - Pentesting AMQP
Last updated
Was this helpful?
Last updated
Was this helpful?
RabbitMQ is a message-queueing software also known as a message broker or queue manager. Simply said; it is software where queues are defined, to which applications connect in order to transfer a message or messages. A message can include any kind of information. It could, for example, have information about a process or task that should start on another application (which could even be on another server), or it could be just a simple text message. The queue-manager software stores the messages until a receiving application connects and takes a message off the queue. The receiving application then processes the message. Definition from .
Default port: 5672,5671
5672, 5671: used by AMQP 0-9-1 and 1.0 clients without and with TLS
AMQP
From you can find that rabbitmq uses several ports:
1883, 8883: ( without and with TLS, if the is enabled. .
4369: epmd, a peer discovery service used by RabbitMQ nodes and CLI tools. .
15672: clients, and (only if the is enabled). .
15674: STOMP-over-WebSockets clients (only if the is enabled)
15675: MQTT-over-WebSockets clients (only if the is enabled)
15692: Prometheus metrics (only if the is enabled)
25672: used for inter-node and CLI tools communication (Erlang distribution server port) and is allocated from a dynamic range (limited to a single port by default, computed as AMQP port + 20000). Unless external connections on these ports are really necessary (e.g. the cluster uses or CLI tools are used on machines outside the subnet), these ports should not be publicly exposed. See for details. Only 9 of these ports opened on the internet.
35672-35682: used by CLI tools (Erlang distribution client ports) for communication with nodes and is allocated from a dynamic range (computed as server distribution port + 10000 through server distribution port + 10010). See for details.
61613, 61614: without and with TLS (only if the is enabled). Less than 10 devices with this port open and mostly UDP for DHT nodes.