123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- resource "aws_wafregional_sql_injection_match_set" "sql_injection_match_set" {
- name = "${var.waf_prefix}-generic-detect-sqli"
- sql_injection_match_tuple {
- text_transformation = "HTML_ENTITY_DECODE"
- field_to_match {
- type = "BODY"
- }
- }
- sql_injection_match_tuple {
- text_transformation = "URL_DECODE"
- field_to_match {
- type = "BODY"
- }
- }
- sql_injection_match_tuple {
- text_transformation = "HTML_ENTITY_DECODE"
- field_to_match {
- type = "URI"
- }
- }
- sql_injection_match_tuple {
- text_transformation = "URL_DECODE"
- field_to_match {
- type = "URI"
- }
- }
- sql_injection_match_tuple {
- text_transformation = "HTML_ENTITY_DECODE"
- field_to_match {
- type = "QUERY_STRING"
- }
- }
- sql_injection_match_tuple {
- text_transformation = "URL_DECODE"
- field_to_match {
- type = "QUERY_STRING"
- }
- }
- sql_injection_match_tuple {
- text_transformation = "HTML_ENTITY_DECODE"
- field_to_match {
- type = "HEADER"
- data = "cookie"
- }
- }
- sql_injection_match_tuple {
- text_transformation = "URL_DECODE"
- field_to_match {
- type = "HEADER"
- data = "cookie"
- }
- }
- }
|