-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Follow up of erlef/website#493 (review)
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
layout: post | ||
id: 173 | ||
title: "Publicly Exposed Distribution" | ||
lead: "Exposed EPMD: A Hidden Security Risk for RabbitMQ and the BEAM Ecosystem" | ||
tags: "security, epmd, cybersecurity, epmd" | ||
date: "2024-12-18" | ||
author: "Jonatan Männchen" | ||
--- | ||
|
||
## Exposed EPMD: A Hidden Security Risk for RabbitMQ and the BEAM Ecosystem | ||
|
||
The Erlang Port Mapper Daemon (EPMD) is a built-in component that helps Erlang-based applications (including RabbitMQ) discover each other’s distribution ports for clustering. Although EPMD itself isn’t directly dangerous, its exposure on the public internet often signals that Erlang Distribution ports are also exposed. This creates a serious security risk: if attackers find these distribution ports, they can potentially join your cluster, run arbitrary code, and compromise your systems. Recent scans have revealed over 85,000 instances of publicly accessible EPMD, with roughly half associated with RabbitMQ servers. | ||
|
||
If left unsecured, exposed Erlang Distribution ports let attackers gain a foothold in your system. Fortunately, mitigation steps are straightforward: disable Erlang Distribution if you’re not clustering, or restrict it behind a firewall and proper network configuration—and ensure Erlang Distribution is never exposed to untrusted networks. | ||
|
||
Read the full article on the [EEF blog](https://erlef.org/blog/eef/epmd-public-exposure). |