xref: /aosp_15_r20/external/cronet/net/data/fuzzer_dictionaries/net_cookies_fuzzer.dict (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1# Copyright 2021 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# Fuzzer dictionary for cookie lines fuzzers.
6
7# Primary delimiters:
8" "
9"\x09"
10"="
11";"
12
13# Keywords:
14"Expires"
15"Max-Age"
16"Domain"
17"Path"
18"Secure"
19"HttpOnly"
20"SameSite"
21"SameParty"
22"Strict"
23"Lax"
24"None"
25"Default"
26"__Secure-"
27"__Host-"
28"Priority"
29"Partitioned"
30
31# Truncating characters:
32"\x00"
33"\x0A"
34"\x0D"
35
36# Invalid characters (only a few):
37"\x01"
38"\x7F"
39
40# Characters with special significance to the Path attribute:
41"/"
42
43# Characters with special significance to the Domain attribute:
44"."
45# TLD and eTLD
46".com"
47".co.uk"
48
49# Characters with special significance to the Max-Age attribute:
50"-"
51