CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



GHSA-MXWC-WH95-PW4G

GHSA-MXWC-WH95-PW4G: Denial of Service via Uncontrolled Recursion in Trapster DNS Parser

Amit Schendel
Amit Schendel
Senior Security Researcher

Jul 8, 2026·6 min read·9 visits

Executive Summary (TL;DR)

Unauthenticated malformed DNS compression pointers trigger uncontrolled recursion in the packet decoder, crashing the per-packet handler.

The trapster honeypot package is vulnerable to a remote denial of service (DoS) vulnerability due to uncontrolled recursion during the parsing of malformed DNS compression pointers in the decode_labels function.

Vulnerability Overview

The trapster package is an open-source, Python-based honeypot framework designed to detect malicious network scanning and reconnaissance activity. It emulates multiple network services, exposing specialized listeners that collect incoming payloads and catalog attacking hosts.

Among its modules is a Domain Name System (DNS) honeypot listener. This listener binds to a specified UDP interface and port, processing unauthenticated packets directly from the network. Because of its exposed nature, this listener represents a primary attack surface for any remote, unauthenticated threat actor targeting the system.

A severe flaw in the DNS parser allows attackers to crash the honeypot handler remotely. The vulnerability stems from uncontrolled recursion (CWE-674) within the packet-parsing logic of the DNS module. By sending carefully crafted DNS packets, a remote attacker can exhaust system resources and render the honeypot completely non-functional.

Root Cause Analysis

To optimize packet sizes, RFC 1035 specifies a mechanism called DNS name compression. Instead of repeating identical domain name labels, the protocol permits a label to point to a prior offset within the same message where the domain name is already defined. A compression pointer is identified when the first two bits of a length byte are set to 11 (binary 11000000 or hex 0xC0).

The vulnerability resides in the decode_labels() function inside trapster/libs/dns.py. When encountering the 0xC0 byte sequence, the function extracts the target offset and recursively calls decode_labels() to resolve the compressed string. It fails to maintain state or verify whether the target offset has already been processed during the execution of the current request.

Because there is no cycle detection or recursion limit, an attacker can exploit this omission by passing a circular reference. Additionally, the parser does not enforce a recursion depth limit, meaning even non-cyclic but highly chained pointer offsets can trigger a stack overflow. When CPython encounters these inputs, it raises a RecursionError and halts processing.

Code Analysis

An analysis of the vulnerable source code in trapster/libs/dns.py reveals the following structural implementation:

def decode_labels(message, offset):
    labels = []
    while True:
        length, = struct.unpack_from("!B", message, offset)
        if (length & 0xC0) == 0xC0:
            pointer, = struct.unpack_from("!H", message, offset)
            offset += 2
            # Vulnerable recursive call
            return labels + decode_labels(message, pointer & 0x3FFF), offset

The recursive call decode_labels(message, pointer & 0x3FFF) accepts any arbitrary offset parsed from the network packet without enforcing any upper boundaries or monotonic progression restrictions. An attacker-controlled pointer can point backwards, forwards, or to itself, leading to infinite loops or deep exhaustion of the stack.

To remediate this root cause, the function must be refactored into an iterative structure. A safe implementation tracks the maximum allowed offset, ensuring that any subsequent compression pointer strictly references a decreasing index within the packet byte array, thereby preventing cycles entirely. The following code snippet shows a robust, hardened iterative version:

def decode_labels(message, offset):
    labels = []
    return_offset = None
    max_allowed_pointer = len(message)
    while True:
        length, = struct.unpack_from("!B", message, offset)
        if (length & 0xC0) == 0xC0:
            pointer, = struct.unpack_from("!H", message, offset)
            if return_offset is None:
                return_offset = offset + 2
            target = pointer & 0x3FFF
            if target >= max_allowed_pointer:
                raise ValueError("invalid DNS compression pointer")
            max_allowed_pointer = target
            offset = target
            continue

Exploitation Methodology

Exploitation of this vulnerability is highly operationalizable and requires zero prerequisites. Because the honeypot binds to a public-facing UDP port to catch scanning attempts, the attack payload can be delivered in a single, unauthenticated UDP packet.

The first vector (Vector A) employs a self-referential compression pointer. The attacker builds a DNS query where a label pointer references its own offset (for example, offset 12). When the parser reads offset 12, it encounters 0xC00C, leading to an immediate loop that exhausts Python's recursion limit.

The second vector (Vector B) constructs a deep pointer chain. The packet contains a highly nested list of pointers that link to one another sequentially. This allows an attacker to trigger a stack crash even if the implementation checks for direct circular references, as the cumulative recursion depth exceeds Python's default stack frame limit.

Because the DNS server implementation in trapster fails to capture parsing-related exceptions inside DnsUdpProtocol.datagram_received(), the raised RecursionError escapes the task handler and propagates to the main asyncio event loop. This leads to thread instability, massive log generation, and a persistent Denial of Service.

Impact Assessment

While this vulnerability does not allow remote code execution or unauthorized access to system data, its security impact remains highly significant for monitoring infrastructure. The primary consequence is a complete Denial of Service (DoS) of the DNS honeypot listener.

Honeypots serve as a critical early warning system for enterprise networks, logging pre-attack scanning and mapping active threats. By disabling the trapster listener, an attacker can blind the security team, executing subsequent attacks and scanning networks without triggering alerts.

The CVSS v3.1 base score is assessed at 5.3, with the following vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L. Although the availability impact is classified as low under standard CVSS metrics because it does not crash the host operating system, it completely neutralizes the functional utility of the security tool.

Remediation and Mitigation

Remediation of this vulnerability requires updating the DNS module to use an iterative label parsing algorithm. Security administrators should deploy the iterative refactoring of decode_labels() as shown in the code analysis section to prevent pointer loops.

In addition to parsing corrections, the core network listener in trapster/modules/dns.py must be hardened. The calling logic should handle parsing errors locally instead of allowing raw exceptions to escape into the underlying event loop. The protocol handler should wrap the decode sequence in a standard try-except structure:

try:
    message = dns.decode_dns_message(data)
except (ValueError, IndexError, struct.error) as err:
    self.logger.warning(f"Malformed DNS packet received: {err}")
    return

Implementing both the iterative parser and local exception containment provides complete protection against variant compression attacks and ensures service stability during hostile network exposure.

Technical Appendix

CVSS Score
5.3/ 10
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L

Affected Systems

trapster honeypot daemon

Affected Versions Detail

Product
Affected Versions
Fixed Version
trapster
0xBallpoint
<= 1.2.0-
AttributeDetail
CWE IDCWE-674
Attack VectorNetwork (UDP)
CVSS v3.15.3 (Medium)
Exploit StatusProof-of-Concept Available
ImpactDenial of Service (DoS)

MITRE ATT&CK Mapping

T1499.004Endpoint DoS: Application Exhaustion
Impact
CWE-674
Uncontrolled Recursion

The software does not properly control the recursion depth or cycle detection when handling nested structures, leading to a stack exhaustion or crash.

Vulnerability Timeline

Vulnerability identified in private audit of DNS parsing engine
2026-06-15
Coordinated disclosure and publication of GHSA-MXWC-WH95-PW4G
2026-07-08

References & Sources

  • [1]GitHub Security Advisory GHSA-MXWC-WH95-PW4G
  • [2]Target Project Repository

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•2 days ago•CVE-2026-54068
5.9

CVE-2026-54068: Unauthenticated Server-Side Template Injection and SQLite Exfiltration in SiYuan PKM

An authentication bypass in the SiYuan personal knowledge management system before version 3.7.0 exposes a dynamic icon rendering endpoint. This endpoint processes client-supplied Go template directives. By submitting a crafted request, an unauthenticated remote attacker can leverage registered database template functions to execute arbitrary read-only SQL queries and exfiltrate workspace contents.

Amit Schendel
Amit Schendel
14 views•5 min read
•2 days ago•CVE-2026-54069
9.1

CVE-2026-54069: Authentication Bypass in SiYuan Note via Origin Header Spoofing

CVE-2026-54069 is a critical authentication bypass vulnerability in the SiYuan Note personal knowledge management system. The flaw is located in the HTTP server's middleware handling API authorization, which unconditionally trusts requests carrying a 'chrome-extension://' scheme in the Origin HTTP header, granting administrative access without validating API tokens.

Alon Barad
Alon Barad
12 views•5 min read
•2 days ago•CVE-2026-54089
9.1

CVE-2026-54089: Authentication Bypass by Spoofing in File Browser

CVE-2026-54089 is a critical authentication bypass vulnerability in File Browser affecting instances configured with proxy-based authentication. An unauthenticated remote attacker with direct network access can impersonate arbitrary users or register new accounts by spoofing configured HTTP headers.

Amit Schendel
Amit Schendel
13 views•7 min read
•2 days ago•GHSA-99J7-FHR2-XFJ4
10.0

GHSA-99J7-FHR2-XFJ4: Malicious Remote Code Execution Payload in 'exploration' Cargo Crate

The malicious Cargo package 'exploration' was uploaded to the crates.io registry. During compilation or package import, the crate executes code designed to establish an outbound TCP/HTTP connection, download an external second-stage binary, and execute the binary locally on the host machine. This creates an unauthenticated remote code execution vector impacting developer environments and continuous integration pipelines.

Amit Schendel
Amit Schendel
14 views•6 min read
•2 days ago•CVE-2026-54088
9.3

CVE-2026-54088: Pre-Authentication Remote Code Execution in File Browser Hook Authentication

CVE-2026-54088 is a critical command injection vulnerability in File Browser prior to version 2.63.6. When Hook Authentication is enabled, the application interpolates unsanitized credentials into a shell command, allowing unauthenticated remote code execution.

Alon Barad
Alon Barad
14 views•6 min read
•3 days ago•GHSA-QV4M-M73M-8HJ7
8.8

GHSA-qv4m-m73m-8hj7: Authenticated Arbitrary File Upload leading to Remote Code Execution in NotrinosERP

An authenticated remote code execution vulnerability exists in NotrinosERP (versions up to and including 1.0.0) within the Human Resource Management (HRM) module. Users with employee management permissions can upload arbitrary file types, including PHP scripts, which are written directly to a web-accessible directory. This allows for arbitrary code execution in the context of the web-server user.

Alon Barad
Alon Barad
9 views•6 min read