Strategies

Where Do Vulnerabilities Come From?

Vulnerabilities are an emergent property of modern software’s complexity, requested features, and the way data inputs are handled.
August 15, 2017
4 min. read

It seems earthshaking vulnerabilities are released weekly that leave vendors and system administrators scrambling to remediate. So, where are all these vulnerabilities coming from? A simple search on the National Vulnerability Database shows over 3,300 new vulnerabilities released in just the past 3 months.1 Granted that many of these vulnerabilities are esoteric and limited to specific niche applications. However, nearly every other month we see a release with a large-scale hole that affects millions. The most egregious example was Heartbleed,2 which affected nearly half of all Internet web servers.

But, why so many and so often? The simple reason is that vulnerabilities are an emergent property of software, and there are three major causes: code quality, complexity, and trusted data inputs.

Code Quality 

This is where everyone points their finger first. Sure, but why? Sloppy programming? Not necessarily. More often than not, it’s a conscious choice. In most development teams, highest priority is given to the features that customers will pay for. And outside of the security group, most people do not want to pay for security. I say most because there are those who will pay for it, but often it’s for applications and systems that are not as useful or flexible as the mainstream, less secure products where they should be paying for security.

Another driving force working against code quality is the concept of minimum viable product,3 which means it has just enough features and value to gain traction with customers. Any other features are secondary and can be added later. The mantra is: never build a mansion when a tent will do. The problem is that we find ourselves living in a tent for years on end. We also know that fixing security programs down the road is more expensive, which also delays the addition of security features in the face of new customer (and market) demands. Often, it isn’t until after a series of security calamities occur that security is raised in priority.4

Complexity

Most modern applications are so complex that they are beyond the understanding of a single person. To the average user, all this complexity is hidden by the user interface and underlying infrastructure, but IT professionals know better. Consider the current version of the Firefox browser, which contains 16 million lines of code written by 5,094 developers over ten years.5

If you consider all these moving parts, inter-dependencies, layers, libraries, interface modes, and backward compatibility built into these applications, it’s no wonder that there are serious gaps in security coverage.

It is widely known that dynamic and complex systems are hard to predict and can lead to unexpected outcomes.6 One thing is certain, though: large, complex software applications will contain bugs, and some of those bugs will be security vulnerabilities.

Overly Trusting Data Inputs

If you examine most security vulnerabilities, you will see they occur where the program is accepting data input. Therefore, every data input into a system is an attack surface. These vulnerabilities exploit weak boundaries where input systems expect data but instead are breached to insert new commands. Look at where attacks such as buffer overflows, SQL injection, or cross-site scripting occur: data input channels that are subverted. This is not a new problem. Decades ago, programmers were taught to expect non-conformant input and filter accordingly.7

Given the complexity of software and speed at which it is developed, it is not surprising that programmers do not have the resources or time to ensure robust filtering of every possible input stream.

Pulling This All Together

In “How Complex Systems Fail,” author Richard I. Cook notes that catastrophic failure occurs when small, innocuous failures join to create a systemic problem.8 These problems combine to create our chronic disease of security vulnerabilities pervading the entire software industry.

What do you do with this? For one, you can use these principles to roughly estimate the magnitude and frequency of potential vulnerabilities in a system, which can assist in risk assessments. Since every input is a possible attack path, you can work to reduce exposure of anything you don’t need to expose. If you do expose an input path, filter it and monitor it. Also, remember that security tools are software, so build for defense in depth and test often.

Join the Discussion
Authors & Contributors
Raymond Pompon (Author)
Footnotes

1 https://nvd.nist.gov/vuln/search/results?adv_search=false&form_type=basic&results_type=overview&search_type=last3months

https://en.wikipedia.org/wiki/Heartbleed

3 https://en.wikipedia.org/wiki/Minimum_viable_product

4 https://news.microsoft.com/2012/01/11/memo-from-bill-gates/

5 https://www.openhub.net/p/firefox

6 https://en.wikipedia.org/wiki/Chaos_theory

7 https://en.wikipedia.org/wiki/Robustness_principle

http://web.mit.edu/2.75/resources/random/How%20Complex%20Systems%20Fail.pd

What's trending?

Forward and Reverse Shells
Forward and Reverse Shells
09/15/2023 article 5 min. read
Web Shells: Understanding Attackers’ Tools and Techniques
Web Shells: Understanding Attackers’ Tools and Techniques
07/06/2023 article 6 min. read
What Is Zero Trust Architecture (ZTA)?
What Is Zero Trust Architecture (ZTA)?
07/05/2022 article 13 min. read