π3β€1π1π€‘1
Recently came across an interesting CVE with CVSS score of 9.8: CVE-2026-24061 Unauthenticated Root Access in
Root Cause:
The vulnerability stems from a commit that added a
An attacker can exploit this by setting
The
See more.
#random_PoK #InfoSec #suggestion_box
telnetd. The issue dates back to version 1.9.3, released in May 2015.Root Cause:
The vulnerability stems from a commit that added a
%U placeholder to the login command template. This placeholder is replaced with the USER environment variable, which clients can set through Telnetβs NEW_ENVIRON option during connection negotiation. The issue is that telnetd performs no sanitization or validation of this value before inserting it into the command arguments.An attacker can exploit this by setting
USER to "-f root". When telnetd constructs the login command, it becomes:/usr/bin/login -h [hostname] β-f rootβ
The
-f flag tells login to skip authentication entirely and immediately grant a shell to the specified user. This results in instant root access without providing any credentials.See more.
#random_PoK #InfoSec #suggestion_box
π₯4