Random Testing Flashcards

1
Q

MUTATE stage

A

mutate the minimized input using a
variety of traditional heuristic-based fuzzing strategies

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

feedback to AUGMENT

A

the set of seeds if any of the generated
mutations resulted in a new state transition, and continue the process.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A mutation strategy

A

makes very small conservative changes will suffer from poor
code coverage while an aggressive mutation strategy will make too many changes to
the input seed such that it no longer conforms to the input specifications of the target
program and will be discarded during input sanitization. Mutation strategies must be
carefully engineered to exist in a sweet spot between changes that are too small and
changes that are too large.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Cuzz

A

The idea behind Cuzz is to automate the approach of introducing calls to Sleep() in
order to find concurrency bugs more effectively.
In a realistic program, there is a large number of possible places at which to introduce
Sleep() calls.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The depth of a concurrency bug

A

The depth of a concurrency bug is the number of ordering constraints that a thread
schedule has to satisfy in order for the bug to be triggered.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly