{"id":10522,"date":"2025-08-13T04:43:08","date_gmt":"2025-08-13T04:43:08","guid":{"rendered":"http:\/\/localhost\/?p=10522"},"modified":"2025-08-13T04:43:08","modified_gmt":"2025-08-13T04:43:08","slug":"exploit-for-use-after-free-in-microsoft","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=10522","title":{"rendered":"Exploit for Use After Free in Microsoft_AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-08-13T08:36:38&#8243;,&#8221;description&#8221;:&#8221;# \ud83d\uded1 CVE-2025-21298 \u2013 Critical Zero-Click RCE in Microsoft Windows OLE\\n\\n&#8212;\\n\\n## \ud83d\udccc Overview\\n\\n* **\ud83d\udcc2 Component:** Microsoft Windows OLE (Object Linking and Embedding) \u2013 specifically in `ole32.dll`\\n* **\ud83d\udc1e Vulnerability Type:** Double-free memory corruption\\n* **\ud83d\udccc Function Affected:** `UtOlePresStmToContentsStm`\\n* **\ud83d\udd25 Severity:** CVSS 3.1 score **9.8** \u2013 Critical\\n* **\ud83d\udcc5 Patch Release:** January 2025 Microsoft Security Updates\\n* **\ud83d\udce5 Attack Vector:** Specially crafted RTF file\\n* **\u26a0\ufe0f Interaction Required:** None (zero-click, triggered on preview)\\n* **\ud83c\udfaf Primary Targets:** Outlook users, but also Word or any OLE-capable application\\n\\n&#8212;\\n\\n## \u2699\ufe0f Technical Details\\n\\n1. **Double-Free Bug**\\n\\n   * When processing an RTF file containing certain embedded OLE objects, `ole32.dll` fails to properly manage memory cleanup.\\n   * The `pstmContents` pointer is freed twice under specific conditions, leading to heap corruption.\\n\\n2. **Exploitation Path**\\n\\n   * An attacker crafts a malicious RTF containing payload data that manipulates OLE structures.\\n   * When the victim **previews** the email in Outlook, the RTF renderer calls OLE functions.\\n   * The double-free allows overwriting heap metadata or function pointers.\\n   * Attacker-controlled code is executed in the context of the user \u2014 potentially SYSTEM if chained with privilege escalation.\\n\\n3. **Why It\u2019s Dangerous**\\n\\n   * **Zero-click** \u2192 user doesn\u2019t need to open the file manually.\\n   * **Email-borne** \u2192 can be mass-exploited.\\n   * **Widespread Reach** \u2192 affects almost all supported Windows versions.\\n\\n&#8212;\\n\\n## \ud83d\udcbb Affected Systems\\n\\n* **Windows 10:** Versions 1507 \u2192 22H2\\n* **Windows 11:** Up to 24H2\\n* **Windows Server:** 2008, 2008 R2, 2012, 2012 R2, 2016, 2019, 2022, 2025\\n\\n&#8212;\\n\\n## \ud83d\udee1\ufe0f Mitigation\\n\\n1. **Install Microsoft\u2019s January 2025 patch** \u2014 fully fixes the issue.\\n2. If patching is delayed:\\n\\n   * \ud83d\udcdc Configure Outlook to display all emails as **plain text**.\\n   * \ud83d\udce6 Block `.rtf` attachments at the mail gateway or via endpoint policies.\\n   * \ud83d\udd12 Disable preview pane for untrusted messages.\\n\\n&#8212;\\n\\n## \ud83d\udc40 Detection \\u0026 Monitoring\\n\\n* **Endpoint:** Look for processes loading `ole32.dll` when handling `.rtf` files from untrusted sources.\\n* **Network:** Monitor inbound email traffic for `.rtf` attachments with abnormal OLE object streams.\\n* **Security Tools:** Use EDR rules or Sigma detections for RTF OLE exploitation patterns.\\n\\n&#8212;\\n\\n## \ud83d\udcca Risk Summary Table\\n\\n| \ud83d\udcdd Aspect          | \ud83d\udccc Details                                    |\\n| &#8212;&#8212;&#8212;&#8212;&#8212;&#8212; | &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; |\\n| Vulnerability Type | Zero-click RCE via OLE double-free            |\\n| Severity           | \ud83d\udd25 CVSS 9.8 \u2013 Critical                        |\\n| Attack Vector      | Previewing crafted RTF in Outlook \/ Word      |\\n| Impact             | \ud83d\udda5\ufe0f Remote code execution                     |\\n| Affected Systems   | Windows 10, 11, Server 2008\u20132025              |\\n| Fix                | \ud83d\udee1\ufe0f January 2025 Patch                        |\\n| Workarounds        | Block RTF, plain-text emails, disable preview |\\n\\n&#8212;\\n\\n## \ud83e\udde0 Exploit Chain Diagram (Text Form)\\n\\n&#8220;`\\n\ud83d\udce9 Attacker sends crafted RTF email\\n   \u2193\\n\ud83d\udcec Victim receives email in Outlook\\n   \u2193\\n\ud83d\udc40 Victim previews message (no click required)\\n   \u2193\\n\ud83e\udde9 RTF renderer calls OLE32.dll \u2192 double-free in UtOlePresStmToContentsStm\\n   \u2193\\n\ud83d\udca5 Memory corruption \u2192 payload execution\\n   \u2193\\n\ud83c\udfaf Attacker gains code execution on target system\\n&#8220;`\\n\\n&#8212;\\n\\n## \ud83d\udd77\ufe0f vulnerability:\\n\\n\\nThe vulnerability is located in `ole32.dll!UtOlePresStmToContentsStm`. The purpose of the function is ti convert data in an **\\&#8221;OlePres\\&#8221;** stream within an OLE storage into appropriately formatted data and insert it into the **\\&#8221;CONTENTS\\&#8221;** stream in the same storage. It receives an IStorage pointer to a storage object and three rather unimportant arguments.\\n\\nBelow we can see the implementation of the function with a diff from the Jan 2025 patch:\\n\\n\\n&#8220;`json\\n__int64 __fastcall UtOlePresStmToContentsStm(IStorage *pstg, wchar_t *puiStatus, __int64 a3, unsigned int *lpszPresStm)\\n{\\n  struct IStorageVtbl *lpVtbl; \/\/ rax\\n  int v7; \/\/ r14d\\n+ bool IsEnabled; \/\/ al\\n  IStream *v10; \/\/ rcx\\n  bool v11; \/\/ zf\\n  struct IStorageVtbl *v12; \/\/ rax\\n  int v13; \/\/ ebx\\n  HRESULT v14; \/\/ eax\\n  const wchar_t *v15; \/\/ rdx\\n  IStream *pstmContents; \/\/ [rsp+40h] [rbp-19h] BYREF\\n  IStream *pstmOlePres; \/\/ [rsp+48h] [rbp-11h] BYREF\\n  tagFORMATETC foretc; \/\/ [rsp+50h] [rbp-9h] BYREF\\n  tagHDIBFILEHDR hdfh; \/\/ [rsp+70h] [rbp+17h] BYREF\\n\\n  *lpszPresStm = 0;\\n  lpVtbl = pstg-\\u003elpVtbl;\\n  pstmContents = 0LL;\\n  v7 = 1;\\n  \/\/ Create a \\&#8221;CONTENTS\\&#8221; stream in the storage and store it into pstmContents\\n  if ( (lpVtbl-\\u003eCreateStream)(pstg, L\\&#8221;CONTENTS\\&#8221;, 18LL, 0LL, 0, \\u0026pstmContents) )\\n    return 0LL;\\n  \/\/ Immediately release pstmContents, we&#8217;re not going to be using it right now\\n  (pstmContents-\\u003elpVtbl-\\u003eRelease)(pstmContents);\\n+ IsEnabled = wil::details::FeatureImpl::__private_IsEnabled(\\u0026`wil::Feature::GetImpl&#8217;::`2&#8242;::impl);\\n+ v10 = pstmContents;\\n+ v11 = !IsEnabled;\\n  v12 = pstg-\\u003elpVtbl;\\n+ if ( !v11 )\\n+   v10 = 0LL;\\n+ pstmContents = v10;\\n  (v12-\\u003eDestroyElement)(pstg, L\\&#8221;CONTENTS\\&#8221;);\\n  v13 = (pstg-\\u003elpVtbl-\\u003eOpenStream)(pstg, \\u0026OlePres, 0LL, 16LL, 0, \\u0026pstmOlePres);\/\/ 2nd option to fail -\\u003e no OlePres stream\\n  if ( v13 )\\n  {\\n    *lpszPresStm |= 1u;\\n    if ( (pstg-\\u003elpVtbl-\\u003eOpenStream)(pstg, L\\&#8221;CONTENTS\\&#8221;, 0LL, 16LL, 0, \\u0026pstmContents) )\\n    {\\n      *lpszPresStm |= 2u;\\n    }\\n    else\\n    {\\n      (pstmContents-\\u003elpVtbl-\\u003eRelease)(pstmContents);\\n+     wil::details::FeatureImpl::__private_IsEnabled(\\u0026`wil::Feature::GetImpl&#8217;::`2&#8242;::impl);\\n    }\\n    return v13;\\n  }\\n  foretc.ptd = 0LL;\\n  v13 = UtReadOlePresStmHeader(pstmOlePres, \\u0026foretc, 0LL, 0LL);\\n  if ( v13 \\u003e= 0 )\\n  {\\n    v13 = (pstmOlePres-\\u003elpVtbl-\\u003eRead)(pstmOlePres, \\u0026hdfh, 16LL);\\n    if ( v13 \\u003e= 0 )\\n    {\\n      v13 = OpenOrCreateStream(pstg, L\\&#8221;CONTENTS\\&#8221;, \\u0026pstmContents);\\n      if ( v13 lpVtbl-\\u003eRelease)(pstmOlePres);\\n  \/\/ Release pstmContents if it still exists, we need to clean up\\n  if ( pstmContents )\\n    (pstmContents-\\u003elpVtbl-\\u003eRelease)(pstmContents);\\n  if ( foretc.ptd )\\n    CoTaskMemFree(foretc.ptd);\\n  if ( v13 )\\n  {\\n    v15 = L\\&#8221;CONTENTS\\&#8221;;\\n    goto LABEL_31;\\n  }\\n  if ( v7 )\\n  {\\n    v15 = \\u0026OlePres;\\nLABEL_31:\\n    (pstg-\\u003elpVtbl-\\u003eDestroyElement)(pstg, v15);\\n  }\\n  return v13;\\n}\\n&#8220;`\\n\\nThe problem is in the pstmContents variable. Initially it&#8217;s used to store the pointer to the \\&#8221;CONTENTS\\&#8221; stream object that&#8217;s created at the beginning of the function. The stream is immediately destroyed after being created and the pointer stored in pstmContents is released (which frees it in coml2.dll!ExposedStream::~ExposedStream). However, the variable still contains the free&#8217;d pointer. Further down in the function, the variable may be reused to store the pointer to the \\&#8221;CONTENTS\\&#8221; stream again &#8211; because of this, there&#8217;s cleanup code at the end of the function that releases the pointer in case it&#8217;s stored in the variable. The code fails to account for the fact that UtReadOlePresStmHeader may fail &#8211; if that happens, pstmContents will still point towards the free&#8217;d pointer and we&#8217;ll fall through to the cleanup code, which will release the pointer again. As such, a double-free situation will happen.\\n\\n\\n&#8212;\\n\\n\\n## \u26a0\ufe0f **Disclaimer**\\n\\nThis information about **CVE-2025-21298** is provided **strictly for educational and defensive purposes**.\\nAny attempt to exploit this vulnerability on systems without **explicit, prior, written authorization** is **illegal** and may result in **criminal charges**, civil liability, or both.\\n\\nThe goal is to help security professionals, researchers, and system administrators **understand, detect, and mitigate** the issue \u2014 **not** to encourage malicious activity.\\nAlways conduct testing in a **controlled lab environment** or on systems you fully own and control.\\n\\n&#8221;,&#8221;published&#8221;:&#8221;2025-08-09T11:24:49&#8243;,&#8221;modified&#8221;:&#8221;2025-08-09T11:33:27&#8243;,&#8221;type&#8221;:&#8221;githubexploit&#8221;,&#8221;title&#8221;:&#8221;Exploit for Use After Free in Microsoft&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-21298&#8243;],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.8,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/github.com\/B1ack4sh\/Blackash-CVE-2025-21298&#8243;,&#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-08-13T08:36:38&#8243;,&#8221;description&#8221;:&#8221;# \ud83d\uded1 CVE-2025-21298 \u2013 Critical Zero-Click RCE in Microsoft Windows OLE\\n\\n&#8212;\\n\\n## \ud83d\udccc Overview\\n\\n* **\ud83d\udcc2 Component:** Microsoft Windows OLE (Object Linking and Embedding) \u2013 specifically in&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[9,6,8,35,12,32,13,7,11,5],"class_list":["post-10522","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","tag-exploit","tag-githubexploit","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>Exploit for Use After Free in Microsoft_AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7 - 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=10522\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Exploit for Use After Free in Microsoft_AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-08-13T08:36:38&#8243;,&#8221;description&#8221;:&#8221;# \ud83d\uded1 CVE-2025-21298 \u2013 Critical Zero-Click RCE in Microsoft Windows OLEnn&#8212;nn## \ud83d\udccc Overviewnn* **\ud83d\udcc2 Component:** Microsoft Windows OLE (Object Linking and Embedding) \u2013 specifically in...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=10522\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-13T04:43:08+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=10522#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10522\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Exploit for Use After Free in Microsoft_AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7\",\"datePublished\":\"2025-08-13T04:43:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10522\"},\"wordCount\":1301,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"githubexploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=10522#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10522\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10522\",\"name\":\"Exploit for Use After Free in Microsoft_AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-08-13T04:43:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10522#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=10522\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=10522#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Exploit for Use After Free in Microsoft_AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7\"}]},{\"@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":"Exploit for Use After Free in Microsoft_AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7 - 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=10522","og_locale":"en_US","og_type":"article","og_title":"Exploit for Use After Free in Microsoft_AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-08-13T08:36:38&#8243;,&#8221;description&#8221;:&#8221;# \ud83d\uded1 CVE-2025-21298 \u2013 Critical Zero-Click RCE in Microsoft Windows OLEnn&#8212;nn## \ud83d\udccc Overviewnn* **\ud83d\udcc2 Component:** Microsoft Windows OLE (Object Linking and Embedding) \u2013 specifically in...","og_url":"https:\/\/zero.redgem.net\/?p=10522","og_site_name":"zero redgem","article_published_time":"2025-08-13T04:43:08+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=10522#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=10522"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Exploit for Use After Free in Microsoft_AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7","datePublished":"2025-08-13T04:43:08+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=10522"},"wordCount":1301,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","githubexploit","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=10522#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=10522","url":"https:\/\/zero.redgem.net\/?p=10522","name":"Exploit for Use After Free in Microsoft_AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-08-13T04:43:08+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=10522#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=10522"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=10522#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Exploit for Use After Free in Microsoft_AAEE25D1-B8D4-5BC9-B294-1601F1A0ECD7"}]},{"@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\/10522","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=10522"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/10522\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=10522"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=10522"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=10522"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}