{"id":5548,"date":"2025-11-20T08:24:50","date_gmt":"2025-11-20T08:24:50","guid":{"rendered":"https:\/\/signmycode.com\/blog\/?p=5548"},"modified":"2025-11-20T08:24:51","modified_gmt":"2025-11-20T08:24:51","slug":"microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users","status":"publish","type":"post","link":"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users","title":{"rendered":"Microsoft Overhauls Windows Driver Signing: What This Means for Developers and Users"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-microsoft-just-raised-the-bar-for-windows-drivers\">Microsoft Just Raised the Bar for Windows Drivers<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you follow Windows development even casually, you already know this fact that drivers are the silent backbone of the operating system.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">They control your cameras, your network card, your USB ports, your audio devices\u2026 basically everything that makes your PC more than a box with a screen.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">And when drivers go wrong, they really go wrong.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Microsoft has obviously had its share.<a href=\"https:\/\/windowsreport.com\/microsoft-overhauls-windows-driver-building-and-signing-process\/\"> This week, the company declared one of the largest policy changes in years<\/a>, a complete overhaul of the process of building, testing, verifying, and signing drivers to Windows 11 and beyond. It is a long-term change that will re-architecturally what developers can (and cannot) do within the Windows kernel.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-why-microsoft-is-changing-the-rules\">Why Microsoft Is Changing the Rules<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Microsoft isn\u2019t doing this for fun. They\u2019re doing it because driver issues have become one of the top causes of Windows instability.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When a single faulty driver can take down millions of systems within hours, you don\u2019t \u201cpatch and pray.\u201d<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You redesign the ecosystem.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So Microsoft is rolling out a tougher, more structured, more security-focused driver development pipeline that applies not only to antivirus vendors who previously had stricter requirements, but to everyone shipping drivers on Windows.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-are-the-new-baselines\">What are the New Baselines?<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Higher Security Standards<\/li>\n\n\n\n<li>More Resiliency Checks<\/li>\n\n\n\n<li>More Certification Tests before Signing<\/li>\n\n\n\n<li>Less Kernel-mode Code Overall<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">\u201cIf your driver touches the Windows kernel, it better be safe, predictable, and fault-tolerant.\u201d<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-signed-drivers-will-face-a-much-stricter-approval-process\">Signed Drivers Will Face a Much Stricter Approval Process<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">This is the headline change everyone should pay attention to. Microsoft is tightening the screws. A driver won\u2019t get a signature unless it survives a battery of new tests: security, resiliency, fault tolerance, behavioural sanity, and memory correctness.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Recommended:<\/strong> <a href=\"https:\/\/signmycode.com\/resources\/how-to-eliminate-the-windows-digitally-signed-driver-error-in-windows-7-8-10-11\">How to Eliminate the \u201cWindows Requires Digitally Signed Driver\u201d Error in Windows 7\/8\/10\/11?<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-less-third-party-code-will-run-in-kernel-mode\">Less Third-Party Code Will Run in Kernel Mode<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Microsoft wants far less third-party code running in <a href=\"https:\/\/signmycode.com\/resources\/what-is-kernel-mode-code-signing-certificates\">kernel mode<\/a>. Think networking, USB, printers, cameras, storage, basically, all the stuff that makes a PC a PC. These drivers come from dozens of vendors, in thousands of tiny variations, and each one is another place for bugs to hide.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Recommended:<\/strong> <a href=\"https:\/\/signmycode.com\/resources\/how-to-enable-kernel-mode-hardware-enforced-stack-protection-in-windows-11\">How to Enable Kernel Mode Hardware-Enforced Stack Protection in Windows 11?<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The strategy now is to simply move as much logic as possible to the user space, where it can\u2019t break the system.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Replace the OEM\u2019s custom drivers with Microsoft\u2019s standardised ones. This is exactly how iOS and Android operate. It took Windows a decade longer to get here, but they are finally.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-kernel-drivers-will-still-exist-but-with-new-guardrails\">Kernel Drivers Will Still Exist \u2014 But With New Guardrails<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Some things can\u2019t move out of the kernel. Graphics drivers, low-latency components, hardware-accelerated stuff, you can\u2019t make those slow without breaking the experience.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>But the rules for these drivers are changing:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Compiler Restrictions \u2013<\/strong> Think of these as guardrails preventing drivers from doing the dangerous things that used to be normal.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Driver Isolation \u2013<\/strong> When a driver goes down, it doesn\u2019t take the whole system with it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>DMA-Remapping \u2013<\/strong> This closes one of the oldest holes in system security: drivers that can rummage through memory they shouldn\u2019t touch.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Recommended:<\/strong> <a href=\"https:\/\/signmycode.com\/resources\/how-to-code-sign-windows-kernel-drivers-using-ev\">How To Code Sign Windows Kernel Drivers using EV Certificate?<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-stability-security-and-less-bloat\">Stability, Security, and Less Bloat<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">They want Windows to behave more like a modern operating system, something stable by default, not through luck.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">All of this fits neatly with what they\u2019re trying to build. secure-core PCs, Copilot+ devices, enterprise-grade AI systems, and a kernel that doesn\u2019t collapse because someone forgot to check a pointer.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Recommended:<\/strong> <a href=\"https:\/\/signmycode.com\/blog\/microsoft-kills-the-blue-screen-of-death-after-40-years-meet-the-new-black-screen-of-death\">Microsoft Kills the Blue Screen of Death After 40 Years: Meet the New Black Screen of Death<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The new driver regulations introduced by Microsoft are a true turning point for Windows. The kernel has been excessively risky due to having too many vendors, and the CrowdStrike-like outages demonstrated how vulnerable that design was. They will not be painless to the developers, but will make Windows more stable, secure and much less reliant on untrustworthy third-party code.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Keep your software and apps secure with a <a href=\"https:\/\/signmycode.com\/windows-code-signing\">Windows Code Signing Certificate<\/a> at affordable pricing!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Microsoft Just Raised the Bar for Windows Drivers If you follow Windows development even casually, you already know this fact that drivers are the silent backbone of the operating system. They control your cameras, your network card, your USB ports, your audio devices\u2026 basically everything that makes your PC more than a box with a&hellip; <a class=\"more-link\" href=\"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users\">Read More <span class=\"screen-reader-text\">Microsoft Overhauls Windows Driver Signing: What This Means for Developers and Users<\/span><\/a> <\/p>\n","protected":false},"author":1,"featured_media":5549,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,641],"tags":[897,895,896],"class_list":["post-5548","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-code-signing-updates","category-windows-security","tag-windows-driver-policy-windows-11","tag-windows-driver-signing","tag-windows-driver-signing-rules","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Microsoft Overhauls Windows Driver Signing: What It Means for You?<\/title>\n<meta name=\"description\" content=\"Microsoft Just Raised the Bar for Windows Drivers Building and Signing. Know Why Microsoft Is Cracking Down on Kernel Drivers.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Microsoft Overhauls Windows Driver Signing: What It Means for You?\" \/>\n<meta property=\"og:description\" content=\"Microsoft Just Raised the Bar for Windows Drivers Building and Signing. Know Why Microsoft Is Cracking Down on Kernel Drivers.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users\" \/>\n<meta property=\"og:site_name\" content=\"SignMyCode - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-20T08:24:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-20T08:24:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/signmycode.com\/blog\/wp-content\/uploads\/2025\/11\/windows-11-driver-signing-policy-changes.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"912\" \/>\n\t<meta property=\"og:image:height\" content=\"453\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Janki Mehta\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Janki Mehta\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users\",\"url\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users\",\"name\":\"Microsoft Overhauls Windows Driver Signing: What It Means for You?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/windows-11-driver-signing-policy-changes.webp\",\"datePublished\":\"2025-11-20T08:24:50+00:00\",\"dateModified\":\"2025-11-20T08:24:51+00:00\",\"description\":\"Microsoft Just Raised the Bar for Windows Drivers Building and Signing. Know Why Microsoft Is Cracking Down on Kernel Drivers.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/signmycode.com\\\/blog\\\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users#primaryimage\",\"url\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/windows-11-driver-signing-policy-changes.webp\",\"contentUrl\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/windows-11-driver-signing-policy-changes.webp\",\"width\":912,\"height\":453,\"caption\":\"Microsoft\u2019s New Driver Policy\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Microsoft Overhauls Windows Driver Signing: What This Means for Developers and Users\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/\",\"name\":\"SignMyCode - Blog\",\"description\":\"Code Signing News, Updates\",\"publisher\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/#organization\",\"name\":\"SignMyCode.com\",\"url\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/logo1.png\",\"contentUrl\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/logo1.png\",\"width\":135,\"height\":86,\"caption\":\"SignMyCode.com\"},\"image\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Microsoft Overhauls Windows Driver Signing: What It Means for You?","description":"Microsoft Just Raised the Bar for Windows Drivers Building and Signing. Know Why Microsoft Is Cracking Down on Kernel Drivers.","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:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users","og_locale":"en_US","og_type":"article","og_title":"Microsoft Overhauls Windows Driver Signing: What It Means for You?","og_description":"Microsoft Just Raised the Bar for Windows Drivers Building and Signing. Know Why Microsoft Is Cracking Down on Kernel Drivers.","og_url":"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users","og_site_name":"SignMyCode - Blog","article_published_time":"2025-11-20T08:24:50+00:00","article_modified_time":"2025-11-20T08:24:51+00:00","og_image":[{"width":912,"height":453,"url":"https:\/\/signmycode.com\/blog\/wp-content\/uploads\/2025\/11\/windows-11-driver-signing-policy-changes.webp","type":"image\/jpeg"}],"author":"Janki Mehta","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Janki Mehta","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users","url":"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users","name":"Microsoft Overhauls Windows Driver Signing: What It Means for You?","isPartOf":{"@id":"https:\/\/signmycode.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users#primaryimage"},"image":{"@id":"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users#primaryimage"},"thumbnailUrl":"https:\/\/signmycode.com\/blog\/wp-content\/uploads\/2025\/11\/windows-11-driver-signing-policy-changes.webp","datePublished":"2025-11-20T08:24:50+00:00","dateModified":"2025-11-20T08:24:51+00:00","description":"Microsoft Just Raised the Bar for Windows Drivers Building and Signing. Know Why Microsoft Is Cracking Down on Kernel Drivers.","breadcrumb":{"@id":"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users#primaryimage","url":"https:\/\/signmycode.com\/blog\/wp-content\/uploads\/2025\/11\/windows-11-driver-signing-policy-changes.webp","contentUrl":"https:\/\/signmycode.com\/blog\/wp-content\/uploads\/2025\/11\/windows-11-driver-signing-policy-changes.webp","width":912,"height":453,"caption":"Microsoft\u2019s New Driver Policy"},{"@type":"BreadcrumbList","@id":"https:\/\/signmycode.com\/blog\/microsoft-overhauls-windows-driver-signing-what-this-means-for-developers-and-users#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/signmycode.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Microsoft Overhauls Windows Driver Signing: What This Means for Developers and Users"}]},{"@type":"WebSite","@id":"https:\/\/signmycode.com\/blog\/#website","url":"https:\/\/signmycode.com\/blog\/","name":"SignMyCode - Blog","description":"Code Signing News, Updates","publisher":{"@id":"https:\/\/signmycode.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/signmycode.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/signmycode.com\/blog\/#organization","name":"SignMyCode.com","url":"https:\/\/signmycode.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/signmycode.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/signmycode.com\/blog\/wp-content\/uploads\/2021\/10\/logo1.png","contentUrl":"https:\/\/signmycode.com\/blog\/wp-content\/uploads\/2021\/10\/logo1.png","width":135,"height":86,"caption":"SignMyCode.com"},"image":{"@id":"https:\/\/signmycode.com\/blog\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/signmycode.com\/blog\/wp-json\/wp\/v2\/posts\/5548","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/signmycode.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/signmycode.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/signmycode.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/signmycode.com\/blog\/wp-json\/wp\/v2\/comments?post=5548"}],"version-history":[{"count":2,"href":"https:\/\/signmycode.com\/blog\/wp-json\/wp\/v2\/posts\/5548\/revisions"}],"predecessor-version":[{"id":5552,"href":"https:\/\/signmycode.com\/blog\/wp-json\/wp\/v2\/posts\/5548\/revisions\/5552"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/signmycode.com\/blog\/wp-json\/wp\/v2\/media\/5549"}],"wp:attachment":[{"href":"https:\/\/signmycode.com\/blog\/wp-json\/wp\/v2\/media?parent=5548"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/signmycode.com\/blog\/wp-json\/wp\/v2\/categories?post=5548"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/signmycode.com\/blog\/wp-json\/wp\/v2\/tags?post=5548"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}