{"id":49579,"date":"2026-04-27T10:10:01","date_gmt":"2026-04-27T10:10:01","guid":{"rendered":"http:\/\/localhost\/?p=49579"},"modified":"2026-04-27T10:10:01","modified_gmt":"2026-04-27T10:10:01","slug":"kvm-x86-use-scratch-field-in-mmio-fragment-to-hold-small-write-values","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=49579","title":{"rendered":"KVM: x86: Use scratch field in MMIO fragment to hold small write values_CVE-2026-31588"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;&#8221;,&#8221;description&#8221;:&#8221;In the Linux kernel, the following vulnerability has been resolved:\\n\\nKVM: x86: Use scratch field in MMIO fragment to hold small write values\\n\\nWhen exiting to userspace to service an emulated MMIO write, copy the\\nto-be-written value to a scratch field in the MMIO fragment if the size\\nof the data payload is 8 bytes or less, i.e. can fit in a single chunk,\\ninstead of pointing the fragment directly at the source value.\\n\\nThis fixes a class of use-after-free bugs that occur when the emulator\\ninitiates a write using an on-stack, local variable as the source, the\\nwrite splits a page boundary, *and* both pages are MMIO pages.  Because\\nKVM&#8217;s ABI only allows for physically contiguous MMIO requests, accesses\\nthat split MMIO pages are separated into two fragments, and are sent to\\nuserspace one at a time.  When KVM attempts to complete userspace MMIO in\\nresponse to KVM_RUN after the first fragment, KVM will detect the second\\nfragment and generate a second userspace exit, and reference the on-stack\\nvariable.\\n\\nThe issue is most visible if the second KVM_RUN is performed by a separate\\ntask, in which case the stack of the initiating task can show up as truly\\nfreed data.\\n\\n  ==================================================================\\n  BUG: KASAN: use-after-free in complete_emulated_mmio+0x305\/0x420\\n  Read of size 1 at addr ffff888009c378d1 by task syz-executor417\/984\\n\\n  CPU: 1 PID: 984 Comm: syz-executor417 Not tainted 5.10.0-182.0.0.95.h2627.eulerosv2r13.x86_64 #3\\n  Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.15.0-0-g2dd4b9b3f840-prebuilt.qemu.org 04\/01\/2014 Call Trace:\\n  dump_stack+0xbe\/0xfd\\n  print_address_description.constprop.0+0x19\/0x170\\n  __kasan_report.cold+0x6c\/0x84\\n  kasan_report+0x3a\/0x50\\n  check_memory_region+0xfd\/0x1f0\\n  memcpy+0x20\/0x60\\n  complete_emulated_mmio+0x305\/0x420\\n  kvm_arch_vcpu_ioctl_run+0x63f\/0x6d0\\n  kvm_vcpu_ioctl+0x413\/0xb20\\n  __se_sys_ioctl+0x111\/0x160\\n  do_syscall_64+0x30\/0x40\\n  entry_SYSCALL_64_after_hwframe+0x67\/0xd1\\n  RIP: 0033:0x42477d\\n  Code: \\u003c48\\u003e 3d 01 f0 ff ff 73 01 c3 48 c7 c1 b0 ff ff ff f7 d8 64 89 01 48\\n  RSP: 002b:00007faa8e6890e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010\\n  RAX: ffffffffffffffda RBX: 00000000004d7338 RCX: 000000000042477d\\n  RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000005\\n  RBP: 00000000004d7330 R08: 00007fff28d546df R09: 0000000000000000\\n  R10: 0000000000000000 R11: 0000000000000246 R12: 00000000004d733c\\n  R13: 0000000000000000 R14: 000000000040a200 R15: 00007fff28d54720\\n\\n  The buggy address belongs to the page:\\n  page:0000000029f6a428 refcount:0 mapcount:0 mapping:0000000000000000 index:0x0 pfn:0x9c37\\n  flags: 0xfffffc0000000(node=0|zone=1|lastcpupid=0x1fffff)\\n  raw: 000fffffc0000000 0000000000000000 ffffea0000270dc8 0000000000000000\\n  raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000 page dumped because: kasan: bad access detected\\n\\n  Memory state around the buggy address:\\n  ffff888009c37780: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff\\n  ffff888009c37800: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff\\n  \\u003effff888009c37880: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff\\n                                                   ^\\n  ffff888009c37900: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff\\n  ffff888009c37980: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff\\n  ==================================================================\\n\\nThe bug can also be reproduced with a targeted KVM-Unit-Test by hacking\\nKVM to fill a large on-stack variable in complete_emulated_mmio(), i.e. by\\noverwrite the data value with garbage.\\n\\nLimit the use of the scratch fields to 8-byte or smaller accesses, and to\\njust writes, as larger accesses and reads are not affected thanks to\\nimplementation details in the emulator, but add a sanity check to ensure\\nthose details don&#8217;t change in the future.  Specifically, KVM never uses\\non-stack variables for accesses larger that 8 bytes, e.g. uses an operand\\nin the emulator context, and *al\\n&#8212;truncated&#8212;&#8220;,&#8221;published&#8221;:&#8221;2026-04-24T14:42:16.288Z&#8221;,&#8221;modified&#8221;:&#8221;2026-04-27T14:04:13.501Z&#8221;,&#8221;type&#8221;:&#8221;cve&#8221;,&#8221;title&#8221;:&#8221;KVM: x86: Use scratch field in MMIO fragment to hold small write values&#8221;,&#8221;source&#8221;:&#8221;Linux&#8221;,&#8221;references&#8221;:&#8221;https:\/\/git.kernel.org\/stable\/c\/dc6a6c3db3a4eca7e747cfc46e22c08d016c68f7\\nhttps:\/\/git.kernel.org\/stable\/c\/b5a02d37eb0739f462fa12df449ab9b3480c783b\\nhttps:\/\/git.kernel.org\/stable\/c\/22d2ff69d487a32a8b88f9c970120fc2daa08a77\\nhttps:\/\/git.kernel.org\/stable\/c\/2b83d91e9ae92fe1258d7040a32430bbb3bb7d6e\\nhttps:\/\/git.kernel.org\/stable\/c\/3a7b6d75c8f85b09dea893f64a85a356bcf6c3fe\\nhttps:\/\/git.kernel.org\/stable\/c\/0b16e69d17d8c35c5c9d5918bf596c75a44655d3&#8243;,&#8221;id&#8221;:&#8221;CVE-2026-31588&#8243;,&#8221;bulletinFamily&#8221;:&#8221;&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:null,&#8221;sourceData&#8221;:&#8221;Linux Linux f78146b0f9230765c6315b2e14f56112513389ad\\nLinux Linux f78146b0f9230765c6315b2e14f56112513389ad\\nLinux Linux f78146b0f9230765c6315b2e14f56112513389ad\\nLinux Linux f78146b0f9230765c6315b2e14f56112513389ad\\nLinux Linux f78146b0f9230765c6315b2e14f56112513389ad\\nLinux Linux f78146b0f9230765c6315b2e14f56112513389ad\\nLinux Linux 3.5&#8243;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:8.8,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:L\/AC:L\/PR:L\/UI:N\/S:C\/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;&#8221;,&#8221;category_name&#8221;:&#8221;CVE&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;Linux&#8221;,&#8221;version&#8221;:&#8221;f78146b0f9230765c6315b2e14f56112513389ad&#8221;,&#8221;vendor&#8221;:&#8221;Linux&#8221;,&#8221;ai_description&#8221;:&#8221;AI processing failed &#8211; no valid JSON found&#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;In the Linux kernel, the following vulnerability has been resolved:\\n\\nKVM: x86: Use scratch field in MMIO fragment to hold small write values\\n\\nWhen exiting to userspace&#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,41,12,15,13,7,11,5],"class_list":["post-49579","post","type-post","status-publish","format-standard","hentry","category-category_cve","tag-cve","tag-cvss","tag-cvss-88","tag-exploit","tag-high","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>KVM: x86: Use scratch field in MMIO fragment to hold small write values_CVE-2026-31588 - 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=49579\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"KVM: x86: Use scratch field in MMIO fragment to hold small write values_CVE-2026-31588 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;&#8221;,&#8221;description&#8221;:&#8221;In the Linux kernel, the following vulnerability has been resolved:nnKVM: x86: Use scratch field in MMIO fragment to hold small write valuesnnWhen exiting to userspace...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=49579\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-27T10:10:01+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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49579#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49579\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"KVM: x86: Use scratch field in MMIO fragment to hold small write values_CVE-2026-31588\",\"datePublished\":\"2026-04-27T10:10:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49579\"},\"wordCount\":975,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-8.8\",\"exploit\",\"HIGH\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_cve\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=49579#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49579\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49579\",\"name\":\"KVM: x86: Use scratch field in MMIO fragment to hold small write values_CVE-2026-31588 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-27T10:10:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49579#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=49579\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49579#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"KVM: x86: Use scratch field in MMIO fragment to hold small write values_CVE-2026-31588\"}]},{\"@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":"KVM: x86: Use scratch field in MMIO fragment to hold small write values_CVE-2026-31588 - 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=49579","og_locale":"en_US","og_type":"article","og_title":"KVM: x86: Use scratch field in MMIO fragment to hold small write values_CVE-2026-31588 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;&#8221;,&#8221;description&#8221;:&#8221;In the Linux kernel, the following vulnerability has been resolved:nnKVM: x86: Use scratch field in MMIO fragment to hold small write valuesnnWhen exiting to userspace...","og_url":"https:\/\/zero.redgem.net\/?p=49579","og_site_name":"zero redgem","article_published_time":"2026-04-27T10:10:01+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=49579#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=49579"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"KVM: x86: Use scratch field in MMIO fragment to hold small write values_CVE-2026-31588","datePublished":"2026-04-27T10:10:01+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=49579"},"wordCount":975,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-8.8","exploit","HIGH","news","Security","tapic","Vulnerability"],"articleSection":["category_cve"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=49579#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=49579","url":"https:\/\/zero.redgem.net\/?p=49579","name":"KVM: x86: Use scratch field in MMIO fragment to hold small write values_CVE-2026-31588 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-27T10:10:01+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=49579#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=49579"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=49579#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"KVM: x86: Use scratch field in MMIO fragment to hold small write values_CVE-2026-31588"}]},{"@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\/49579","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=49579"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/49579\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=49579"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=49579"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=49579"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}