diff options
author | van Hauser <vh@thc.org> | 2020-03-30 11:33:42 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-30 11:33:42 +0200 |
commit | 1279c935e27a6cc90d12111d4220e04f317e3916 (patch) | |
tree | 94be132936961112493b075f44a208677309fe80 | |
parent | 28e5a8031ce84bfe4baab9504c141bc79f470031 (diff) | |
download | afl++-1279c935e27a6cc90d12111d4220e04f317e3916.tar.gz |
regec dict additions
-rw-r--r-- | dictionaries/regexp.dict | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dictionaries/regexp.dict b/dictionaries/regexp.dict index 2f29357e..0ca0a720 100644 --- a/dictionaries/regexp.dict +++ b/dictionaries/regexp.dict @@ -601,3 +601,12 @@ "[\x8f]" "[\xf0\x9f\x92\xa9-\xf4\x8f\xbf\x92\xa9-\xf4\x8f\xbf\xbf]" "[\x92\xa9-\xf4\x8f\xbf\xbf]" +"\\1\\2(b\\1\\2))\\2)\\1" +"\\1\\2(a(?:\\1\\2))\\2)\\1" +"?:\\1" +"\\1(b\\1\\2))\\2)\\1" +"\\1\\2(a(?:\\1(b\\1\\2))\\2)\\1" +"foo(?=bar)bar)baz" +"fo(?o(?o(?o(?=bar)baz" +"foo(?=bar)baz" +"foo(?=bar)bar)az" |