{"id":10104,"date":"2022-12-26T05:59:47","date_gmt":"2022-12-26T05:59:47","guid":{"rendered":"https:\/\/www.bodhost.com\/kb\/?p=10104"},"modified":"2026-02-26T14:02:45","modified_gmt":"2026-02-26T14:02:45","slug":"how-to-add-tmp-security-in-centos7","status":"publish","type":"post","link":"https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/","title":{"rendered":"How to Add \/tmp Security in Centos7?"},"content":{"rendered":"<p><strong><\/strong><\/p>\r\n<p>In this post, we will demonstrate how you can add \/tmp security in Centos7.<\/p>\r\n\r\n\r\n\r\n<p>Primarily, a Centos7 server terminal is needed.<\/p>\r\n\r\n\r\n\r\n<p>The servers are not safe when cyber criminals attempt to hack systems or servers by utilizing a hacking script. Nobody is aware of how to prevent these cyber criminals from putting these kinds of scripts on the computer system.<\/p>\r\n\r\n\r\n\r\n<p>And this is where \/tmp security comes in, it gives us the ability to defend our systems against any kind of attack.<\/p>\r\n\r\n\r\n\r\n<p>To prevent hackers from running scripts on the server, we employ \/tmp.<\/p>\r\n\r\n\r\n\r\n<p>It is incredibly challenging to breach the \/tmp\u2019s security. With the use of this technique, several different brute-force attacks and PHP injection rootkits may be stopped.<\/p>\r\n\r\n\r\n\r\n<p>Follow these steps to add \/tmp security:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\" type=\"1\">\r\n<li>On your hard disc, create a 2000MB or 1000MB \/tmp partition.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>For 2000Mb, type this command.<\/p>\r\n\r\n\r\n\r\n<p>\u201c #dd if=\/dev\/zero of=\/var\/tmpMount bs=1024 count=2000000 \u201c<\/p>\r\n\r\n\r\n\r\n<p>To send 1000MB, type this command.<\/p>\r\n\r\n\r\n\r\n<p>\u201c #dd if=\/dev\/zero of=\/var\/tmpMount bs=1024 count=1000000 \u201c<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>The ext3 extension is used by the partition format.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>\u201c #mkfs.ext3 \/var\/tmpMount \u201c<\/p>\r\n\r\n\r\n\r\n<p>Press &#8220;Y&#8221; once the instruction has been executed.<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Duplicate the \/tmp folder. We won&#8217;t have a problem because we have a backup plan in case something goes wrong.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>\u201c #cp -R \/tmp \/tmpbak \u201c<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Mount the \/tmp filesystem now with the noexec option: noexec (script cannot be implemented because it doesn\u2019t have the authorization to run). It is not allowed to let any hacking script operate on that system.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u201c #mount -o loop,noexec,nosuid,rw \/var\/tmpMount \/tmp \u201c<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>The \/tmp folder should be accessible. The \/tmp subdirectory consequently has complete access to all files and directories.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u201c #chmod 1777 \/tmp \u201c<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Replace the tmp backup folder with the \/tmp folder.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>\u201c #cp -R \/tmpbak\/* \/tmp\/ \u201c<\/p>\r\n\r\n\r\n\r\n<p>\u201c #rm -rf \/tmpbak \u201c<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Create a permanent mount point for the \/tmp partition now by editing the \/etc\/fstab file. However, before you do anything else, create a backup of the \/etc\/fstab file since it is crucial and if you make a mistake, your server will crash.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u201c #vim \/etc\/fstab \u201c<\/p>\r\n\r\n\r\n\r\n<p>Here, add one more line.<\/p>\r\n\r\n\r\n\r\n<p>\u201c \/var\/tmpMount \/tmp ext2 loop,noexec,nosuid,rw\u00a0 0\u00a0 0 \u201c<\/p>\r\n\r\n\r\n\r\n<p><em>\u201c <\/em>Save this file with this command: wq<em> \u201c<\/em><\/p>\r\n\r\n\r\n\r\n<p>After making any alterations to \/etc\/fstab, be sure to run #mount -a to make sure you didn&#8217;t make any errors.<\/p>\r\n\r\n\r\n\r\n<p>If mount -a executes without generating any errors, everything has been configured properly. The occurrence of an error proves that you made a mistake.<\/p>\r\n\r\n\r\n\r\n<p>Any script you attempt to run will now be denied permission if you mount \/tmp using the noexec option.<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>For \/tmp, build a symbolic link.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u201c #cp -rvf \/var\/tmp \/var\/tmpbak \u201c<\/p>\r\n\r\n\r\n\r\n<p>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u201c #ln -s \/tmp \/var\/tmp \u201c<\/p>\r\n\r\n\r\n\r\n<p>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u201c #cp -R \/var\/tmpbak\/* \/tmp\/ \u201c<\/p>\r\n\r\n\r\n\r\n<p>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u201c #rm -rf \/var\/tmpbak \u201c<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Secure the \/dev\/shm folder now in \/etc\/fstab with noexec permission.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>\u201c #vim \/etc\/fstab \u201c<\/p>\r\n\r\n\r\n\r\n<p>Insert this line<\/p>\r\n\r\n\r\n\r\n<p>\u201c tmpfs \/dev\/shm tmpfs defaults,nosuid,noexec,rw 0 0 \u201c<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\" type=\"1\">\r\n<li>Now, Mount temporary \/dev\/shm<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>\u201c #mount -o remount \/dev\/shm \u201c<\/p>\r\n\r\n\r\n\r\n<p>You may effectively add \/tmp security Centos7 in this manner.<\/p>\r\n\r\n\r\n\r\n<p>For more information or assistance, you can reach out to our round-the-clock customer support team who would gladly assist you with any query.<\/p>\r\n<p><strong><\/strong><\/p>","protected":false},"excerpt":{"rendered":"<p>In this post, we will demonstrate how you can add \/tmp security in Centos7. Primarily, a Centos7 server terminal is needed. The servers are not safe when cyber criminals attempt&hellip;<\/p>\n<p><a href=\"https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/\" class=\"more-link\">Read More<\/a><\/p>\n","protected":false},"author":21,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[830],"tags":[1367,1366],"class_list":["post-10104","post","type-post","status-publish","format-standard","hentry","category-cpanel","tag-centos7","tag-how-to-add-tmp-security-in-centos7"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Add \/tmp Security in Centos7?<\/title>\n<meta name=\"description\" content=\"Are you trying to figure out how you can add \/tmp in Centos7? Then follow the instructions provided in this post.\" \/>\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.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Add \/tmp Security in Centos7?\" \/>\n<meta property=\"og:description\" content=\"Are you trying to figure out how you can add \/tmp in Centos7? Then follow the instructions provided in this post.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - bodHOST\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-26T05:59:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T14:02:45+00:00\" \/>\n<meta name=\"author\" content=\"Serena\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Serena\" \/>\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\":\"Article\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-tmp-security-in-centos7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-tmp-security-in-centos7\\\/\"},\"author\":{\"name\":\"Serena\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/ffd3f118493c99471ae5bd4790a55830\"},\"headline\":\"How to Add \\\/tmp Security in Centos7?\",\"datePublished\":\"2022-12-26T05:59:47+00:00\",\"dateModified\":\"2026-02-26T14:02:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-tmp-security-in-centos7\\\/\"},\"wordCount\":529,\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"keywords\":[\"Centos7\",\"How to Add \\\/tmp Security in Centos7\"],\"articleSection\":[\"cPanel\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-tmp-security-in-centos7\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-tmp-security-in-centos7\\\/\",\"name\":\"How to Add \\\/tmp Security in Centos7?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\"},\"datePublished\":\"2022-12-26T05:59:47+00:00\",\"dateModified\":\"2026-02-26T14:02:45+00:00\",\"description\":\"Are you trying to figure out how you can add \\\/tmp in Centos7? Then follow the instructions provided in this post.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-tmp-security-in-centos7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-tmp-security-in-centos7\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-tmp-security-in-centos7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"cPanel\",\"item\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/category\\\/cpanel\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Add \\\/tmp Security in Centos7?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"alternateName\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"contentUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"width\":240,\"height\":240,\"caption\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/ffd3f118493c99471ae5bd4790a55830\",\"name\":\"Serena\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8bf3c9f6220a13a4d46295ad7c38a0c9e351ca3a57d0e417580c8e8b83a12a50?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8bf3c9f6220a13a4d46295ad7c38a0c9e351ca3a57d0e417580c8e8b83a12a50?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8bf3c9f6220a13a4d46295ad7c38a0c9e351ca3a57d0e417580c8e8b83a12a50?s=96&d=mm&r=g\",\"caption\":\"Serena\"},\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/author\\\/seema\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Add \/tmp Security in Centos7?","description":"Are you trying to figure out how you can add \/tmp in Centos7? Then follow the instructions provided in this post.","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.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/","og_locale":"en_US","og_type":"article","og_title":"How to Add \/tmp Security in Centos7?","og_description":"Are you trying to figure out how you can add \/tmp in Centos7? Then follow the instructions provided in this post.","og_url":"https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/","og_site_name":"Knowledge Base - bodHOST","article_published_time":"2022-12-26T05:59:47+00:00","article_modified_time":"2026-02-26T14:02:45+00:00","author":"Serena","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Serena","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/#article","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/"},"author":{"name":"Serena","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/ffd3f118493c99471ae5bd4790a55830"},"headline":"How to Add \/tmp Security in Centos7?","datePublished":"2022-12-26T05:59:47+00:00","dateModified":"2026-02-26T14:02:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/"},"wordCount":529,"publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"keywords":["Centos7","How to Add \/tmp Security in Centos7"],"articleSection":["cPanel"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/","url":"https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/","name":"How to Add \/tmp Security in Centos7?","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/#website"},"datePublished":"2022-12-26T05:59:47+00:00","dateModified":"2026-02-26T14:02:45+00:00","description":"Are you trying to figure out how you can add \/tmp in Centos7? Then follow the instructions provided in this post.","breadcrumb":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-tmp-security-in-centos7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"cPanel","item":"https:\/\/www.bodhost.com\/kb\/category\/cpanel\/"},{"@type":"ListItem","position":2,"name":"How to Add \/tmp Security in Centos7?"}]},{"@type":"WebSite","@id":"https:\/\/www.bodhost.com\/kb\/#website","url":"https:\/\/www.bodhost.com\/kb\/","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","description":"","publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"alternateName":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bodhost.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.bodhost.com\/kb\/#organization","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","url":"https:\/\/www.bodhost.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","contentUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","width":240,"height":240,"caption":"Web Hosting Knowledge Base | bodHOST Hosting FAQ"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/ffd3f118493c99471ae5bd4790a55830","name":"Serena","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8bf3c9f6220a13a4d46295ad7c38a0c9e351ca3a57d0e417580c8e8b83a12a50?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8bf3c9f6220a13a4d46295ad7c38a0c9e351ca3a57d0e417580c8e8b83a12a50?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8bf3c9f6220a13a4d46295ad7c38a0c9e351ca3a57d0e417580c8e8b83a12a50?s=96&d=mm&r=g","caption":"Serena"},"url":"https:\/\/www.bodhost.com\/kb\/author\/seema\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/10104","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/comments?post=10104"}],"version-history":[{"count":5,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/10104\/revisions"}],"predecessor-version":[{"id":11652,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/10104\/revisions\/11652"}],"wp:attachment":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/media?parent=10104"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/categories?post=10104"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/tags?post=10104"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}