The fundamentals
A WAF rule is structured into four main sections, each playing a vital role in the request evaluation process:- Variable: This section specifies the parts of the HTTP request that the Rule Engine should examine. By defining a Variable, you instruct the WAF on where to look within the request, such as headers, URIs, or parameters.
- Operator: Operator defines the condition or logic that triggers a match against the specified Variable (and Variable Value). It determines how the extracted data is compared to a given value, using operations like equality, pattern matching, or range checking.
- Transformations: Before evaluation, the extracted data can be normalized or transformed to ensure consistent and accurate matching. Transformations dictate how the data should be processed, such as converting it to lowercase or removing whitespace.
- Response Action: Upon a successful match, Response Action specifies what the WAF should do with the request. Actions can include blocking the request, logging it for analysis, or issuing a challenge to the client.

Variables
Variable define where in the HTTP request the WAF should extract data for evaluation. Each Variable corresponds to a specific element of the request.REQUEST_URIThe full URI of the incoming request (e.g., /path/to/resource?query=123).REQUEST_URI_RAWThe raw, unprocessed URI, possibly including encoded values (e.g., %2F instead of /).ARGS(Optional Variable Value) All request parameters (both GET and POST).ARGS_COMBINED_SIZEThe combined size (in bytes) of all request arguments.ARGS_GET(Optional Variable Value) All query parameters passed via the GET method.ARGS_GET_NAMES(Optional Variable Value) The names (keys) of query parameters in the GET method.ARGS_POST(Optional Variable Value) All request parameters passed via the POST method.ARGS_POST_NAMES(Optional Variable Value) The names (keys) of parameters in the POST method.FILES_NAMESThe names of uploaded files in the request.GEO(Optional Variable Value - COUNTRY_CODE, LATITUDE, LONGITUDE, ASN, CITY, CONTINENT) (Advanced) The geo location information of the client making the request.REMOTE_ADDRThe IP address of the client making the request.QUERY_STRINGThe raw query string of the request (e.g., ?key=value&name=example).REQUEST_BASENAMEThe base name of the requested file (e.g., index.html).REQUEST_FILENAMEThe full path of the requested file (e.g., /var/www/index.html).REQUEST_LINEThe complete HTTP request line (e.g., GET /index.html HTTP/1.1).REQUEST_METHODThe HTTP method used in the request (e.g., GET, POST, PUT).REQUEST_PROTOCOLThe HTTP protocol version (e.g., HTTP/1.1, HTTP/2).REQUEST_COOKIES_NAMES(Optional Variable Value) The names of cookies sent in the request.REQUEST_COOKIES(Optional Variable Value) All cookie key-value pairs sent with the request.REQUEST_HEADERS_NAMES(Optional Variable Value) The names of headers included in the request.REQUEST_HEADERS(Optional Variable Value) All request headers in a key-value pair format.RESPONSE_HEADERS(Optional Variable Value) All response headers sent back to the client.RESPONSE_STATUSThe HTTP status code returned in the response (e.g., 200 OK, 404 Not Found).
Operator
Operator determines the condition under which a match is triggered. It defines how the WAF compares the extracted and transformed data against the specified value.BEGINSWITHCheck if a string starts with a specified substring.ENDSWITHCheck if a string ends with a specified substring.CONTAINSCheck if a string contains a specified substring.CONTAINSWORDCheck if a string contains a specific word.WITHINCheck if a string is within a specified substring.STRMATCHCheck if a string has exact match.STREQCheck if a string has exact match, case insensitive.EQEquality check: whether two integers are exactly equal.GECheck if an integer/double is Greater than or equal to.GTCheck if an integer/double is Greater than.LECheck if an integer/double is Less than or equal to.LTCheck if an integer/double is Less than.RXRegular expression match.DETECTSQLI(Advanced) Detect SQL injection attempts in input.DETECTXSS(Advanced) Detect cross-site scripting (XSS) attempts in input.
Transformations
Transformations are applied to the extracted data before evaluation to normalize or modify it, ensuring consistent comparisons.CMDLINEPreprocess input as if it were a command-line string (e.g., handling escape sequences or arguments).COMPRESSWHITESPACEReplace multiple whitespace characters (spaces, tabs, newlines) with a single space.CSSDECODEDecode CSS-encoded input (e.g.,%2Fin CSS or\00002Fencoding).HEXENCODEEncode the input as hexadecimal (e.g.,abc→616263).HTMLENTITYDECODEDecode HTML entities (e.g.,<→<,A→A).JSDECODEDecode JavaScript-encoded strings, such as escape sequences in JS (e.g.,\x41→A).LENGTHReturn the length of the input string.LOWERCASEConvert input to lowercase (e.g.,Hello→hello).MD5Hash the input using the MD5 hashing algorithm.NORMALIZEPATH/NORMALISEPATHNormalize file paths by removing redundant parts (e.g.,/a/../b→/b).NORMALIZEPATHWIN/NORMALISEPATHWINNormalize file paths specific to Windows-style paths (e.g.,C:\\folder\\..\\file→C:\file).REMOVECOMMENTSRemove comments from input, such as<!-- -->in HTML or/* */in CSS/JS.REMOVENULLSRemove null bytes (\x00) from the input.REMOVEWHITESPACERemove all whitespace from the input (e.g.,a b c→abc).REPLACECOMMENTSReplace comments in the input with a placeholder or empty string.SHA1Hash the input using the SHA-1 hashing algorithm.URLDECODEDecode standard URL-encoded input (e.g.,%2F→/).URLDECODEUNIDecode URL-encoded input with Unicode normalization (handles double-encoded payloads).UTF8TOUNICODEConvert UTF-8 encoded input to Unicode.
Response Actions
Response Actions specifies the action the WAF takes when a rule condition is met.BlockBlock the request.LogLog the request.Challenge(Advanced) Challenge the request with JS PoW.