{"id":60487,"date":"2020-09-23T17:12:16","date_gmt":"2020-09-23T21:12:16","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=60487"},"modified":"2020-09-24T15:06:35","modified_gmt":"2020-09-24T19:06:35","slug":"what-is-selinux","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/","title":{"rendered":"What is SELinux?"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_-1024x538.png\" alt=\"\" class=\"wp-image-60505\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>As cybersecurity becomes increasingly necessary, it is useful to familiarize yourself with some common security infrastructures that are used on modern web servers and personal computers. For Linux users, one such infrastructure is <strong>SELinux<\/strong>, the Linux kernel security module that dictates access control security policies, including <strong>mandatory access controls (MAC)<\/strong>. SELinux consists of a set of kernel modifications and user tools, and is included with most Linux-based machines in use today. In this article, we will discuss the importance of SELinux and explore some associated features.<\/p>\n\n\n\n<p>Topics Include:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#background\">SELinux Background<\/a><\/li><li><a href=\"#selinux\">How SELinux Works<\/a><\/li><li><a href=\"#command\">SELinux Commands<\/a><\/li><\/ul>\n\n\n\n<p class=\"alert alert-info\">Familiarize yourself with SELinux to ensure that your <a href=\"https:\/\/www.inmotionhosting.com\/dedicated-servers\">Dedicated Hosting<\/a> server is secure!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"background\"><strong>SELinux Background<\/strong><\/h2>\n\n\n\n<p>SELinux, short for <strong>Security-Enhanced Linux<\/strong>, consists of a series of security patches to the Linux kernel that mandate access controls for various services and applications. Based on projects originally developed by the National Security Agency, SELinux has quickly become a staple in the realm of open-source cybersecurity. SELinux enhances Linux system security by limiting privileges and reducing the overall harm a given application can cause to the entire system.\u00a0 Before discussing how SELinux works, it is important to explore the concept of correctness.\u00a0<\/p>\n\n\n\n<p><strong>Correctness<\/strong> is a term used in computer science to describe how closely a given program performs in comparison to the expected results based on the system specifications. For example, an application designed to open up an image file can be said to have a <strong>high level of correctness<\/strong> if it successfully opens up the image file as expected. This concept can be broadly applied to any program, application, or function utilized in a computer system.\u00a0<\/p>\n\n\n\n<p>In a system without SELinux, the security of the system depends on the correctness of the kernel as well as the correctness of any privileged applications and their respective configurations. If any faults exist within these areas, the entire system can be compromised. For this reason, having a Linux kernel without any sort of security module is not recommended, particularly for devices connected to the internet.<\/p>\n\n\n\n<p>By comparison, systems with SELinux depend on both the correctness of the kernel and that of the security-policy configuration. This ensures that while errors in correctness or configuration may result in a compromised application, the entire system will not be affected and other applications can continue to function normally. In essence, SELinux provides a compartmentalized security policy that prevents the spread of compromised applications and other security vulnerabilities.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"selinux\"><strong>How SELinux Works<\/strong><\/h2>\n\n\n\n<p>In order for SELinux to work, the system must first assign labels, also known as <strong>context<\/strong> to various functions. For users and processes, a text string is assigned, consisting of a username, a role, and a domain. Generally, the domain name is the only portion that gets used to determine access controls. Files, network ports, and hardware also have a context within SELinux and are assigned a name, a role, and a type.\u00a0<\/p>\n\n\n\n<p>The process of mapping files to a security context is referred to as labeling and is defined by the <strong>policy file<\/strong> being used. A policy file consists of three files: a mapping file, a rule file and an interface file. These three files must be compiled into a single policy file with the SELinux toolset, then loaded into the system kernel to make it an active policy. The creation of policy files can be done manually or with the SELinux management tool. Once the policy file has been loaded into the system kernel, you can rest assured that your system has been secured.<\/p>\n\n\n\n<p>By default, SELinux comes pre-configured on most modern Linux operating systems such as Ubuntu, Debian, or CentOS. This means that most of the time, users aren\u2019t even aware that SELinux is working behind-the-scenes to keep their system protected. In summary, the reliable and unobtrusive nature of SELinux makes it an essential part of any modern Linux system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"command\">SELinux Commands<\/h2>\n\n\n\n<p>To interact with SELinux on your machine, you can use a command-line interface to issue simple commands that allow you to check and modify the status of the SELinux security module. We will provide a few examples of commonly used SELinux commands below.<\/p>\n\n\n\n<p>To find the current status of SELinux, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">getenforce<\/pre>\n\n\n\n<p>For a more detailed status report, use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sestatus<\/pre>\n\n\n\n<p>To change the enforcement policy for SELinux, you can use the setenforce command. To set SELinux to enforce security policies, use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">setenforce enforcing<\/pre>\n\n\n\n<p>If you need to make changes to your system that require a more permissive security policy, you can use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">setenforce permissive<\/pre>\n\n\n\n<p>As you can see from these examples, SELinux can be easily managed from the command-line, allowing users to quickly obtain and modify the status of security policy enforcement. By familiarizing yourself with SELinux and related commands, you can better manage the security of your Linux-based server or personal computer.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As cybersecurity becomes increasingly necessary, it is useful to familiarize yourself with some common security infrastructures that are used on modern web servers and personal computers. For Linux users, one such infrastructure is SELinux, the Linux kernel security module that dictates access control security policies, including mandatory access controls (MAC). SELinux consists of a set<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/\"> 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":[4308],"tags":[],"class_list":["post-60487","post","type-post","status-publish","format-standard","hentry","category-linux"],"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 SELinux?<\/title>\n<meta name=\"description\" content=\"In this article, we will explore the importance of SELinux and discuss how to manage it using simple command-line operations.\" \/>\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\/server\/linux\/what-is-selinux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is SELinux?\" \/>\n<meta property=\"og:description\" content=\"In this article, we will explore the importance of SELinux and discuss how to manage it using simple command-line operations.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/\" \/>\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=\"2020-09-23T21:12:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-09-24T19:06:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_-1024x538.png\" \/>\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\/server\/linux\/what-is-selinux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"What is SELinux?\",\"datePublished\":\"2020-09-23T21:12:16+00:00\",\"dateModified\":\"2020-09-24T19:06:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/\"},\"wordCount\":807,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_-1024x538.png\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/\",\"name\":\"What is SELinux?\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_-1024x538.png\",\"datePublished\":\"2020-09-23T21:12:16+00:00\",\"dateModified\":\"2020-09-24T19:06:35+00:00\",\"description\":\"In this article, we will explore the importance of SELinux and discuss how to manage it using simple command-line operations.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is SELinux?\"}]},{\"@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 SELinux?","description":"In this article, we will explore the importance of SELinux and discuss how to manage it using simple command-line operations.","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\/server\/linux\/what-is-selinux\/","og_locale":"en_US","og_type":"article","og_title":"What is SELinux?","og_description":"In this article, we will explore the importance of SELinux and discuss how to manage it using simple command-line operations.","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2020-09-23T21:12:16+00:00","article_modified_time":"2020-09-24T19:06:35+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_-1024x538.png","type":"","width":"","height":""}],"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\/server\/linux\/what-is-selinux\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"What is SELinux?","datePublished":"2020-09-23T21:12:16+00:00","dateModified":"2020-09-24T19:06:35+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/"},"wordCount":807,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_-1024x538.png","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/","name":"What is SELinux?","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_-1024x538.png","datePublished":"2020-09-23T21:12:16+00:00","dateModified":"2020-09-24T19:06:35+00:00","description":"In this article, we will explore the importance of SELinux and discuss how to manage it using simple command-line operations.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-SELinux_.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/what-is-selinux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"What is SELinux?"}]},{"@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\/60487","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=60487"}],"version-history":[{"count":6,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/60487\/revisions"}],"predecessor-version":[{"id":60539,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/60487\/revisions\/60539"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=60487"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=60487"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=60487"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}