{"id":1380,"date":"2024-07-20T23:45:25","date_gmt":"2024-07-20T23:45:25","guid":{"rendered":"https:\/\/hacking.cool\/?p=1380"},"modified":"2024-07-20T23:51:43","modified_gmt":"2024-07-20T23:51:43","slug":"what-is-same-origin-policy-sop","status":"publish","type":"post","link":"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/","title":{"rendered":"What is Same-Origin Policy (SOP)?"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"585\" src=\"https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except-1024x585.webp\" alt=\"\" class=\"wp-image-1381\" srcset=\"https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except-1024x585.webp 1024w, https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except-300x171.webp 300w, https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except-768x439.webp 768w, https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except-1536x878.webp 1536w, https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except.webp 1792w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><\/div>\n\n\n<p>Have you ever wondered why a website you visit can&#8217;t access your cookies or session data from other sites you have open, like Facebook or Instagram? That&#8217;s thanks to the Same-Origin Policy. This policy restricts how one website can interact with resources from another website in your browser, ensuring your data remains secure and private.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Key Points:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Origin<\/strong>: An &#8220;origin&#8221; is defined by the combination of a URL&#8217;s protocol (http or https), domain (example.com), and port (if specified). For example, <code>https:\/\/example.com:443<\/code> and <code>http:\/\/example.com<\/code> are considered different origins.<\/li>\n\n\n\n<li><strong>Restriction<\/strong>: The Same-Origin Policy restricts a web page from making requests to a different origin. This means that scripts running on one web page cannot access data or interact with another web page from a different origin.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">How It Works:<\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Access Control<\/strong>: If a script from <code>https:\/\/example.com<\/code> tries to make a request to <code>https:\/\/anotherdomain.com<\/code>, the browser will block this request to prevent potential security issues, like stealing sensitive data.<\/li>\n\n\n\n<li><strong>Data Protection<\/strong>: It prevents malicious websites from reading sensitive data from other websites you might be logged into, like your email or banking site.<\/li>\n<\/ol>\n\n\n\n<p>A script on <code>https:\/\/example.com<\/code> cannot access data on <code>https:\/\/anotherdomain.com<\/code> because they have different origins.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why It&#8217;s Important:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Security<\/strong>: It prevents malicious websites from accessing your data on other sites without your permission.<\/li>\n\n\n\n<li><strong>Privacy<\/strong>: It ensures that your personal information and session data are not exposed to unauthorized websites.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Exceptions and Relaxations:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>CORS (Cross-Origin Resource Sharing)<\/strong>: A mechanism that allows controlled access to resources on different origins. Websites can explicitly permit cross-origin requests using specific HTTP headers.<\/li>\n\n\n\n<li><strong>JSONP (JSON with Padding)<\/strong>: A technique that allows cross-origin requests by exploiting the <code>&lt;script&gt;<\/code> tag, which is not subject to the same-origin policy.<\/li>\n\n\n\n<li><strong>PostMessage API<\/strong>: A method that allows secure communication between windows or iframes from different origins.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Browser Vulnerabilities<\/strong><\/h3>\n\n\n\n<p>Note that Same-Origin Policy (SOP) is not set through security headers like Content-Security Policy (CSP). Instead, it is a built-in security feature of web browsers. <\/p>\n\n\n\n<p>Hence, it is bugs or vulnerabilities in browser implementations can sometimes be exploited to bypass SOP. And such bugs have occurred from time to time. Here are a few notable historical examples:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>Firefox SOP Bypass (2015)<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Description<\/strong>: A critical bug in Mozilla Firefox allowed an attacker to bypass SOP and execute arbitrary code.<\/li>\n\n\n\n<li><strong>CVE<\/strong>: CVE-2015-4495<\/li>\n\n\n\n<li><strong>Details<\/strong>: The vulnerability was in the handling of <code>SVG<\/code> files. An attacker could craft a malicious SVG file that, when loaded by the browser, would execute code in the context of another domain.<\/li>\n\n\n\n<li><strong>Impact<\/strong>: This allowed attackers to steal sensitive information, such as cookies and session tokens, from other websites.<\/li>\n\n\n\n<li><strong>Fix<\/strong>: Mozilla patched the vulnerability in subsequent updates to Firefox.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>Internet Explorer SOP Bypass (2014)<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Description<\/strong>: A vulnerability in Internet Explorer allowed attackers to bypass SOP through a flaw in the handling of CORS requests.<\/li>\n\n\n\n<li><strong>CVE<\/strong>: CVE-2014-1776<\/li>\n\n\n\n<li><strong>Details<\/strong>: The issue was related to how Internet Explorer handled CORS headers and allowed cross-origin data access under certain conditions, even when it should have been blocked.<\/li>\n\n\n\n<li><strong>Impact<\/strong>: Attackers could perform unauthorized actions on behalf of the user, including stealing data and executing scripts.<\/li>\n\n\n\n<li><strong>Fix<\/strong>: Microsoft released a security update to address the issue.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Safari WebKit SOP Bypass (2021)<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Description<\/strong>: A bug in WebKit, the browser engine used by Safari, allowed an attacker to bypass SOP.<\/li>\n\n\n\n<li><strong>CVE<\/strong>: CVE-2021-1844<\/li>\n\n\n\n<li><strong>Details<\/strong>: The vulnerability was caused by improper handling of origin checks in WebKit. An attacker could exploit this bug to execute scripts in the context of another origin.<\/li>\n\n\n\n<li><strong>Impact<\/strong>: This allowed attackers to access sensitive information and perform actions on behalf of the user on other websites.<\/li>\n\n\n\n<li><strong>Fix<\/strong>: Apple released updates for Safari to patch the vulnerability.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>Chrome SOP Bypass via AudioContext (2018)<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Description<\/strong>: A vulnerability in Google Chrome&#8217;s handling of the <code>AudioContext<\/code> interface allowed SOP bypass.<\/li>\n\n\n\n<li><strong>CVE<\/strong>: CVE-2018-6177<\/li>\n\n\n\n<li><strong>Details<\/strong>: The bug allowed attackers to exploit the <code>AudioContext<\/code> interface to gain unauthorized access to data from other origins.<\/li>\n\n\n\n<li><strong>Impact<\/strong>: This could be used to steal data or perform actions on other websites as if they were from the same origin.<\/li>\n\n\n\n<li><strong>Fix<\/strong>: Google released a security update to Chrome to resolve the issue.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Have you ever wondered why a website you visit can&#8217;t access your cookies or session data from other sites you have open, like Facebook or Instagram? That&#8217;s thanks to the Same-Origin Policy. This policy restricts how one website can interact with resources from another website in your browser, ensuring your data remains secure and private.<span class=\"post-excerpt-end\">&hellip;<\/span><\/p>\n<p class=\"more-link\"><a href=\"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/\" class=\"themebutton\">Read More<\/a><\/p>\n","protected":false},"author":3,"featured_media":1381,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_mi_skip_tracking":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1380","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Same-Origin Policy (SOP)? - hacking.cool<\/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:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Same-Origin Policy (SOP)? - hacking.cool\" \/>\n<meta property=\"og:description\" content=\"Have you ever wondered why a website you visit can&#8217;t access your cookies or session data from other sites you have open, like Facebook or Instagram? That&#8217;s thanks to the Same-Origin Policy. This policy restricts how one website can interact with resources from another website in your browser, ensuring your data remains secure and private.&hellip;Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/\" \/>\n<meta property=\"og:site_name\" content=\"hacking.cool\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-20T23:45:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-20T23:51:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1792\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Atom\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Atom\" \/>\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\":\"WebSite\",\"@id\":\"https:\/\/hacking.cool\/atomanya\/#website\",\"url\":\"https:\/\/hacking.cool\/atomanya\/\",\"name\":\"hacking.cool\",\"description\":\"is the hacking school \ud83d\udc69\ud83c\udffb\u200d\ud83d\udcbb\ud83e\uddd1\ud83c\udffb\u200d\ud83d\udcbb\ud83d\uddfa\ud83d\udcda\ud83d\udcd6\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hacking.cool\/atomanya\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/#primaryimage\",\"url\":\"https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except.webp\",\"contentUrl\":\"https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except.webp\",\"width\":1792,\"height\":1024},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/\",\"url\":\"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/\",\"name\":\"What is Same-Origin Policy (SOP)? - hacking.cool\",\"isPartOf\":{\"@id\":\"https:\/\/hacking.cool\/atomanya\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/#primaryimage\"},\"datePublished\":\"2024-07-20T23:45:25+00:00\",\"dateModified\":\"2024-07-20T23:51:43+00:00\",\"author\":{\"@id\":\"https:\/\/hacking.cool\/atomanya\/#\/schema\/person\/804a839cfa61d89d69fb2cf1d2f0adc2\"},\"breadcrumb\":{\"@id\":\"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hacking.cool\/atomanya\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is Same-Origin Policy (SOP)?\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/hacking.cool\/atomanya\/#\/schema\/person\/804a839cfa61d89d69fb2cf1d2f0adc2\",\"name\":\"Atom\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hacking.cool\/atomanya\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ac4d05ec7d617e7f2dee5855900a855a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ac4d05ec7d617e7f2dee5855900a855a?s=96&d=mm&r=g\",\"caption\":\"Atom\"},\"url\":\"https:\/\/hacking.cool\/atomanya\/author\/atom\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Same-Origin Policy (SOP)? - hacking.cool","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:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/","og_locale":"en_US","og_type":"article","og_title":"What is Same-Origin Policy (SOP)? - hacking.cool","og_description":"Have you ever wondered why a website you visit can&#8217;t access your cookies or session data from other sites you have open, like Facebook or Instagram? That&#8217;s thanks to the Same-Origin Policy. This policy restricts how one website can interact with resources from another website in your browser, ensuring your data remains secure and private.&hellip;Read More","og_url":"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/","og_site_name":"hacking.cool","article_published_time":"2024-07-20T23:45:25+00:00","article_modified_time":"2024-07-20T23:51:43+00:00","og_image":[{"width":1792,"height":1024,"url":"https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except.webp","type":"image\/webp"}],"author":"Atom","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Atom","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/hacking.cool\/atomanya\/#website","url":"https:\/\/hacking.cool\/atomanya\/","name":"hacking.cool","description":"is the hacking school \ud83d\udc69\ud83c\udffb\u200d\ud83d\udcbb\ud83e\uddd1\ud83c\udffb\u200d\ud83d\udcbb\ud83d\uddfa\ud83d\udcda\ud83d\udcd6","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hacking.cool\/atomanya\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/#primaryimage","url":"https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except.webp","contentUrl":"https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except.webp","width":1792,"height":1024},{"@type":"WebPage","@id":"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/","url":"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/","name":"What is Same-Origin Policy (SOP)? - hacking.cool","isPartOf":{"@id":"https:\/\/hacking.cool\/atomanya\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/#primaryimage"},"datePublished":"2024-07-20T23:45:25+00:00","dateModified":"2024-07-20T23:51:43+00:00","author":{"@id":"https:\/\/hacking.cool\/atomanya\/#\/schema\/person\/804a839cfa61d89d69fb2cf1d2f0adc2"},"breadcrumb":{"@id":"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/hacking.cool\/atomanya\/what-is-same-origin-policy-sop\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hacking.cool\/atomanya\/"},{"@type":"ListItem","position":2,"name":"What is Same-Origin Policy (SOP)?"}]},{"@type":"Person","@id":"https:\/\/hacking.cool\/atomanya\/#\/schema\/person\/804a839cfa61d89d69fb2cf1d2f0adc2","name":"Atom","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hacking.cool\/atomanya\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ac4d05ec7d617e7f2dee5855900a855a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ac4d05ec7d617e7f2dee5855900a855a?s=96&d=mm&r=g","caption":"Atom"},"url":"https:\/\/hacking.cool\/atomanya\/author\/atom\/"}]}},"jetpack_featured_media_url":"https:\/\/hacking.cool\/atomanya\/wp-content\/uploads\/2024\/07\/DALL\u00b7E-2024-07-20-19.44.35-A-horizontal-image-illustrating-the-concept-of-the-Same-Origin-Policy-SOP-in-web-security.-The-image-should-contain-NO-TEXT-at-all-no-words-except.webp","_links":{"self":[{"href":"https:\/\/hacking.cool\/atomanya\/wp-json\/wp\/v2\/posts\/1380","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hacking.cool\/atomanya\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hacking.cool\/atomanya\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hacking.cool\/atomanya\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/hacking.cool\/atomanya\/wp-json\/wp\/v2\/comments?post=1380"}],"version-history":[{"count":2,"href":"https:\/\/hacking.cool\/atomanya\/wp-json\/wp\/v2\/posts\/1380\/revisions"}],"predecessor-version":[{"id":1383,"href":"https:\/\/hacking.cool\/atomanya\/wp-json\/wp\/v2\/posts\/1380\/revisions\/1383"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hacking.cool\/atomanya\/wp-json\/wp\/v2\/media\/1381"}],"wp:attachment":[{"href":"https:\/\/hacking.cool\/atomanya\/wp-json\/wp\/v2\/media?parent=1380"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hacking.cool\/atomanya\/wp-json\/wp\/v2\/categories?post=1380"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hacking.cool\/atomanya\/wp-json\/wp\/v2\/tags?post=1380"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}