Skip to main content

How to Discuss and Fix Vulnerabilities in Your Open Source Library

· 9 min read
Forrest Allison
Free Wortley

The worldwide scramble to fix the Log4Shell vulnerability has resulted in a number of paths to resolution without a single trusted, clear, and concise recommendation. Ever since our initial report on the Log4Shell vulnerability, we have made countless updates to our posts over the past week as more information has been uncovered and new vulnerabilities are found. Ideally, the narrative would be much clearer for a library which is so widely used.

We feel that the chaos which has followed the initial report of the Log4Shell vulnerability started with how the public patching of Log4j was handled on GitHub. This is a step-by-step guide for Open Source maintainers on how to handle the security patching process properly, using the Log4Shell incident as a retrospective.

While some developers are more careful than others, something like Log4Shell could happen to many of us who work in the Open Source world. Putting aside vulnerability prevention for a moment, let's talk about what to do when you find out that you released something insecure. Staying calm and knowing what to do when the time comes could prevent a lot of damage down the road.

Things they don't teach you in school

As a "normal" developer who works alongside security engineers, I hear them mention all kinds of best practices that I've never heard of. It turns out that how to properly deal with vulnerabilities in a project you use or contribute to, right down to what you say on GitHub, can be just as important as the patch itself.

Log4j is a great case study because even though people had the best intentions, things went catastrophically wrong. At the center of the story we have a couple of developers donating their spare time, and doing their best. This is absolutely not meant to be a hit piece against them or Open Source software, but instead a guide to help the next person handle things the right way. Together, let's learn how to do this properly.

Hackers are crawling GitHub looking for security patches

Finding a vulnerability in a project and contributing a fix can be pretty exciting. Unfortunately, the fact that something is being patched can reveal to outsiders that a vulnerability must have existed in the first place. It's trivially easy to write a webcrawler that looks through GitHub for the words "vulnerability", "security", "injection", "exploit", etc, and find a package where the last version, if not the current one, has a vulnerability ready to be turned into an exploit. Those crawlers are up and running right now, reading your comments and looking for the next 0-day.

It's about being discreet

Reporting the vulnerability

How the vulnerability first gets reported is critical. In the case of Log4j, contrary to what you might think, it looks like everything went right. According to the Log4Shell Wikipedia page, the vulnerability was reported privately to the Apache team way back on November 24th by Chen Zhaojun of Alibaba Cloud Security Team.

If you are someone spotting a vulnerability for the first time, this is exactly what you should do. We can also see that the Mitre site created the CVE, in private, two days later, on November 26th.

Picture of CVE date

Up until this point, it was security professionals following a well documented practice called Responsible Disclosure. Let's move on to what happened next.

Patching the vulnerability

Often just the nature of the patch can alert those who know what to look for, even without anyone spelling out that it's for a vulnerability.

Let's look at the first Log4j PR.

PR header

At first glance it doesn't look too bad, at least to an average dev. Unfortunately, bad actors probably noticed this PR almost right away. Let's look at the files committed:

exploit patch file name

In the PR, there is literally a file named JndiExploit.java. Even without using the word exploit, the word JNDI could have been enough to attract bad actors.

person on github asking publicly if its a vuln

The cat's out of the bag. It's almost certain this PR, made with the best intentions, made things far worse.

In the end, the vulnerability went public before Log4j was ready to ship a fix, and they were left scrambling. Their first release of version 2.15.0, which much of the community installed, proved to still have issues. They had to release a second patch in 2.16.0, which we seriously hope is seeing widespread adoption.

How to do it right

Step 1: Mitigate in private

Open source software is public, which means eventually the patch will need to be public. We want that to happen when we are as ready for it as possible, not before, so:

Use GitHub's Security Advisories and Temporary Private Forks

Developers will need a private space to work on a patch and get ready before its release. This will give them space to make the change, discuss it, prepare a release, and get documentation ready.

GitHub actually has a new built-in feature for this scenario, called a Github Security Advisory. This tooling walks you through the process of creating a private space to talk about the issue. It can link to or create a CVE, notify your users when the time comes, and even help you create a linked Temporary Private Fork in which to work. You should absolutely use this feature and make a private fork. CI won't run in this fork which means you will need to be careful and test locally, but this is worth the trade-off for privacy.

github security advisory creation

As the maintainer, it's also your responsibility to request a CVE. GitHub is a CVE Numbering Authority, meaning you can create a CVE through them. Request a CVE from the Security Advisory you created above. Being a part of the process helps make sure the CVE is accurate and not confusing or miscategorized like some log4j CVEs were.

Ideally, a security person will be brought into this private process to audit the change- if you can get one. Side note: We are considering founding a non-profit to give projects this help, and if that's something you'd like to see please let us know.

Once a release has been drafted, this is an excellent time to bring in some of your biggest users to try it out. This has the benefit of testing your patch, getting more eyes on the problem, and making sure these consumers have their own patched releases ready to go. Let them know they should do this work in private.

In the case of Apache, it would have been better if the biggest users of log4j (like Apache Struts), were alerted privately. They could have had their own privately prepared releases ready to go public when log4shell did.

In summary, doing it in private gives space and time to go through and fix things properly. Use GitHub's built-in tool to help you manage the process.

Step 2: Release Simultaneously

Now it's time to rip the band-aid off. Merge all changes, releases, and documentation at the same time. Publish the GitHub Security Advisory you created above. Coordinate with any consumers that received your change early. This process is called coordinated disclosure.

Hopefully the documentation and Security Advisory contain all the information needed by users to patch the change, right away. Generally, these just explain the vulnerability and point to the new release.

Making noise and getting the word out about the vulnerability is going to result in more people updating. In the case of larger projects and more serious vulnerabilities, it might be a good idea to contact the press directly. This can help you keep a handle on the reporting, and let you control the narrative around how to fix the vulnerability.

Educate your contributors

The above process is something that your contributors need to know about ahead of time. Personally, I would recommend a short warning about the proper way to patch security problems in your Issue and Pull Request templates.

Ours looks like:

STOP: Is this a security vulnerability? If so, follow Responsible Disclosure and email us at email@email.com instead of opening an issue.

It's a good idea to say something similar in your README and to create a SECURITY.md file in the root of your project with disclosure instructions. Here is React's SECURITY.md, for example.

If you want to customize the process further, here are some useful templates for opening security policies and reporting vulnerabilities.

It might not be a bad idea to link to this blog post or the resources below if you are a security researcher reporting a vulnerability to a project. Maybe if that had happened with log4j, it would have been handled differently.

Other resources

That's it

These steps aren't that hard to follow, but they're different from the normal development flow of Open Source software. Coordinated disclosure is common knowledge in security communities, but now we can say for sure that not every Open Source developer knows how to do it. Not everyone has a background in security, and that's okay. It's our goal to make security as easy and accessible as possible for everyday developers.

Stay in the loop