1# This is attempt at a fuzzer dictionary for PCRE2. 2 3"\\A" 4"\\b" 5"\\B" 6"\\d" 7"\\D" 8"\\h" 9"\\H" 10"\\n" 11"\\N" 12"\\s" 13"\\S" 14"\\w" 15"\\W" 16"\\z" 17"\\Z" 18 19"(?" 20"(?:" 21"(?>" 22"(?=" 23"(?!" 24"(?<=" 25"(?<!" 26"(?|" 27 28"[:alnum:]" 29"[:alpha:]" 30"[:ascii:]" 31"[:blank:]" 32"[:cntrl:]" 33"[:digit:]" 34"[:graph:]" 35"[:lower:]" 36"[:print:]" 37"[:punct:]" 38"[:space:]" 39"[:upper:]" 40"[:word:]" 41"[:xdigit:]" 42 43"(*ACCEPT)" 44"(*FAIL)" 45"(*COMMIT)" 46"(*PRUNE)" 47"(*SKIP)" 48"(*THEN)" 49 50# End 51