Cookie
- key: String, the key in cookie
- patterns: String, representing multiple patterns, format is as “pattern1|pattern2”
- case_insensitive: Bool, case insensitive
Condition Primitive About Cookie
-
- Judge if cookie key matches configured patterns
-
- Judge if value prefix of cookie key matches configured patterns
req_cookie_value_suffix_in(key, patterns, case_insensitive)
- Judge if value suffix of cookie key matches configured patterns
req_cookie_value_suffix_in("UID", "XXX", true)
- Judge if value suffix of cookie key matches configured patterns
-
- Judge if hash value of specified cookie matches configured patterns(value range: 0~9999)
req_cookie_value_contain(key, patterns, case_insensitive)
- Judge if value of cookie key contains configured patterns
req_cookie_value_contain("UID", "XXX", true)
- Judge if value of cookie key contains configured patterns