VOOZH about

URL: https://thenewstack.io/vulnerability-management-best-practices-for-patching-cves/

⇱ Vulnerability Management: Best Practices for Patching CVEs - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2023-08-02 09:43:09
Vulnerability Management: Best Practices for Patching CVEs
sponsor-tigera,sponsored-post-contributed,
Security / Software Development

Vulnerability Management: Best Practices for Patching CVEs

Some best practices and recommendations for patching CVEs as well as setting your teams up for success throughout the vulnerability management process.
Aug 2nd, 2023 9:43am by Anthony Tam and Behnam Shobiri
👁 Featued image for: Vulnerability Management: Best Practices for Patching CVEs
Image from Alexander Limbach on Shutterstock
Tigera sponsored this post. Insight Partners is an investor in Tigera and TNS.

You’ve done your due diligence and followed best practices for scanning your environment to identify common vulnerabilities and exposures (CVEs). Now you’re staring at a long list of things to fix, with limited time and resources to boot. What next?

Once you’ve identified CVEs in your environment, it’s important to deploy patches as quickly as possible to mitigate risk and improve your security posture. In this article, we will offer some best practices and recommendations for patching CVEs as well as setting your teams up for success throughout the entire vulnerability management process.

Prioritize by Relevance and Severity

Software composition analysis and vulnerability scanners drown engineering teams in lots of detected vulnerabilities as each dependency of software libraries is scanned. To manage this, it is important to consider both the relevance and severity of the identified CVEs.

Relevance refers to how applicable a vulnerability is to the system or software package. A vulnerability that directly affects critical components or commonly used features should be given higher priority over less relevant vulnerabilities. For example, if a vulnerability in an SSL library is discovered in a software component that uses TLS/SSL to secure communications with other applications, the relevance of this vulnerability would be considered high.

Severity, on the other hand, pertains to the potential impact of a vulnerability if exploited, commonly known as the Common Vulnerability Scoring System (CVSS) score. Vulnerabilities with higher severity ratings, such as those that allow remote code execution or provide unauthorized access to sensitive data, should be addressed with greater urgency.

We recommend addressing critical and high severities first before moving to mediums and lows. Oftentimes, medium and low vulnerabilities are patched “in passing” as a result of addressing higher severity CVEs. Low and medium CVEs also have a higher chance of being disputed, reducing the criticality of the CVE.

Tigera provides Calico, a unified network security and observability platform to prevent, detect and mitigate security breaches in Kubernetes clusters. Tigera’s open-source offering, Calico Open Source, is the most widely adopted container networking and security solution.
Learn More
The latest from Tigera

Patch First, Analyze Later

Every CVE is unique in detail, attack vector, severity and impact/relevance to an application. Ideally, security analysts would analyze CVE details to determine whether identified CVEs are applicable to their software. For example, a CVE might only affect a function in a software dependency that is not being called or used, which would reduce the significance of the CVE to the application.

Vulnerability analysis is an important first step to determine the criticality of patching the vulnerability. Lower-priority patches still need to be addressed, but there might be higher-priority ones that need to be completed first.

In a perfect world, you would analyze all CVEs first to determine the priority order for patching. But this just isn’t scalable due to the sheer number of vulnerabilities and how frequently CVEs are discovered.

In reality, only a handful of CVEs actually affect your software. Of course, there’s no way to know for certain how a CVE affects your application until it has been analyzed, but because there are so many, including those from transitive dependencies, it is nearly impossible to analyze them all before new CVEs are discovered or in the time between a tight release schedule. Instead, we recommend you start by patching all critical and high-severity CVEs without analysis.

Shift Left

Preventing, detecting and patching CVEs needs to be a shared responsibility between developers and security teams. It is not sustainable for security teams to bear the responsibility of managing and patching CVEs alone. Development teams can often be hesitant to push frequent updates for fear that updates to software libraries will create bugs in their software.

It is important to be in agreement with development teams to have a testing program in place to ensure software quality is not affected by frequent updates and that frequent updates can be tested with ease.

To avoid a lengthy resolution process when it comes to patching CVEs, it is key to shift visibility and push vulnerability scanning closer to developers. This will ensure that processes are already in place to empower developers to proactively address CVEs and help monitor for secure code from the beginning of the development lifecycle.

For more on shifting left, read this free guide

Implement a Defense-in-Depth Approach

To implement an approach to reduce the risks of vulnerabilities in your software:

  • Regularly scan your code libraries and base image at least once a week — ideally using more than one vulnerability scanner — to ensure libraries are not outdated. Note: It can take time after a CVE is discovered until it is added to the NVD database. In order to compensate for time delays/gaps between CVE discovery and publication, you should scan your code as often as possible, review potential vulnerabilities, and continuously update your software.
  • Reduce your attack surface by trimming your base image of unnecessary or unused libraries to significantly reduce the number of vulnerabilities that would be detected in your application.
  • Implement security policies and access controls to restrict access to reduce the risk of CVEs in your software by minimizing attack vectors in the application.
  • Ensure proper authentication mechanisms are used between software components to reduce the impact of CVEs where authentication is required to exploit a vulnerability in the application.

What If There’s No Patch Available?

If there’s no patch available, you’ll need to carefully analyze the vulnerability and determine whether your software is affected by it. If it is, you’ll need to determine the extent of the risk (severity level), and then decide whether to remove or add mitigations to the affected components or wait for a patch to be released.

There are many factors that would determine your next steps, including how your software is consumed and whether the vulnerability affects your end users or customers. A software security company would likely be more conservative in its approach due to the risk of having an unresolved CVE in its software or application components that would affect customer systems. It is important to ensure that a vulnerability management playbook is in place to handle these situations that affect internal or external users, to give assurance and actionable steps to resolve these scenarios.

Read our guide to learn more about container vulnerability scanning.

Tigera provides Calico, a unified network security and observability platform to prevent, detect and mitigate security breaches in Kubernetes clusters. Tigera’s open-source offering, Calico Open Source, is the most widely adopted container networking and security solution.
Learn More
The latest from Tigera
TRENDING STORIES
Anthony Tam is manager of security engineering at Tigera, where he specializes in product and application security as well as driving the research and development of Tigera's container security solutions. Anthony previously led threat detection and model development at Darktrace,...
Read more from Anthony Tam
Behnam Shobiri is a security researcher at Tigera and has over five years of expertise in the field of security. His primary focus lies in cryptography, Transport Layer Security (TLS), network security, and trusted execution environments (TEEs) like SGX. At...
Read more from Behnam Shobiri
Tigera sponsored this post. Insight Partners is an investor in Tigera and TNS.
SHARE THIS STORY
TRENDING STORIES
TNS owner Insight Partners is an investor in: Tigera, Pragma.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.