____________________, also known as "fuzzing," is a straight-forward technique that looks for vulnerabilities in a program or protocol by feeding random input into the program or the network running the protocol.

Fill in the blank(s) with the appropriate word(s).


Fuzz testing

Computer Science & Information Technology

You might also like to view...

What is the value of Int(8.9)?

A. 8 B. 8.9 C. 9 D. 1

Computer Science & Information Technology

A section break is displayed as a _____ line in Draft view.

A. dotted B. double-dashed C. double dotted D. dashed

Computer Science & Information Technology

Information describing information is called

a. special information b. metadata c. special-data d. formatting

Computer Science & Information Technology

This code should iterate through an array of Parcels in ArrayList valueArrayList and print each Parcel’s number in displayJTextArea. Find the error(s) in the following code.

``` 1 Iterator valueIterator = valueArrayList.iterator(); 2 3 while ( valueIterator.hasNext() ) 4 { 5 displayJTextArea.setText( String.valueOf( 6 valueIterator.getParcelID() ) ); 7 8 } // end while loop ```

Computer Science & Information Technology