The flaw exposes high-availability systems in telecom, IoT, and distributed computing environments to full compromise.
The vulnerability stems from improper handling of SSH protocol messages, enabling attackers to send connection protocol messages before completing authentication.
This bypasses critical security checks, allowing:
erlang%% Simplified vulnerable code logic
handle_ssh_msg(Msg, State) ->
case Msg of
{ssh_cm, _, _} -> process_pre_auth_cm(Msg); % Flawed pre-auth handling
_ -> standard_handler(Msg)
end.
Researchers from Ruhr University Bochum identified that this design flaw permits remote code execution (RCE) in the SSH daemon’s context.
When the daemon runs with root privileges (common in telecom infrastructure), attackers gain full system control.
| Metric | Value |
|---|---|
| CVSS Score | 10.0 (Critical) |
| Attack Vector | Network (AV:N) |
| Attack Complexity | Low (AC:L) |
| Privileges Required | None (PR:N) |
| User Interaction | None (UI:N) |
| Scope | Changed (S:C) |
| Confidentiality Impact | High (C:H) |
| Integrity Impact | High (I:H) |
| Availability Impact | High (A:H) |
| CWE-ID | CWE-306 |
# Block SSH port 22 access except for management IPs iptables -A INPUT -p tcp --dport 22 -s 192.0.2.0/24 -j ACCEPT iptables -A INPUT -p tcp --dport 22 -j DROPMayuresh Dani of Qualys warns: “This vulnerability enables threat actors to deploy ransomware or exfiltrate sensitive data from mission-critical systems”.
Ericsson’s advisory emphasizes that “all SSH implementations using Erlang/OTP are affected regardless of version”.
The Erlang/OTP team confirmed that patches eliminate the pre-authentication message handling flaw through improved state validation.
Organizations must prioritize patching given Erlang’s prevalence in telecom infrastructure and the vulnerability’s wormable potential.
Find this Story Interesting! Follow us on LinkedIn and X to Get More Instant Updates
The post “Severe Erlang/OTP SSH Flaw Enables Unauthenticated Remote Code Execution” appeared first on Cyber Security News.
Upcoming action movie prequel John Rambo has reportedly added James Franco to its cast. Details…
In the Grey is now playing in theaters. Jake Gyllenhaal and Henry Cavill met in…
At SIM 2026 in Porto, João Rui Ferreira, Secretary of State for the Economy, announced the…
At SIM 2026 in Porto, João Rui Ferreira, Secretary of State for the Economy, announced the…
This website uses cookies.