Annotation Interface DictionaryEntries
@Target({METHOD,ANNOTATION_TYPE})
@Retention(RUNTIME)
@Repeatable(DictionaryEntriesList.class)
public @interface DictionaryEntries
Adds the given strings to the fuzzer's dictionary. This is particularly useful for adding strings
that have special meaning in the context of your fuzz test, but are difficult for the fuzzer to
discover automatically.
Typical examples include valid credentials for mock accounts in a web application or a collection of valid HTML tags for an HTML parser.
-
Required Element Summary
-
Element Details
-
value
String[] valueIndividual strings to add to the fuzzer dictionary.
-