{"id":4892,"date":"2021-03-04T08:20:19","date_gmt":"2021-03-04T08:20:19","guid":{"rendered":"https:\/\/linuxways.net\/?p=4892"},"modified":"2021-03-04T08:24:13","modified_gmt":"2021-03-04T08:24:13","slug":"how-to-hide-files-inside-images-in-ubuntu-using-steganography","status":"publish","type":"post","link":"https:\/\/linuxways.net\/de\/ubuntu\/how-to-hide-files-inside-images-in-ubuntu-using-steganography\/","title":{"rendered":"How to Hide Files Inside Images in Ubuntu Using Steganography"},"content":{"rendered":"<p>Steganography is the process of hiding confidential information inside another file. Its purpose is to hide the existence of confidential information in such a way that it does not look suspicious. Also, the person looking directly at the file may not be able to see the actual information. Combining Steganography with encryption adds additional layer of protection as it not only hides the presence of data but also makes it more secure.<\/p>\n<p>In this post, we will cover how to hide files inside images in Ubuntu using Steganography. We will be covering four different methods:<\/p>\n<ul>\n<li>Using the Steghide utility (Command Line)<\/li>\n<li>Using the Outguess utility (Command Line)<\/li>\n<li>Using the Cat utility (Command Line)<\/li>\n<li>Using the Stegosuite utility (GUI)<\/li>\n<\/ul>\n<p><strong>Note<\/strong>: We have explained the procedure on Ubuntu 20.04 LTS (also applies for Debian OS). You will require sudo privileges for installing the utilities on your system.<\/p>\n<h2>Using the Steghide Utility (Command Line)<\/h2>\n<p>Steghide is a command-line utility that allows you hide to files in an image or an audio file. It can hide data in JPEG, WAV, AU, and BMP formats.<\/p>\n<p>You can use the following command to install the Steghide utility:<\/p>\n<pre>$ sudo apt install steghide<\/pre>\n<h3><img loading=\"lazy\" decoding=\"async\" width=\"796\" height=\"408\" class=\"wp-image-4893\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-37.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-37.png 796w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-37-300x154.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-37-768x394.png 768w\" sizes=\"auto, (max-width: 796px) 100vw, 796px\" \/><\/h3>\n<p>Once Steghide is installed, you are ready to hide or embed your files inside an image. You will require the file that you want to hide and an image that you want to hide it in (also known as cover file).<\/p>\n<p>To hide a file inside an image file using Steghide, the syntax is as follows:<\/p>\n<pre>$ steghide embed -ef &lt;file-to-hide &gt; -cf &lt;image.jpg&gt;<\/pre>\n<p>Where <strong>-ef<\/strong> is used to specify the file <strong>&lt;file-to-hide &gt;<\/strong> that needs to embed and &#8211;<strong>cf<\/strong> is used to specify the cover file <strong>&lt;image.jpg&gt; <\/strong>that you want to hide it in.<\/p>\n<p>For instance, the below command will hide the <strong>testfile.txt<\/strong> in a <strong>flower.jpg<\/strong> image file.<\/p>\n<pre>$ steghide embed -ef testfile.txt -cf flower.jpg<\/pre>\n<p>It will ask you to type a passphrase and then confirm it. This password will be later used to extract the file embedded in the image. If you don\u2019t want to password-protect it, just hit <strong>Enter<\/strong> twice.<\/p>\n<p>Now that our file is hidden inside the image, we can remove the original file.<\/p>\n<pre>$ sudo rm testfile.txt<\/pre>\n<h3><img loading=\"lazy\" decoding=\"async\" width=\"666\" height=\"136\" class=\"wp-image-4894\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-38.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-38.png 666w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-38-300x61.png 300w\" sizes=\"auto, (max-width: 666px) 100vw, 666px\" \/><\/h3>\n<h2>Access the Hidden Files<\/h2>\n<p>To access the file hidden inside an image, you will need to extract it from the image. The syntax is as follows:<\/p>\n<pre>$ steghide extract -sf &lt;image&gt;<\/pre>\n<p>Where <strong>-sf<\/strong> is used to specify the image name which contains the embedded data.<\/p>\n<p>For instance, the below command will extract the original file embedded into the image <strong>flower.jpg<\/strong>.<\/p>\n<pre>$ steghide extract -sf flower.jpg<\/pre>\n<p>Provide the password for the file, after which the original file will be extracted.<\/p>\n<h3><img loading=\"lazy\" decoding=\"async\" width=\"666\" height=\"161\" class=\"wp-image-4895\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-39.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-39.png 666w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-39-300x73.png 300w\" sizes=\"auto, (max-width: 666px) 100vw, 666px\" \/><\/h3>\n<h2>Using the Outguess Utility (Command Line)<\/h2>\n<p>Outguess is another command-line utility that is used to embed the files inside an image. It lets you hide information in redundant bits of the cover medium. It can hide data in PPM, PNM, and JPEG files.<\/p>\n<p>You can use the following command to install the Steghide utility:<\/p>\n<pre>$ sudo apt install outguess<\/pre>\n<h3><img loading=\"lazy\" decoding=\"async\" width=\"798\" height=\"289\" class=\"wp-image-4896\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-40.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-40.png 798w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-40-300x109.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-40-768x278.png 768w\" sizes=\"auto, (max-width: 798px) 100vw, 798px\" \/><\/h3>\n<p>Once Outguess is installed, you are ready to hide or embed your files inside an image. You will require the file that you want to hide and an image that you want to hide it in (also known as a cover file).<\/p>\n<p>To hide a file inside an image file using Outguess, the syntax is as follows<\/p>\n<pre>$ outguess -k &lt;\u201cpassword\u201d&gt; -d &lt;file-to-hide&gt; &lt;image&gt; &lt;image-out&gt;<\/pre>\n<p>Where <strong>\u201cpassword\u201d<\/strong> is the password used to encrypt and hide the <strong>&lt;file-to-hide&gt;<\/strong> inside an <strong>&lt;image&gt;.<\/strong> The <strong>&lt;image-out&gt;<\/strong> is the resultant file containing the resultant image with the embedded data.<\/p>\n<p>For instance, the below command will embed the <strong>testfile.txt<\/strong> into <strong>flower.jpg<\/strong> with password <strong>abc123<\/strong> and store the results in <strong>flower-out.jpg<\/strong>.<\/p>\n<pre>$ outguess -k \u201cabc123\u201d -d testfile.txt flower.jpg flower-out.jpg<\/pre>\n<h3><img loading=\"lazy\" decoding=\"async\" width=\"810\" height=\"398\" class=\"wp-image-4897\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-41.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-41.png 810w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-41-300x147.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-41-768x377.png 768w\" sizes=\"auto, (max-width: 810px) 100vw, 810px\" \/><\/h3>\n<h3><img loading=\"lazy\" decoding=\"async\" width=\"736\" height=\"71\" class=\"wp-image-4898\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-42.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-42.png 736w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-42-300x29.png 300w\" sizes=\"auto, (max-width: 736px) 100vw, 736px\" \/><\/h3>\n<p>Now you can remove the original text file:<\/p>\n<pre>$ sudo rm testfile.txt<\/pre>\n<h2>Access the Hidden Files<\/h2>\n<p>To access the file hidden inside an image, you will need to extract it from the image. The syntax is as follows:<\/p>\n<pre>$ outguess -k \u201cpassword\u201d -r &lt;image-out&gt; &lt;filename&gt;<\/pre>\n<p>You can choose any name for the &lt;filename&gt;, not necessarily the original file name.<\/p>\n<p>For instance, the below command will extract the original file embedded into the image <strong>flower-out.jpg<\/strong>.<\/p>\n<pre>$ outguess -k \u201cabc123\u201d -r flower-out.jpg testfile.txt<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"697\" height=\"91\" class=\"wp-image-4899\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-43.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-43.png 697w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-43-300x39.png 300w\" sizes=\"auto, (max-width: 697px) 100vw, 697px\" \/><\/p>\n<h2>Using the Cat Command (Command Line)<\/h2>\n<p>You will be well aware of the Linux Cat command which has three major functions: create files, view contents of the file, and concatenate files. Using the Cat command concatenation function, we can achieve Steganography.<\/p>\n<p>For this method, you will require a zip file (containing the files that need to hide) and an image file (in which you want to hide the files). Follow the steps by step procedure to do so:<\/p>\n<p>1. Create a directory and add all the files you want to hide in an image. For instance, we want to hide a directory of files named <strong>myfiles<\/strong>, so we have created it using the following command:<\/p>\n<pre>$ sudo mkdir myfiles<\/pre>\n<p>Then in the newly created directory, copy the files you want to hide.<\/p>\n<p>2. Now, compress this directory using the below command:<\/p>\n<pre>$ sudo zip -r myfiles.zip myfiles<\/pre>\n<p>Where <strong>myfiles.zip<\/strong> is the compressed file name.<\/p>\n<h3><img loading=\"lazy\" decoding=\"async\" width=\"661\" height=\"156\" class=\"wp-image-4900\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/c-users-1-eb-desktop-screenshot-from-2021-03-01-0.png\" alt=\"C:\\Users\\1 EB\\Desktop\\Screenshot from 2021-03-01 00-29-25.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/c-users-1-eb-desktop-screenshot-from-2021-03-01-0.png 661w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/c-users-1-eb-desktop-screenshot-from-2021-03-01-0-300x71.png 300w\" sizes=\"auto, (max-width: 661px) 100vw, 661px\" \/><\/h3>\n<p>3. Now, place your image file in the same directory where the compressed file is placed which in our case is the Home directory. Then concatenate the compressed file and the image file and save that in a new image file as follows:<\/p>\n<pre>$ cat myfiles.zip image.jpg &gt; flower.jpg<\/pre>\n<p>Where <strong>myfiles.zip<\/strong> is the compressed file, <strong>image.jpg<\/strong> is the image file which we want to use as a cover file, and <strong>flower.jpg<\/strong> is the output file that will be actually hiding the files.<\/p>\n<h3><img loading=\"lazy\" decoding=\"async\" width=\"794\" height=\"328\" class=\"wp-image-4901\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/c-users-1-eb-desktop-aa-png.png\" alt=\"C:\\Users\\1 EB\\Desktop\\aa.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/c-users-1-eb-desktop-aa-png.png 794w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/c-users-1-eb-desktop-aa-png-300x124.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/c-users-1-eb-desktop-aa-png-768x317.png 768w\" sizes=\"auto, (max-width: 794px) 100vw, 794px\" \/><\/h3>\n<p>4. Now that you have hidden the files in an image, you are safe to remove the files directory and the compressed file. You can do so using the <strong>rm<\/strong> command as follows:<\/p>\n<pre>$ sudo rm -r myfiles<\/pre>\n<pre>$ sudo rm myfiles.zip<\/pre>\n<h2>Access the Hidden Files<\/h2>\n<p>To access the files hidden inside an image, you will need to <a href=\"https:\/\/linuxways.net\/de\/centos\/how-to-unzip-files-in-linux\/\">unzip<\/a> that image file. To do so, first ensure you are in the same directory which contains the output image file <strong>flower.jpg<\/strong> containing the hidden data. Then run the below command to unzip the hidden file:<\/p>\n<pre>$ unzip flower.jpg<\/pre>\n<h3><img loading=\"lazy\" decoding=\"async\" width=\"412\" height=\"184\" class=\"wp-image-4902\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/c-users-1-eb-desktop-screenshot-from-2021-03-01-0-1.png\" alt=\"C:\\Users\\1 EB\\Desktop\\Screenshot from 2021-03-01 00-51-00.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/c-users-1-eb-desktop-screenshot-from-2021-03-01-0-1.png 412w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/c-users-1-eb-desktop-screenshot-from-2021-03-01-0-1-300x134.png 300w\" sizes=\"auto, (max-width: 412px) 100vw, 412px\" \/><\/h3>\n<h2>Using the Stegosuite Utility (Graphical)<\/h2>\n<p>Stegosuite is another graphical Steganography utility that lets you embed a file inside an image. It uses AES for encrypting the embedded data. It can hide data in BMP, GIF, JPG, and PNG formats.<\/p>\n<p>You can use the following command to install the Stegosuite utility:<\/p>\n<pre>$ sudo apt install stegosuite<\/pre>\n<p>When prompts for confirmation, press <strong>y<\/strong>.<\/p>\n<h3><img loading=\"lazy\" decoding=\"async\" width=\"1069\" height=\"443\" class=\"wp-image-4903\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-44.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-44.png 1069w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-44-300x124.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-44-1024x424.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-44-768x318.png 768w\" sizes=\"auto, (max-width: 1069px) 100vw, 1069px\" \/><\/h3>\n<p>Once Stegosuite is installed, you are ready to hide or embed your files inside an image. You will require the file that you want to hide and an image that you want to hide it in (also known as a cover file).<\/p>\n<p>To launch the Stegosuite utility, hit the super key on your keyboard and type <em>stegosuite<\/em>. From the search results, click the Stegosuite icon to launch it.<\/p>\n<h3><img loading=\"lazy\" decoding=\"async\" width=\"423\" height=\"279\" class=\"wp-image-4904\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-45.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-45.png 423w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-45-300x198.png 300w\" sizes=\"auto, (max-width: 423px) 100vw, 423px\" \/><\/h3>\n<p>Now in order to hide your files inside an image, follow the below steps:<\/p>\n<p>1. In the Stegosuite utility, go to <strong>File &gt; Open <\/strong>from the top menu bar.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"532\" height=\"356\" class=\"wp-image-4905\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-46.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-46.png 532w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-46-300x201.png 300w\" sizes=\"auto, (max-width: 532px) 100vw, 532px\" \/><\/p>\n<p>2. A file browser will appear. Select the cover image you want to hide your file in and click <strong>Open. <\/strong>In our example, it is<strong> flower.jpg<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"373\" class=\"wp-image-4906\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-47.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-47.png 683w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-47-300x164.png 300w\" sizes=\"auto, (max-width: 683px) 100vw, 683px\" \/><\/p>\n<p>After doing so, you will see the image loaded on the right side of the Stegosuite window.<\/p>\n<p>3. Now, you will need to upload the file that you want to hide in an image. To do so, right-click the area under the<strong> embedded files<\/strong> section and select <strong>Add file<\/strong> option.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"643\" height=\"407\" class=\"wp-image-4907\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-48.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-48.png 643w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-48-300x190.png 300w\" sizes=\"auto, (max-width: 643px) 100vw, 643px\" \/><\/p>\n<p>Browse the desired file from the file browser and then click <strong>Open<\/strong>. In our example, it is <strong>testfile.txt.<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"684\" height=\"371\" class=\"wp-image-4908\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-49.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-49.png 684w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-49-300x163.png 300w\" sizes=\"auto, (max-width: 684px) 100vw, 684px\" \/><\/p>\n<p>4. Set a password for your file. It will be later used when you will have to extract the file from the image. Then click the<strong> Embed<\/strong> button to embed the file into the image.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"645\" height=\"411\" class=\"wp-image-4909\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-50.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-50.png 645w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-50-300x191.png 300w\" sizes=\"auto, (max-width: 645px) 100vw, 645px\" \/><\/p>\n<p>It will create a new file named in the format <strong>imagename_embed<\/strong>.<strong>extension<\/strong>. For instance, if your image name is <strong>flower.jpg<\/strong>, then the new output file will be created with the name <strong>flower_embed.jpg<\/strong>.<\/p>\n<p>Now our file has been embedded in the image, we can remove the original confidential file (<strong>testfile.txt<\/strong>). We only need to keep the output image file (<strong>flower_embed.jpg<\/strong>).<\/p>\n<h2>Access the Hidden Files<\/h2>\n<p>To access the file hidden inside an image, you will need to extract it from the embedded image. 1. Launch the Stegosuite utility and go to <strong>File &gt; Open<\/strong>.<\/p>\n<p>2. Then load the output image file which in our example was <strong>flower_embed.jpg<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"532\" height=\"356\" class=\"wp-image-4910\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-51.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-51.png 532w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-51-300x201.png 300w\" sizes=\"auto, (max-width: 532px) 100vw, 532px\" \/><\/p>\n<p>2. Enter the password for the file and click <strong>Extract<\/strong> to extract the original file hidden inside the image.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"641\" height=\"407\" class=\"wp-image-4911\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-52.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-52.png 641w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/03\/word-image-52-300x190.png 300w\" sizes=\"auto, (max-width: 641px) 100vw, 641px\" \/><\/p>\n<p>Now your original file will be extracted.<\/p>\n<h2>Remove\/Uninstall<\/h2>\n<p>In case, you want to <a href=\"https:\/\/linuxways.net\/de\/ubuntu\/how-to-uninstall-programs-from-ubuntu-20-04-lts\/\">remove<\/a> Steganography utilities from your system; you can easily do so by using <em>apt<\/em> <em>remove<\/em> command followed by the utility name. For example, to remove Steghide utility, the command would be:<\/p>\n<pre>$ sudo apt remove steghide<\/pre>\n<p>In this post, we have covered how to hide files inside images through four different methods including both the command line and the graphical methods. All the methods are easy to use and do not need any special expertise. For more help, visit the man pages for these utilities by typing <em>man<\/em> followed by the utility name.<\/p>","protected":false},"excerpt":{"rendered":"<p>Steganography is the process of hiding confidential information inside another file. Its purpose is to hide the existence of confidential information in such a way that it does&hellip;<\/p>","protected":false},"author":4,"featured_media":4912,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[213,214,212,100],"class_list":["post-4892","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ubuntu","tag-hide-files","tag-images","tag-steganography","tag-ubuntu-20-04"],"_links":{"self":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/4892","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/comments?post=4892"}],"version-history":[{"count":0,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/4892\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media\/4912"}],"wp:attachment":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media?parent=4892"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/categories?post=4892"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/tags?post=4892"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}