I try to filter all XSS from this list, using lua-resty-waf, but see that some requests are not filtered, because they have capital letters in them. For example, this type of request won't be filtered:
Apologies for the delayed response. Since regular expressions can be defined with the (?i) modifier, it is up to the rule author to write rules with respect to case sensitivity. Thank you!
I try to filter all XSS from this list, using lua-resty-waf, but see that some requests are not filtered, because they have capital letters in them. For example, this type of request won't be filtered:
http://localhost/test/?a=<A HREF="http://1113982867/">XSS</A>
while this will be filtered
http://localhost/test/?a=<a href="http://1113982867/">XSS</A>