{"id":55121,"date":"2026-05-16T19:17:20","date_gmt":"2026-05-16T19:17:20","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=55121"},"modified":"2026-05-16T19:17:20","modified_gmt":"2026-05-16T19:17:20","slug":"qsstringify-crashes-on-nullundefined-entries-in-comma-format-arrays-under-encodevaluesonly","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=55121","title":{"rendered":"qs.stringify crashes on null\/undefined entries in comma-format arrays under encodeValuesOnly_CVE-2026-8723"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;&#8221;,&#8221;description&#8221;:&#8221;### Summary\\n\\n\\n\\n`qs.stringify` throws `TypeError` when called with `arrayFormat: &#8216;comma&#8217;` and `encodeValuesOnly: true` on an array containing `null` or `undefined`. The throw is synchronous and not handled by any of qs&#8217;s null-related options (`skipNulls`, `strictNullHandling`).\\n\\n\\n\\n### Details\\n\\n\\n\\nIn the comma + `encodeValuesOnly` branch, `lib\/stringify.js:145` mapped the array through the raw encoder before joining:\\n\\n\\n\\n&#8220;`js\\n\\n\\n\\nobj = utils.maybeMap(obj, encoder);\\n\\n\\n\\n&#8220;`\\n\\n\\n\\n`utils.encode` (`lib\/utils.js:195`) reads `str.length` with no null guard, so a `null` or `undefined` element throws `TypeError`. `skipNulls` and `strictNullHandling` are both checked in the per-element loop below this line and never get a chance to run.\\n\\n\\n\\nSame class of bug as the filter-array path fixed in 0c180a4. The vulnerable shape of the comma + `encodeValuesOnly` branch was introduced in 4c4b23d (\\&#8221;encode comma values more consistently\\&#8221;, PR #463, 2023-01-19), first released in v6.11.1.\\n\\n\\n\\n#### PoC\\n\\n\\n\\n&#8220;`js\\n\\n\\n\\nconst qs = require(&#8216;qs&#8217;);\\n\\n\\n\\nqs.stringify({ a: [null, &#8216;b&#8217;] },      { arrayFormat: &#8216;comma&#8217;, encodeValuesOnly: true });\\n\\n\\n\\nqs.stringify({ a: [undefined, &#8216;b&#8217;] }, { arrayFormat: &#8216;comma&#8217;, encodeValuesOnly: true });\\n\\n\\n\\nqs.stringify({ a: [null] },           { arrayFormat: &#8216;comma&#8217;, encodeValuesOnly: true });\\n\\n\\n\\n\/\/ TypeError: Cannot read properties of null (reading &#8216;length&#8217;)\\n\\n\\n\\n\/\/     at encode (lib\/utils.js:195:13)\\n\\n\\n\\n\/\/     at Object.maybeMap (lib\/utils.js:322:37)\\n\\n\\n\\n\/\/     at stringify (lib\/stringify.js:145:25)\\n\\n\\n\\n&#8220;`\\n\\n\\n\\n#### Fix\\n\\n\\n\\n`lib\/stringify.js:145`, applied in 21f80b3 on `main` and released as v6.15.2:\\n\\n\\n\\n&#8220;`diff\\n\\n\\n\\n- obj = utils.maybeMap(obj, encoder);\\n\\n\\n\\n+ obj = utils.maybeMap(obj, function (v) {\\n\\n\\n\\n+     return v == null ? v : encoder(v);\\n\\n\\n\\n+ });\\n\\n\\n\\n&#8220;`\\n\\n\\n\\n`null` and `undefined` now pass through `maybeMap` unchanged and reach the `join(&#8216;,&#8217;)` step as-is. For `{ a: [null, &#8216;b&#8217;] }` this produces `a=,b`, matching the non-`encodeValuesOnly` comma path (which already joins before encoding and produces `a=%2Cb` for the same input). Single-element `[null]` arrays still collapse via the existing `obj.join(&#8216;,&#8217;) || null` and remain subject to `skipNulls` \/ `strictNullHandling` in the main loop.\\n\\n\\n\\n### Affected versions\\n\\n\\n\\n`\\u003e=6.11.1 \\u003c6.15.2` \u2014 fixed in v6.15.2.\\n\\n\\n\\nThe vulnerable code shape was introduced in 4c4b23d and first shipped in v6.11.1. Earlier versions \u2014 including all of 6.7.x, 6.8.x, 6.9.x, 6.10.x, and 6.11.0 \u2014 implemented the comma + `encodeValuesOnly` path differently (joining before encoding) and are not affected. Empirically verified across released versions.\\n\\n\\n\\n### Impact\\n\\n\\n\\nApplication code that calls `qs.stringify` with both `arrayFormat: &#8216;comma&#8217;` and `encodeValuesOnly: true` (both non-default) on input that may contain a `null` or `undefined` array element will throw synchronously instead of producing a query string. In a typical Node.js HTTP framework (Express, Fastify, Koa, hapi) the sync throw is caught by the framework&#8217;s error boundary and the affected request returns a 500; the worker process does not exit and subsequent requests are unaffected. The \\&#8221;kills the worker process\\&#8221; framing applies only to call sites outside a request-handler error boundary (background jobs, startup paths, stream pipelines) or to deployments with framework error handling explicitly disabled.\\n\\n\\n\\nThe vulnerable input is a `null` or `undefined` entry inside an array; this is reachable from JSON request bodies or from application code constructing arrays from user input, but not from standard HTML form submissions (which produce strings or omitted fields, not literal `null`).&#8221;,&#8221;published&#8221;:&#8221;2026-05-16T23:21:16.035Z&#8221;,&#8221;modified&#8221;:&#8221;2026-05-16T23:21:16.035Z&#8221;,&#8221;type&#8221;:&#8221;cve&#8221;,&#8221;title&#8221;:&#8221;qs.stringify crashes on null\/undefined entries in comma-format arrays under encodeValuesOnly&#8221;,&#8221;source&#8221;:&#8221;harborist&#8221;,&#8221;references&#8221;:&#8221;https:\/\/github.com\/ljharb\/qs\/security\/advisories\/GHSA-q8mj-m7cp-5q26\\nhttps:\/\/github.com\/ljharb\/qs\/commit\/21f80b33e5c8b3f7eba1034fff0da4a4a37a1d41&#8243;,&#8221;id&#8221;:&#8221;CVE-2026-8723&#8243;,&#8221;bulletinFamily&#8221;:&#8221;&#8221;,&#8221;cwe&#8221;:[&#8220;CWE-476&#8243;],&#8221;cvelist&#8221;:null,&#8221;sourceData&#8221;:&#8221;ljharb qs 6.11.1&#8243;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:5.3,&#8221;severity&#8221;:&#8221;MEDIUM&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:N\/I:N\/A:L&#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;&#8221;,&#8221;category_name&#8221;:&#8221;CVE&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;qs&#8221;,&#8221;version&#8221;:&#8221;6.11.1&#8243;,&#8221;vendor&#8221;:&#8221;ljharb&#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;&#8221;,&#8221;description&#8221;:&#8221;### Summary\\n\\n\\n\\n`qs.stringify` throws `TypeError` when called with `arrayFormat: &#8216;comma&#8217;` and `encodeValuesOnly: true` on an array containing `null` or `undefined`. The throw is synchronous and not&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[6,8,22,12,21,13,7,11,5],"class_list":["post-55121","post","type-post","status-publish","format-standard","hentry","category-category_cve","tag-cve","tag-cvss","tag-cvss-53","tag-exploit","tag-medium","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>qs.stringify crashes on null\/undefined entries in comma-format arrays under encodeValuesOnly_CVE-2026-8723 - 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=55121\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"qs.stringify crashes on null\/undefined entries in comma-format arrays under encodeValuesOnly_CVE-2026-8723 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;&#8221;,&#8221;description&#8221;:&#8221;### Summarynnnn`qs.stringify` throws `TypeError` when called with `arrayFormat: &#8216;comma&#8217;` and `encodeValuesOnly: true` on an array containing `null` or `undefined`. The throw is synchronous and not...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=55121\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-16T19:17: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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55121#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55121\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"qs.stringify crashes on null\\\/undefined entries in comma-format arrays under encodeValuesOnly_CVE-2026-8723\",\"datePublished\":\"2026-05-16T19:17:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55121\"},\"wordCount\":775,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-5.3\",\"exploit\",\"MEDIUM\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_cve\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=55121#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55121\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55121\",\"name\":\"qs.stringify crashes on null\\\/undefined entries in comma-format arrays under encodeValuesOnly_CVE-2026-8723 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-16T19:17:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55121#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=55121\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55121#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"qs.stringify crashes on null\\\/undefined entries in comma-format arrays under encodeValuesOnly_CVE-2026-8723\"}]},{\"@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":"qs.stringify crashes on null\/undefined entries in comma-format arrays under encodeValuesOnly_CVE-2026-8723 - 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=55121","og_locale":"en_US","og_type":"article","og_title":"qs.stringify crashes on null\/undefined entries in comma-format arrays under encodeValuesOnly_CVE-2026-8723 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;&#8221;,&#8221;description&#8221;:&#8221;### Summarynnnn`qs.stringify` throws `TypeError` when called with `arrayFormat: &#8216;comma&#8217;` and `encodeValuesOnly: true` on an array containing `null` or `undefined`. The throw is synchronous and not...","og_url":"https:\/\/zero.redgem.net\/?p=55121","og_site_name":"zero redgem","article_published_time":"2026-05-16T19:17:20+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=55121#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=55121"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"qs.stringify crashes on null\/undefined entries in comma-format arrays under encodeValuesOnly_CVE-2026-8723","datePublished":"2026-05-16T19:17:20+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=55121"},"wordCount":775,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-5.3","exploit","MEDIUM","news","Security","tapic","Vulnerability"],"articleSection":["category_cve"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=55121#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=55121","url":"https:\/\/zero.redgem.net\/?p=55121","name":"qs.stringify crashes on null\/undefined entries in comma-format arrays under encodeValuesOnly_CVE-2026-8723 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-16T19:17:20+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=55121#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=55121"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=55121#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"qs.stringify crashes on null\/undefined entries in comma-format arrays under encodeValuesOnly_CVE-2026-8723"}]},{"@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\/55121","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=55121"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/55121\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=55121"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=55121"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=55121"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}