{"id":894,"date":"2020-09-30T23:48:18","date_gmt":"2020-09-30T15:48:18","guid":{"rendered":"https:\/\/www.insecurewire.com\/?p=894"},"modified":"2020-09-30T23:48:18","modified_gmt":"2020-09-30T15:48:18","slug":"creating-your-own-infrastructure-certificate-authority-with-easyrsa","status":"publish","type":"post","link":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/","title":{"rendered":"Creating your own Infrastructure Certificate Authority with EasyRSA"},"content":{"rendered":"<p>What is one of the most annoying tasks as a Network or Systems Engineer? Yep you got it, <strong>managing certificates<\/strong>.<\/p>\n<p>Almost all modern ICT systems are managed using a web browser and via some sort of Javascript \/ HTML5 interface. The industry has moved to TLS\/HTTPS by default which means all these web based systems need valid certificates or the browsers scream all sorts of errors and this is only going to get worse. <\/p>\n<p>For internal networks managing a Certificate Authority can be a time consuming task. What if you could create your own CA with a long expiry option? Issue certs from it easily and not have to change certificates on Infrastructure every year. This can be acheived with <a href=\"https:\/\/easy-rsa.readthedocs.io\/en\/latest\/\" rel=\"noopener noreferrer\" target=\"_blank\">EasyRSA<\/a>. EasyRSA is a utility for X.509 based certificates that is part of the OpenVPN project but can also be used to create your own Certificate Authority. Here is a run down of the tasks for this project:<\/p>\n<p>1. Create an Ubuntu VM with easy-rsa installed (can be any flavour of Linux, setting up the vm is out of scope). I recommend creating a secondary user to do all your ca config with that is not the root user.<br \/>\n2. Build the CA with easyrsa and issue 10 year root cert &#8211; which is the default:<br \/>\n<code>sudo apt install easy<br \/>\nmkdir ~\/easy-rsa<br \/>\nln -s \/usr\/share\/easy-rsa\/* ~\/easy-rsa\/<br \/>\nchmod 700 \/home\/ca\/easy-rsa\/<br \/>\ncd ~\/easy-rsa\/<br \/>\n.\/easyrsa init-pki<br \/>\n<\/code><\/p>\n<p>2.1 Edit your variables for the CA including your cert expiry time:<br \/>\n<code>nano vars<br \/>\nset_var EASYRSA_REQ_COUNTRY    \"US\"<br \/>\nset_var EASYRSA_REQ_PROVINCE   \"Company State\"<br \/>\nset_var EASYRSA_REQ_CITY       \"Company City\"<br \/>\nset_var EASYRSA_REQ_ORG        \"Company.com\"<br \/>\nset_var EASYRSA_REQ_EMAIL      \"adminuser@company.com\"<br \/>\nset_var EASYRSA_REQ_OU         \"IT\"<br \/>\nset_var EASYRSA_ALGO           \"ec\"<br \/>\nset_var EASYRSA_DIGEST         \"sha512\"<br \/>\nset_var EASYRSA_CA_EXPIRE       3650<br \/>\nset_var EASYRSA_CERT_EXPIRE    \"3258\"<\/code><br \/>\nNote that CA_EXPIRE sets how long the CA cert is valid for. CERT_EXPIRE is how long issued certificates are valid for.<\/p>\n<p>2.2 Build the CA and export root cert:<br \/>\n<code>.\/easyrsa build-ca<\/code><br \/>\nUpon building you will be asked to input a CA password. Use a password generator and securely store this password. It goes without saying, if you loose your CA password you won&#8217;t be able to issue and sign requests for certificates.<br \/>\n<code>cd pki\/<br \/>\ncat ca.crt<\/code><br \/>\nCopy the output to a text file and save as ca.crt<br \/>\n3. Import the ca.crt to the trusted root store on your domain, pc or browser. For Windows it is the Local Machine > Trusted Root Certificate Store.<br \/>\n4. Now you can issue a certificate signing request for an Infrastructure device. To do so we will create a new key with openssl. In the below example we are issuing a web server certificate for a Riverbed HTTPS management interface:<br \/>\n<code>cd ~\/csr<br \/>\nopenssl genrsa -out rb-demo.key<br \/>\nopenssl req -new -key rb-demo.key -out rb-demo.req -config <(\ncat <<-EOF\n[req]\ndefault_bits = 2048\nprompt = no\ndefault_md = sha256\nreq_extensions = req_ext\ndistinguished_name = dn\n\n[ dn ]\nC=US\nST=Company State\nL=Company Town\nO=Company.com\nOU=IT\nemailAddress=support@company.com\nCN = rb-demo.company.com\n\n[ req_ext ]\nsubjectAltName = @alt_names\n\n[ alt_names ]\nDNS.1 = rb-demo.company.com\nEOF\n)<\/code><\/p>\n<p>4.1 Lets import the above request and sign it with easyrsa:<br \/>\n<code>.\/easyrsa import-req ..\/csr\/rb-demo.req rb-demo<br \/>\n.\/easyrsa sign-req server rb-demo<\/code><\/p>\n<p>4.2 Export your key and cert with your tool of choice for SCP, I use WinSCP.<br \/>\nThe key will be in ~\/csr. You can also cat the issued cert like so and copy the X509 output to a text file and name it file.crt:<br \/>\n<code>cat ~\/easy-rsa\/pki\/issued\/rb-demo.crt<\/code><\/p>\n<p>So there you have it, your own internal \/ private \"Infrastructure CA\". My next task with this is to create a shell script for issuing certificates and interacting with the CA, if I ever get around to it!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is one of the most annoying tasks as a Network or Systems Engineer? Yep you got it, managing certificates. Almost all modern ICT systems&#8230;<\/p>\n","protected":false},"author":2,"featured_media":895,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[31,39],"tags":[65,93,112,145,167,177],"class_list":["post-894","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","category-pki","tag-certificates","tag-easyrsa","tag-https","tag-pki","tag-ssl","tag-tls"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Creating your own Infrastructure Certificate Authority with EasyRSA - Insecure Wire<\/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.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating your own Infrastructure Certificate Authority with EasyRSA - Insecure Wire\" \/>\n<meta property=\"og:description\" content=\"What is one of the most annoying tasks as a Network or Systems Engineer? Yep you got it, managing certificates. Almost all modern ICT systems...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/\" \/>\n<meta property=\"og:site_name\" content=\"Insecure Wire\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-30T15:48:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2020\/09\/download.png\" \/>\n\t<meta property=\"og:image:width\" content=\"267\" \/>\n\t<meta property=\"og:image:height\" content=\"79\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"nikonau\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/insecurewire\" \/>\n<meta name=\"twitter:site\" content=\"@insecurewire\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"nikonau\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/\"},\"author\":{\"name\":\"nikonau\",\"@id\":\"https:\/\/www.insecurewi.re\/#\/schema\/person\/8ba08b41fc754b971a948ead6ccb777d\"},\"headline\":\"Creating your own Infrastructure Certificate Authority with EasyRSA\",\"datePublished\":\"2020-09-30T15:48:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/\"},\"wordCount\":473,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.insecurewi.re\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2020\/09\/download.png\",\"keywords\":[\"Certificates\",\"easyrsa\",\"HTTPS\",\"PKI\",\"SSL\",\"TLS\"],\"articleSection\":[\"Linux\",\"PKI\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/\",\"url\":\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/\",\"name\":\"Creating your own Infrastructure Certificate Authority with EasyRSA - Insecure Wire\",\"isPartOf\":{\"@id\":\"https:\/\/www.insecurewi.re\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2020\/09\/download.png\",\"datePublished\":\"2020-09-30T15:48:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#primaryimage\",\"url\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2020\/09\/download.png\",\"contentUrl\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2020\/09\/download.png\",\"width\":267,\"height\":79,\"caption\":\"easyrsa\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.insecurewi.re\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Creating your own Infrastructure Certificate Authority with EasyRSA\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.insecurewi.re\/#website\",\"url\":\"https:\/\/www.insecurewi.re\/\",\"name\":\"Insecure Wire\",\"description\":\"A Network Engineer\u2019s Perspective.\",\"publisher\":{\"@id\":\"https:\/\/www.insecurewi.re\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.insecurewi.re\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.insecurewi.re\/#organization\",\"name\":\"Insecure Wire\",\"url\":\"https:\/\/www.insecurewi.re\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.insecurewi.re\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/10\/cloud.png\",\"contentUrl\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/10\/cloud.png\",\"width\":32,\"height\":32,\"caption\":\"Insecure Wire\"},\"image\":{\"@id\":\"https:\/\/www.insecurewi.re\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/insecurewire\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.insecurewi.re\/#\/schema\/person\/8ba08b41fc754b971a948ead6ccb777d\",\"name\":\"nikonau\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.insecurewi.re\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2d1b9d9dc90da4f6d3da31b870f418c6b3553ba9be48d53e8ee3a35b0adb1d35?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2d1b9d9dc90da4f6d3da31b870f418c6b3553ba9be48d53e8ee3a35b0adb1d35?s=96&d=mm&r=g\",\"caption\":\"nikonau\"},\"sameAs\":[\"https:\/\/x.com\/https:\/\/twitter.com\/insecurewire\"],\"url\":\"https:\/\/www.insecurewi.re\/index.php\/author\/nikon\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creating your own Infrastructure Certificate Authority with EasyRSA - Insecure Wire","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.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/","og_locale":"en_US","og_type":"article","og_title":"Creating your own Infrastructure Certificate Authority with EasyRSA - Insecure Wire","og_description":"What is one of the most annoying tasks as a Network or Systems Engineer? Yep you got it, managing certificates. Almost all modern ICT systems...","og_url":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/","og_site_name":"Insecure Wire","article_published_time":"2020-09-30T15:48:18+00:00","og_image":[{"width":267,"height":79,"url":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2020\/09\/download.png","type":"image\/png"}],"author":"nikonau","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/insecurewire","twitter_site":"@insecurewire","twitter_misc":{"Written by":"nikonau","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#article","isPartOf":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/"},"author":{"name":"nikonau","@id":"https:\/\/www.insecurewi.re\/#\/schema\/person\/8ba08b41fc754b971a948ead6ccb777d"},"headline":"Creating your own Infrastructure Certificate Authority with EasyRSA","datePublished":"2020-09-30T15:48:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/"},"wordCount":473,"commentCount":0,"publisher":{"@id":"https:\/\/www.insecurewi.re\/#organization"},"image":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#primaryimage"},"thumbnailUrl":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2020\/09\/download.png","keywords":["Certificates","easyrsa","HTTPS","PKI","SSL","TLS"],"articleSection":["Linux","PKI"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/","url":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/","name":"Creating your own Infrastructure Certificate Authority with EasyRSA - Insecure Wire","isPartOf":{"@id":"https:\/\/www.insecurewi.re\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#primaryimage"},"image":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#primaryimage"},"thumbnailUrl":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2020\/09\/download.png","datePublished":"2020-09-30T15:48:18+00:00","breadcrumb":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#primaryimage","url":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2020\/09\/download.png","contentUrl":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2020\/09\/download.png","width":267,"height":79,"caption":"easyrsa"},{"@type":"BreadcrumbList","@id":"https:\/\/www.insecurewi.re\/index.php\/2020\/09\/30\/creating-your-own-infrastructure-certificate-authority-with-easyrsa\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.insecurewi.re\/"},{"@type":"ListItem","position":2,"name":"Creating your own Infrastructure Certificate Authority with EasyRSA"}]},{"@type":"WebSite","@id":"https:\/\/www.insecurewi.re\/#website","url":"https:\/\/www.insecurewi.re\/","name":"Insecure Wire","description":"A Network Engineer\u2019s Perspective.","publisher":{"@id":"https:\/\/www.insecurewi.re\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.insecurewi.re\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.insecurewi.re\/#organization","name":"Insecure Wire","url":"https:\/\/www.insecurewi.re\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.insecurewi.re\/#\/schema\/logo\/image\/","url":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/10\/cloud.png","contentUrl":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/10\/cloud.png","width":32,"height":32,"caption":"Insecure Wire"},"image":{"@id":"https:\/\/www.insecurewi.re\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/insecurewire"]},{"@type":"Person","@id":"https:\/\/www.insecurewi.re\/#\/schema\/person\/8ba08b41fc754b971a948ead6ccb777d","name":"nikonau","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.insecurewi.re\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2d1b9d9dc90da4f6d3da31b870f418c6b3553ba9be48d53e8ee3a35b0adb1d35?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2d1b9d9dc90da4f6d3da31b870f418c6b3553ba9be48d53e8ee3a35b0adb1d35?s=96&d=mm&r=g","caption":"nikonau"},"sameAs":["https:\/\/x.com\/https:\/\/twitter.com\/insecurewire"],"url":"https:\/\/www.insecurewi.re\/index.php\/author\/nikon\/"}]}},"_links":{"self":[{"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/posts\/894","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/comments?post=894"}],"version-history":[{"count":0,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/posts\/894\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/media\/895"}],"wp:attachment":[{"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/media?parent=894"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/categories?post=894"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/tags?post=894"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}