Executive Summary

SysAdmins is a Medium rated Linux CTF challenge from HackSmarter that demonstrates how OSINT combined with obscure service enumeration can chain into full system compromise. Anonymous FTP access yields a data breach notification containing a defanged URL pointing to a leaked password list. A company website identifies three employees whose names serve as candidate usernames. Standard SSH brute forcing fails, but UDP enumeration reveals SNMPv3 running on the target. Valid SNMPv3 usernames are confirmed via error response analysis, and the leaked passwords are sprayed against the service to recover valid credentials. snmpwalk enumeration of running processes exposes SSH credentials for helena in plaintext. With SSH access established, an outdated sudo binary vulnerable to CVE-2025-32463 is exploited to escalate to root.


Attack Path

--- config: layout: fixed --- flowchart TB subgraph Phase1["OSINT & CREDENTIAL RECOVERY"] direction LR C["SNMPv3 Password Brute Force
waserby + Leaked List"] B["SNMPv3 User Enumeration
waserby — Valid Username"] A["FTP + Web OSINT
Password List + Employee Names"] end subgraph Phase2["INITIAL ACCESS & PRIVILEGE ESCALATION"] direction LR F["Root Shell
CVE-2025-32463 — sudo-chwoot.sh"] E["Vulnerable sudo Binary
CVE-2025-32463 Identified"] D["SSH Login — helena
Creds via snmpwalk Process List"] end A --> B B --> C D --> E E --> F Phase1 --> Phase2 L2[" "] L1[" "] style L2 fill:none,stroke:none style L1 fill:none,stroke:none

Tooling Analysis

The following tools were utilised during this engagement:

ToolCategoryPurpose
Nmap (TCP)ReconnaissanceInitial full port scan and service version detection.
Nmap (UDP)ReconnaissanceTop UDP port scan revealing SNMP on port 161.
FTP (anonymous)EnumerationAnonymous login to retrieve the data breach notification file.
HydraExploitationSSH password spraying using employee usernames and leaked passwords.
snmpgetExploitationSNMPv3 username validation and password brute force via bash loop.
snmpwalkExploitationEnumerating running processes to recover plaintext SSH credentials.
SSHInitial Access      Logging in as helena using credentials recovered via snmpwalk.
CVE-2025-32463      Privilege EscalationExploiting a vulnerable sudo binary to escalate to root.

1. Enumeration & Reconnaissance

Service Scanning

The engagement began with a comprehensive Nmap scan:

nmap -p- -sV -sC -T4 -oN full_scan.txt 10.1.187.165

SysAdmins1.png

The scan identified an FTP server with anonymous access enabled, along with an SSH service.

Anonymous FTP

An anonymous FTP login was performed and the directory contents listed:

ftp anonymous@10.1.187.165

A file named data_breach_notification.txt was present and downloaded with mget *.*:

SysAdmins2.png

The file described a data breach and included a defanged URL pointing to a pastebin-hosted password list:

SysAdmins3.png

Leaked Password List

Visiting the defanged URL revealed a password list to be used for credential attacks:

SysAdmins4.png

Web Application — Employee Enumeration

The hosted website appeared to be a system administration services company. The team page listed three employees, providing candidate usernames:

SysAdmins5.png

SysAdmins6.png


2. SSH Brute Force & UDP Enumeration

SSH Password Spray

Hydra was used to spray the leaked password list against the SSH service using the employee names as usernames:

hydra -L users.txt -P passwords.txt ssh://10.1.187.165 -t 4 -vV

SysAdmins7.png

No valid credentials were found via SSH. With no other TCP services running, UDP ports were scanned:

nmap -sU --top-ports 10 10.1.187.165

SysAdmins8.png

SNMP was open on UDP port 161.


3. SNMPv3 Enumeration & Credential Recovery

SNMP Version Fingerprinting

The SNMP version was identified using Nmap scripts:

nmap -sU -p 161 --script snmp-info 10.1.187.165

SysAdmins9.png

Standard community strings failed, including the 3000+ entry list from seclists. A more targeted scan confirmed SNMPv3, which does not use community strings:

nmap -sU -p 161 -sV --script snmp-info,snmp-sysdescr 10.1.187.165

SysAdmins10.png

Username Validation

SNMPv3 returns different error messages for invalid users versus authentication failures. The employee usernames were tested with snmpget to identify valid accounts:

snmpget -v3 -l noAuthNoPriv -u <username> 10.1.187.165 1.3.6.1.2.1.1.1.0

SysAdmins11.png

waserby returned an authentication error rather than a user not found error, confirming it as a valid SNMPv3 username.

Password Brute Force

The leaked password list was filtered to remove entries shorter than 8 characters (SNMPv3’s minimum requirement):

awk 'length >= 8' passwords.txt > passwords_8plus.txt

A bash loop was used to spray the filtered list against the SNMPv3 service, stopping on any response other than an authentication failure:

while read -r pass; do
  result=$(snmpget -v3 -l authNoPriv -u waserby -a MD5 -A "$pass" -t 1 -r 1 10.1.187.165 1.3.6.1.2.1.1.1.0 2>&1)
  if [[ "$result" != *"Authentication failure"* ]]; then
    echo "POSSIBLE HIT ($pass):"
    echo "$result"
  fi
done < passwords_8plus.txt

SysAdmins12.png

Valid credentials were recovered for the waserby SNMPv3 account.

snmpwalk Process Enumeration

With valid credentials, snmpwalk was used to enumerate running processes on the host:

snmpwalk -v3 -l authNoPriv -u waserby -a MD5 -A butterfly 10.1.187.165 1.3.6.1.2.1.25

The process list contained plaintext SSH credentials for helena:

SysAdmins13.png


4. Initial Access — SSH as helena

The credentials recovered from the snmpwalk output were used to authenticate via SSH:

SysAdmins14.png

The user flag was located in helena’s home directory:

SysAdmins15.png


5. Privilege Escalation — CVE-2025-32463

Vulnerable sudo Binary

After exhausting standard escalation paths, the version of installed binaries was checked. The sudo binary was found to be running a version vulnerable to CVE-2025-32463:

SysAdmins16.png

A public exploit is available at https://github.com/pr0v3rbs/CVE-2025-32463_chwoot.

Exploitation

The sudo-chwoot.sh exploit script was copied to the target machine, made executable, and run with bash:

SysAdmins17.png

A root shell was obtained. The root flag was retrieved from /root/root.txt:

SysAdmins18.png


Vulnerability Mapping (CWE)

IDVulnerability NameCWE Mapping
1Anonymous FTP Exposing Sensitive Breach NotificationCWE-284: Improper Access Control
2SNMPv3 Service Accessible with Brute-Forceable Credentials      CWE-307: Improper Restriction of Excessive Authentication Attempts
3Plaintext Credentials Visible in SNMP Process EnumerationCWE-312: Cleartext Storage of Sensitive Information
4      Unpatched sudo Binary Vulnerable to CVE-2025-32463CWE-269: Improper Privilege Management

Remediation & Mitigation Strategies

1. Disable Anonymous FTP and Restrict Sensitive File Storage (NIST AC-3, CIS Control 3.3)

  • Mitigation: Anonymous FTP access must be disabled on all production systems. Where FTP is required, enforce authenticated access with least-privilege accounts and restrict accessible directories to only those necessary. Sensitive documents such as data breach notifications must never be stored in publicly accessible locations — distribute these through authenticated, encrypted channels only.

2. Restrict SNMP Access and Enforce Strong SNMPv3 Authentication (NIST IA-2, CIS Control 4.2)

  • Mitigation: SNMP should be restricted to trusted management network segments via firewall rules, preventing external access to UDP port 161. SNMPv3 must be configured with strong, unique passphrases of sufficient length and complexity to resist brute force. Implement account lockout or rate limiting on authentication attempts where the SNMP implementation supports it, and audit SNMP access logs regularly for unusual query patterns.

3. Prevent Credential Exposure in SNMP Process Data (NIST IA-5, CIS Control 3.11)

  • Mitigation: Processes that require credentials should never pass them as command-line arguments, as these are visible to all users via process listing tools and SNMP MIBs. Use environment variables, configuration files with restricted permissions, or secrets management solutions to supply credentials to running processes. Audit running processes periodically to identify credential exposure in process arguments.

4. Apply Security Patches Promptly — sudo and System Binaries (NIST SI-2, CIS Control 7.6)

  • Mitigation: Critical system binaries such as sudo must be kept up to date with security patches applied as soon as they are available, particularly for vulnerabilities with public exploits. Implement a patch management process with defined SLAs for critical severity vulnerabilities. Use vulnerability scanning tools to identify outdated or unpatched binaries across all managed systems, and prioritise remediation based on exploitability and exposure.
[END_OF_FILE]