Pwning a Server using Markdown

Pwning a Server using Markdown

Escalating a bug in a vulnerable markdown parser to exploit LFI and get RCE

Background

Hashnode is a blogging platform for developers where you can host your blogs for free with your custom domains. This is packed with features and one such feature is the "Bulk Markdown Importer".

image.png

While I was working on migrating my blog from Jekyll to Hashnode, I was searching for an import feature. Fortunately, Hashnode has a markdown importer that allows importing markdown posts in bulk but that needs to be in a certain specific format. For some reason, I kept getting errors when importing my posts. I couldn't figure it out because there were no descriptive errors on the UI. Then I looked at the response in my Burp and that's when I noticed the error that led me to write this blog.

This was affected by a Local File Inclusion vulnerability (LFI) that allowed us to fetch internal files from the server. It was escalated to an RCE by finding the actual IP of the server behind Cloudflare by my mate Adhyayan.

Here's how we escalated a bug in the vulnerable markdown parser to get code execution on the server.


The Exploit

Finding the LFI

Markdown has its own quirks and features to allow referencing images in the files. To include an image in the blog post or any MD file, here's the common syntax:

![image.png](https://image.url/image_file.png)

The Bulk Importer at Hashnode accepts a ZIP file containing all the markdown posts to be published. Here's how their sample post format looks:

---
title: "Why I use Hashnode"
date: "2020-02-20T22:37:25.509Z"
slug: "why-i-use-hashnode"
image: "Insert Image URL Here"
---

Lorem ipsum dolor sit amet

This .md file needed to be zipped into an archive to be uploaded to the platform. Here's how the response looks inside Burp Suite.

image.png

Nothing interesting about it. It's just a normal markdown parsed post format. This made us wonder about the markdown feature that allows a user to insert images by specifying their paths:

![anotherimage.png](/images/blog.jpg)

When observed in the Burp Suite, surprisingly, Hashnode triggered an ENOENT error saying that it was not able to find the file as can be seen in the below screenshot.

image.png

From here, it was just a matter of connecting the dots to fetch the internal files from the server. Instead of a non-existent path, we decided to give the location of an actual file like the /etc/passwd hoping it would give us the file contents in the response.

Here's the markdown file we used as our final payload:

---
title: "Why I use Hashnode"
date: "2020-02-20T22:37:25.509Z"
slug: "why-i-use-hashnode"
image: "Insert Image URL Here"
---

![notimage.png](../../../../../etc/passwd)

This time, instead of directly using the image as shown in the markdown body, the application tried to fetch the image using the location specified in the path. The application traversed the directories and fetched the passwd file for us but instead of the contents being displayed in the response, it uploaded the file to Hashnode CDN. parrot.gif

image.png

The contentMarkdown parameter gave the CDN URL with the path on which the internal file was uploaded. We were able to directly download the file with the contents of the /etc/passwd. Neat.

Since we already had the name for the user and path of their home directory from the passwd file, we thought about escalating it a bit further trying for RCE.

When you create an SSH key, it gets stored in a default location at ~/.ssh/id_rsa for the private and ~/.ssh/id_rsa.pub for the public key. We modified our payload accordingly to fetch the private key from the server and got lucky. It was uploaded to the CDN as well.

![notimage.png](../../../../../home/username/.ssh/id_rsa)

Now, all we needed to get into the server was to find the IP address since it was hiding behind Cloudflare.


Server IP and SSH

We started looking for historical DNS records in order to find the IP Address but were unsuccessful. This is where Adhyayan came through and we looked into the file /proc/net/tcp. These /proc interfaces provide information about currently active TCP connections. Here's how it looks on my server:

image.png

The kernel.org documentation explains the table pretty well.

image.png

The column which we are interested in is the local address. These addresses are stored as hex values of the decimal notation of the reversed IP addresses. Here's a nifty one-liner I found on the internet to do all the work and return the IPs in a human-readable format.

grep -v "rem_address" /proc/net/tcp | awk  '{x=strtonum("0x"substr($2,index($2,":")-2,2)); for (i=5; i>0; i-=2) x = x"."strtonum("0x"substr($2,i,2))}{print x":"strtonum("0x"substr($2,index($2,":")+1,4))}'

This effectively gave us what we were looking for - the server's IP address along with port 22. Here's how it looked:

image.png

Conclusion

Who would have thought that Markdown parsers can lead to command executions on the server? Even the smallest of low severity issues can be escalated when chained with other vulnerabilities. Here, a simple information disclosure bug in the descriptive stack trace helped us figure out the behavior of the markdown parser which in turn allowed us to fetch internal files from the server.

It's always a good idea to implement proper error handling and input validation in your code and log the descriptive errors in the backend. Hashnode team fixed the vulnerability in the Markdown parser and rotated all their private keys to remediate the bug.

it's always a bad idea to trust your users' input!

Edit: According to Hashnode, the SSH was IP whitelisted and unauthorized access would not have been possible.

Links for reference

Adhyayan Panwar's Twitter: twitter.com/nullvoiddeath

Rants from the Void: rants.fromthevo.id/the-elusive-ssh-hunt-for..

Kernel.org Documentation: kernel.org/doc/Documentation/networking/pro..

One-liner for reading the /proc/net/tcp: gist.github.com/staaldraad/4c4c80800ce15b6b..