{"id":47354,"date":"2019-09-04T08:44:59","date_gmt":"2019-09-04T13:44:59","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=47354"},"modified":"2021-11-04T16:28:03","modified_gmt":"2021-11-04T20:28:03","slug":"subresource-integrity-sri","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/","title":{"rendered":"What is Subresource Integrity (SRI)?"},"content":{"rendered":"\n<p><strong>In this article:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#what\">What is it?<\/a><\/li><li><a href=\"#webapp\">SRI with a Webapp<\/a><\/li><li><a href=\"#checksum\">SRI Code with SSH<\/a><\/li><li><a href=\"#wordpress\">WordPress<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what\">What is Subresource Integrity (SRI)?<\/h2>\n\n\n\n<p>Subresource integrity (SRI) is W3C standard that protects websites against malicious modifications to JavaScript and <abbr title=\"Cascading Style Sheets\">CSS<\/abbr> libraries hosted externally on content delivery networks (CDNs) for the fastest delivery possible. The most popular examples are Jquery and Bootstrap.<\/p>\n\n\n\n<p>We&#8217;ll use the <a href=\"https:\/\/getbootstrap.com\/docs\/4.3\/getting-started\/introduction\/\">Bootstrap 4.3.1<\/a> CSS <code>src<\/code> link for our examples throughout this article. Imagine your website uses the Bootstrap CSS snippet below:<\/p>\n\n\n\n<p><code>&lt;link rel=\"stylesheet\" href=\"https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.3.1\/css\/bootstrap.min.css\"&gt;<\/code><\/p>\n\n\n\n<p>Now imagine someone gains authorized access to that CDN storage location. The infected package could now steal users&#8217; info, redirect links to include multiple targets destinations, initiate denial-of-service (DOS) attacks, and more.<\/p>\n\n\n\n<p>This is what subresource integrity (SRI) prevents by adding an <code>integrity<\/code> attribute with the checksum (synonymous with hash and digital fingerprint) and specified algorithm for the authentic package alongside the source URL. This directs the web browser to compare the source URL&#8217;s checksum to the given checksum and <strong>only load it if they match<\/strong>. Include the <code>crossorigin<\/code> attribute to direct browsers to complete this action without cookies.<\/p>\n\n\n\n<p>To apply SRI to our example, we&#8217;d add the following attributes for a SHA384 checksum:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>integrity=&#8221;sha384-ggOyR0iXCbMQv3Xipma34MD+dH\/1fQ784\/j6cY\/iJTQUOhcWr7x9JvoRxT2MZw1T&#8221; <\/li><li>crossorigin=&#8221;anonymous&#8221;<\/li><\/ul>\n\n\n\n<p> If we added SRI with SHA384 to our CSS example above:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>&lt;link rel=\"stylesheet\" href=\"https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.3.1\/css\/bootstrap.min.css\" <strong>integrity=\"<\/strong><strong>sha384<\/strong><strong>-<\/strong><strong>ggOyR0iXCbMQv3Xipma34MD<\/strong><strong>+<\/strong><strong>dH<\/strong><strong>\/1fQ784\/<\/strong><strong>j6cY<\/strong><strong>\/<\/strong><strong>iJTQUOhcWr7x9JvoRxT2MZw1T<\/strong><strong>\" <\/strong><strong>crossorigin<\/strong><strong>=\"anonymous\"<\/strong>&gt;<\/code><\/pre>\n\n\n\n<p class=\"alert alert-note\"><strong>Note:<\/strong>The Bootstrap Getting Started guide includes SRI with SHA384 by default.&lt;<\/p>\n\n\n\n<p class=\"alert alert-danger\"><strong>Warning:<\/strong> Do not simply copy any code from this article in to your website. Visit <a href=\"https:\/\/getbootstrap.com\/\">GetBootstrap<\/a><a href=\"https:\/\/getbootstrap.com\/\">.com<\/a> and create a checksum yourself to ensure you&#8217;re not adding malware.<\/p>\n\n\n\n<p>SRI usage requires that the user&#8217;s browser User-agent support SHA-256, SHA-384, and SHA-512 hash functions. An User-agent may not support the weaker MD5 and SHA-1 algorithms. <\/p>\n\n\n\n<p>You can also add multiple algorithms for forward-compatibility with newer cryptographic algorithms. In such cases, the strongest supported hash would be used. For example, below you&#8217;ll see a SHA512 checksum following the SHA384:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>&lt;link rel=\"stylesheet\" href=\"https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.3.1\/css\/bootstrap.min.css\" <br>integrity=\"sha384-ggOyR0iXCbMQv3Xipma34MD+dH\/1fQ784\/j6cY\/iJTQUOhcWr7x9JvoRxT2MZw1T\"<br><strong>integrity=\"<\/strong><strong>sha512<\/strong><strong>-<\/strong><strong>tDXPcamuZsWWd6OsKFyH6nAqh<\/strong><strong>\/<\/strong><strong>MjZ<\/strong><strong>\/5Yk88T5o+<\/strong><strong>aMfygqNFPan1pLyPFAndRzmOWHKT<\/strong><strong>+<\/strong><strong>jSDzWpJv8krj6x1LMA<\/strong><strong>==\"<\/strong><br>crossorigin=\"anonymous\"&gt;<\/code><\/pre>\n\n\n\n<p>In the future, SRI may expand to support audio\/visual files which would be helpful for <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/live-broadcasting\/\"  >live broadcasters<\/a> with self-hosted podcasts.<\/p>\n\n\n\n<p>Below we cover how to implement subresource integrity (SRI) in websites using external libraries.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"webapp\">Web App<\/h2>\n\n\n\n<p>Users without SSH access can use free web applications to ease the process.webappVisitUsers without SSH access can use free web applications to ease the process.<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>Visit <a href=\"https:\/\/www.srihash.org\/\">SRIhash.org<\/a>.<\/li><li>Paste the library <code>src<\/code> URL and click <strong>Hash!<\/strong><\/li><li><a href=\"\/support\/website\/how-to-edit-a-file\/\">Edit your index file<\/a>.<\/li><li>Paste the full script code provided within your website <code>&lt;head&gt;<\/code> section.<\/li><li>Test your SRI integration at <a href=\"https:\/\/observatory.mozilla.org\/\">observatory.mozilla.org<\/a>.<\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"checksum\">Create a Checksum in SSH<\/h2>\n\n\n\n<p>Advanced users can use <a href=\"\/support\/security\/create-checksum-locally\/\">a local computer terminal<\/a> or <a href=\"\/support\/security\/verify-checksums-ssh\/\">web server SSH<\/a> to create a checksum. If the library is hosted on an external server, you&#8217;ll need to use the <code>curl<\/code> command below.<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\"><li><a href=\"\/support\/server\/ssh\/do-you-provide-ssh-access\/\">Log in to SSH<\/a> or <a href=\"\/support\/edu\/cpanel\/how-to-launch-the-cpanel-terminal\/\">cPanel Terminal<\/a>.<\/li><li>Run the following command, replacing <em>url-to-filename<\/em> with the source URL (<code>&amp;&amp; echo<\/code> forces the checksum shows to a new line): <br><code>curl -s https:\/\/<em>url-to-filename<\/em> | openssl dgst -sha384 -binary | openssl base64 -A <\/code><br><code>&amp;&amp; echo<\/code><\/li><li>(Optional) To get a SHA512 checksum or stronger, simple replace <code>;-sha384<\/code> with your preferred algorithm:<br><code>curl -s https:\/\/url-to-filename | openssl dgst -sha512 -binary | openssl base64 -A <\/code><br><code>&amp;&amp; echo<\/code><\/li><li>Add the following after the <code>src<\/code> URL: <code>integrity=\"sha384-<em>checksum-from-code<\/em>\" crossorigin=\"anonymous\"<\/code><\/li><\/ol>\n\n\n\n<p>So you don&#8217;t have to scroll up, our example from above:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>&lt;link rel=\"stylesheet\" href=\"https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.3.1\/css\/bootstrap.min.css\" <br>integrity=\"sha384-ggOyR0iXCbMQv3Xipma34MD+dH\/1fQ784\/j6cY\/iJTQUOhcWr7x9JvoRxT2MZw1T\"<br><strong>integrity=\"<\/strong><strong>sha512<\/strong><strong>-<\/strong><strong>tDXPcamuZsWWd6OsKFyH6nAqh<\/strong><strong>\/<\/strong><strong>MjZ<\/strong><strong>\/5Yk88T5o+<\/strong><strong>aMfygqNFPan1pLyPFAndRzmOWHKT<\/strong><strong>+<\/strong><strong>jSDzWpJv8krj6x1LMA<\/strong><strong>==\"<\/strong><br>crossorigin=\"anonymous\"&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wordpress\">WordPress<\/h2>\n\n\n\n<p>As of now, WordPress doesn&#8217;t have a native ability to add SRI . There&#8217;s an official WordPress <a href=\"https:\/\/core.trac.wordpress.org\/ticket\/33948\">Trac ticket<\/a> regarding its possible implementation. For now, WordPress users should check out the <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/subresource-integrity-sri-wordpress\/\"  >Subresource Integrity (SRI) Manager plugin<\/a> for compliance.<\/p>\n\n\n\n<p>Looking for an in-depth security solution? Check out the <a href=\"https:\/\/sucuri.net\/lp\/promo\/inmotion\/?clickid=2q13a3S7QxyLT9tQy%3ASR0UvEUkBWzkx6hTDQUQ0\">Sucuri<\/a> web application firewall (WAF), or ask about our security features on <a href=\"https:\/\/www.inmotionhosting.com\/vps-hosting\">VPS Hosting<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article: What is it? SRI with a Webapp SRI Code with SSH WordPress What is Subresource Integrity (SRI)? Subresource integrity (SRI) is W3C standard that protects websites against malicious modifications to JavaScript and CSS libraries hosted externally on content delivery networks (CDNs) for the fastest delivery possible. The most popular examples are Jquery<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4299],"tags":[],"class_list":["post-47354","post","type-post","status-publish","format-standard","hentry","category-security"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is Subresource Integrity (SRI)? | InMotion Hosting<\/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:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Subresource Integrity (SRI)? | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article: What is it? SRI with a Webapp SRI Code with SSH WordPress What is Subresource Integrity (SRI)? Subresource integrity (SRI) is W3C standard that protects websites against malicious modifications to JavaScript and CSS libraries hosted externally on content delivery networks (CDNs) for the fastest delivery possible. The most popular examples are Jquery Read More &gt;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-04T13:44:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-04T20:28:03+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\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:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"What is Subresource Integrity (SRI)?\",\"datePublished\":\"2019-09-04T13:44:59+00:00\",\"dateModified\":\"2021-11-04T20:28:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/\"},\"wordCount\":583,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/\",\"name\":\"What is Subresource Integrity (SRI)? | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2019-09-04T13:44:59+00:00\",\"dateModified\":\"2021-11-04T20:28:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is Subresource Integrity (SRI)?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Subresource Integrity (SRI)? | InMotion Hosting","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:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/","og_locale":"en_US","og_type":"article","og_title":"What is Subresource Integrity (SRI)? | InMotion Hosting","og_description":"In this article: What is it? SRI with a Webapp SRI Code with SSH WordPress What is Subresource Integrity (SRI)? Subresource integrity (SRI) is W3C standard that protects websites against malicious modifications to JavaScript and CSS libraries hosted externally on content delivery networks (CDNs) for the fastest delivery possible. The most popular examples are Jquery Read More >","og_url":"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2019-09-04T13:44:59+00:00","article_modified_time":"2021-11-04T20:28:03+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"What is Subresource Integrity (SRI)?","datePublished":"2019-09-04T13:44:59+00:00","dateModified":"2021-11-04T20:28:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/"},"wordCount":583,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/","url":"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/","name":"What is Subresource Integrity (SRI)? | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2019-09-04T13:44:59+00:00","dateModified":"2021-11-04T20:28:03+00:00","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/security\/subresource-integrity-sri\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"What is Subresource Integrity (SRI)?"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/47354","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=47354"}],"version-history":[{"count":16,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/47354\/revisions"}],"predecessor-version":[{"id":91110,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/47354\/revisions\/91110"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=47354"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=47354"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=47354"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}