Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Security

Fuzzing'


Fuzzers can be used in different phases of the development process, but mainly they apply to:

  • Developers that can detect bugs and work to fix them as they code, for example to test the network interfaces and input processing algorithms
  • QA teams use fuzzers as automated tools for performing Security QA, as a part of their QA process
  • External software auditors, or security testers, use fuzzers to get a testing environment with which products can be audited to see how secure they are without needing access to sensitive information such as the source code

Fuzzing technology provides the necessary assurance that security vulnerabilities that would be found after a product release will be found while it is still in development. This is important both from the costs of potential technical support (to handle recall/patching) to the costs incurred by losing credibility with customers or from receiving a reputation for bad security practices.

Now that fuzzing has reached a stage of maturity and is being used as a reliable tool for organizations to fight against 0-day vulnerabilities (unpublished vulnerabilities used by hackers to attack while evading detection by signature-based defense tools), it is also likely that hackers will utilize this technology to attack products more than ever before. The difference is that now the tools that hackers use are available to developers to integrate into testing suites that are implemented by organizations and applied to their testing methodology.

Although fuzzers are exhaustive in their testing, and are likely to find many security vulnerabilities, they can only prove the existence of bugs -- not the absence. A fuzzer can not guarantee that every vulnerability was discovered and fixed.

In addition, fuzzers find bugs in programs with a certain likelihood of false positives. The fact that a certain request has triggered an internal program error, raised an exception, or caused the application to hang or crash, does not necessarily mean that the problem is a real security vulnerability. Test cases found by automated tools should be investigated by a developer that knows exactly how serious a threat it really is.

Despite those shortcomings, black box testing remains a popular testing mechanism and has demonstrated a successful record of finding security holes. In fact, this is the "secret sauce" used for many years by both hackers and security researchers to uncover many of the thousands of security vulnerabilities published in recent years.

On the practical side, while black box testing can stand on its own merits, it can also complement other testing techniques such as source code auditing of different forms. It is a good idea to develop a testing methodology that includes black box testing, in addition to the rest of your current QA testing process.


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.