Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2025-27519 — PoC exploit for Below privilege escalation (CVE-2025-27591) allowing local root access via symlink manipulation in world-writable log directory. | Kitploit
Tools/GitHubGitHub/diabl0xe/cve-2025-27519
Privilege EscalationVulnerability AnalysisExploitationLateral MovementPenetration TestingLearning & Education
GitHubdiabl0xe/cve-2025-27519

CVE-2025-27519

PoC exploit for Below privilege escalation (CVE-2025-27591) allowing local root access via symlink manipulation in world-writable log directory.

View Repository
223 days agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Below Privilege Escalation Exploit (CVE-2025-27519)

This repository contains a proof-of-concept (PoC) Bash script to exploit the Below privilege escalation vulnerability (CVE-2025-27519) on Linux systems. The exploit allows a local user to escalate privileges to root by abusing the way the below binary logs errors.

⚠️ Warning: This script is intended for educational purposes and authorized penetration testing only. Do not use it on systems you do not own or have permission to test.


Overview of the Vulnerability

  • CVE: CVE-2025-27519
  • Affected software: below logging utility
  • Impact: Local privilege escalation
  • Description: The below binary improperly handles error logging and file locks. Its log directory (/var/log/below/) is globally writable, allowing any local user to manipulate log files. By creating a symlink from error_root.log to /etc/ passwd and triggering below error, an attacker can insert a fake root user entry and gain administrative privileges.

Why it works:

  1. below writes errors to /var/log/below/error_root.log.
  2. The log directory /var/log/below/ is world-writable (drwxrwxrwx), allowing any local user to replace or symlink the log file.
  3. The program does not properly check file ownership and permissions before writing.
  4. By replacing the log file with a symlink to /etc/passwd, the script can insert a fake root user entry
  5. after triggering an error low priv user can able to create fake user inside /etc/passwd

Usage

  1. Clone the repository:
    root@kitploit:~
    git clone https://github.com/Diabl0xE/CVE-2025-27519
    cd CVE-2025-27519
    
  2. Make the script executable:
    root@kitploit:~
    chmod +x exploit.sh
    
  3. Run the exploit:
    root@kitploit:~
    ./exploit.sh
    
Download Tool