AWS WAF Bypass: invalid JSON object and unicode escape sequences

In recent times, the security community has been witnessing an increasing number of reports from researchers highlighting various bypass techniques targeting AWS Web Application Firewall. These bypasses have brought to light not only the absence of certain critical features but also the reliance on default configurations commonly used with both custom and managed rules.

While AWS WAF provides robust protection against a wide range of web application threats, it is essential for organizations to be aware of potential “rule bypasses” that can arise from missing features and default configurations.

In this blog post, we will explore some of these bypass techniques, shedding light on the underlying causes and offering insights into best practices for securing your applications.

TL;DR

  1. AWS WAF lacks inspection capabilities for form-urlencoded or XML content type bodies, only supporting plain text and JSON.

  2. When a JSON body contains duplicate keys, AWS WAF considers it invalid and, by default, continues processing without blocking the request.

  3. Virtual patching for a specific parameter in JSON body can be bypassed using unicode escape sequences.

AWS WAF & ACLs

The AWS WAF service is designed to protect web applications by filtering and monitoring HTTP requests and responses. It acts as a “first line of defense”, effectively blocking common web exploits, such as SQL injection, cross-site scripting (XSS) attacks, and distributed denial-of-service (DDoS) attacks. By integrating seamlessly with other AWS services, WAF allows customers to fortify their applications against known vulnerabilities and emerging threats.

One common use case for the AWS WAF service is in conjunction with a load balancer (ELB) or with Amazon CloudFront, a Content Delivery Network offered by AWS. By integrating AWS WAF with ELB or CloudFront, customers can enforce security policies and prevent malicious requests from reaching their application instances. This setup ensures that potentially harmful traffic is intercepted and neutralized before it reaches the backend servers.

AWS WAF provides a set of pre-configured, managed rules that are designed to protect against common web application threats and vulnerabilities. These managed rules are created and maintained by AWS security experts, who continuously update them to address emerging threats. Users can select and enable these managed rules to add an additional layer of protection to their web applications without the need for manual rule creation.

In addition to managed rules, AWS WAF allows users to create their own custom rules tailored to their specific application requirements.Users can define their own rule conditions, such as matching specific patterns in the HTTP request or response, and set corresponding actions to be taken when a rule is triggered.

Missing functionalities

AWS WAF makes you able to inspect a HTTP request body in two different ways: plain text or JSON. As you can imagine, this means that you have to inspect www-form-urlencoded request body as a plain text and not a parsed version of the key=value sequence like on other WAFs (like ModSecurity, for example).

These limitations can make it challenging to create precise rules that accurately identify malicious patterns or behaviors within request bodies. It’s crucial to carefully design and fine-tune rules to strike a balance between security and minimizing false positives. Regular monitoring, analysis of logs, and iterative refinement of rules are essential to optimize the effectiveness of AWS WAF and reduce the risk of false positives.

JSON duplicate keys

In the realm of JSON, the treatment of duplicate keys has been a topic of discussion and varying interpretations. The official standards, such as ECMA-404 “The JSON Data Interchange Syntax” remain silent on the matter, leaving room for ambiguity. However, RFC 8259 “The JavaScript Object Notation (JSON) Data Interchange Format” sheds some light on the recommended behavior.

According to RFC 8259, the names (keys) within a JSON object should ideally be unique. The usage of “SHOULD” in the specification implies that while there might be valid reasons to deviate from this recommendation, careful consideration must be given to the implications before choosing an alternative approach.

The primary rationale behind insisting on unique names in JSON objects lies in achieving interoperability. With unique names, different software implementations will agree on the name-value mappings within an object. However, when duplicate names are present, the behavior of software receiving such an object becomes unpredictable.

Various implementations handle duplicates differently. Some implementations only report the last name-value pair encountered, while others may report an error or fail to parse the object entirely. On the other hand, some implementations may report all the name-value pairs, including duplicates.

To add to the mix, the ECMA-262 “ECMAScript® Language Specification” specifies that lexically preceding values for the same key within an object should be overwritten, implying a “last-value-wins” approach.

As a practical example, attempting to parse a JSON string with duplicated names using the Java implementation by Douglas Crockford (the creator of JSON) would result in an exception being thrown due to the violation of the uniqueness requirement.

How AWS WAF handle this?

The default behavior of AWS WAF when encountering an invalid JSON in the request body can be exploited to bypass its protection. When AWS WAF detects an invalid JSON, it offers several options for handling the request. The default option is “None,” which means that AWS WAF will not take any action and proceed with the request regardless of the invalid JSON.

Another option is to select “Evaluate as plain text.” In this case, AWS WAF will evaluate the tokens it has parsed before encountering the invalid JSON.

By taking advantage of the default behavior, an attacker can intentionally trigger an invalid JSON condition and ensure that AWS WAF does not block or raise any alarms. This allows them to potentially exploit vulnerabilities or inject malicious content into the system undetected.

Let’s take a look at how different web languages handle this scenario.

PHP

In PHP, if a JSON document contains duplicate keys, the json_decode() function, which is used to parse JSON, will handle it by overwriting the earlier occurrence of the key with the later one. For example, in the JSON document {"a":1,"a":2}, the resulting PHP array would be ['a' => 2]. The second occurrence of the key “a” overwrites the initial value of 1, resulting in the final value of 2.

Python

In Python’s JSON module, when using the json.loads() function to parse JSON data that contains duplicate keys, it behaves similar to ‘other JSON parsers. It keeps only the last occurrence of the key-value pair.

For example, json.loads('{"a":1,"a":2}') would indeed produce the dictionary {'a': 2}. The second occurrence of the key “a” overwrites the initial value of 1, resulting in the final value of 2.

Speaking about Flask, when Flask encounters a request with JSON data containing duplicate key names, it follows the standard JSON parsing rules and only retains the last occurrence of the key-value pair. Flask’s request.json object will reflect this behavior and provide access to the JSON data with duplicate keys by keeping only the last occurrence.

For example, if the incoming JSON request body is {"a": 1, "a": 2}, Flask will parse it and the resulting request.json object will contain {"a": 2}. The second occurrence of the key “a” overwrites the initial value of 1, conforming to the JSON specification.

It’s important to note that Flask does not provide any built-in options or flags to modify this default behavior of handling duplicate keys in JSON. If you require different handling of duplicate keys, you would need to implement custom parsing logic (don’t do it) or use external libraries to manipulate the JSON data within your Flask application.

JavaScript

In JavaScript, the JSON.parse() function is used to parse JSON data. When confronted with duplicate keys, the JSON parser will keep only the last occurrence of the key-value pair. For example, {"a":1,"a":2} would result in an object with the key “a” having the value 2.

Why this is a problem?

In many cases, AWS WAF rules are created with the default behavior on the invalid JSON handler. By taking advantage of the default settings, an attacker can bypass a rule by sending the same JSON parameter key name twice, each time including different values, one harmless and one containing an attack payload.

let’s try creating a rule that checks if the string “etc/passwd” is inside any value of the JSON request body.

so, basically here we’re saying “if any value of the JSON request body contains the string etc/passwd then block the request with a 403 status code“.

Now, sending a request with a JSON body that contains a RCE or LFI targeting the etc/passwd file, will results in a block:

Given we selected the default behavior on invalid JSON body handler, we can bypass this block just by sending two “cmd” keys:

Virtual Patching on JSON Body

One of the primary and widely recognized applications of a Web Application Firewall is virtual patching. Virtual patching serves as an effective strategy to address vulnerabilities in web applications without making changes to the underlying codebase.

Let’s consider an example where a web application accepts a JSON parameter called “id” that is vulnerable to SQL injection attacks. Attackers can exploit this vulnerability by injecting malicious SQL code into the “id” parameter, potentially gaining unauthorized access to the application’s database.

To address this vulnerability using virtual patching, a WAF can be configured with a rule specifically designed to restrict the “id” value to only numeric values. This rule acts as a temporary patch, ensuring that any non-numeric input submitted as the “id” parameter is blocked or sanitized before reaching the application’s backend.

Doing so with AWS WAF is a bit tricky. You need to have 2 statements: the first one checks if the “id” parameter length is greater than 0, and the second statement checks if the value of the “id” parameter contains only characters from 0 to 9.

In this first statement we’re saying: “if a request JSON contains the key ‘id’ and the size of the value of this key is greater than 0 then do something…”. Also, as you can see in the screenshot above, we must specify the JSON key to inspect using a JSON Pointer. For example: given this JSON {"foo": {"bar":{"id":1}}} to inspect only the “id” value we should configure the following JSON Pointer /foo/bar/id.

Now, the second statement:

In this statement we’re saying: “if the JSON parameter ‘id’ value does not contains only numeric characters, then block the request with a 403 status code”.

This rule seems works well, as you can see here:

And if I try to inject SQL syntax in the value:

AWS WAF, in its current implementation, does not decode escape sequences inside JSON keys when matching a given JSON Pointer of a rule. This behavior can be exploited to bypass rules that specifically target the value of a parameter, such as the “id” parameter. By replacing any character of the key with a Unicode escape sequence, an attacker can effectively evade the rule and potentially pass malicious content undetected.

So, in our example I can easily bypass my rule by replacing the “i” character of the “id” JSON key with the unicode escape sequence \u0069:

How other WAFs handle this?

ModSecurity is a powerful open-source web application firewall (WAF) module that provides advanced security features and protection for web applications. ModSecurity offers a wide range of security capabilities, including rule-based filtering, HTTP traffic monitoring, real-time logging, and threat intelligence integration.

In this case, ModSecurity is able to decode Unicode escape sequences within JSON keys before matching any rules. Let do an example rule and check if it works as expected.

In the rule above we’re configuring ModSecurity to check if the parameter “id” doesn’t contains only numeric characters in its value. If this is true, then block the request with a 403 response status code.

Even if I try to replace some characters with an unicode escape sequence (as done before), ModSecurity blocks my request:

After this request, ModSecurity writes a log that show me that the “id” paramter has been decoded before executing my rule:

ModSecurity: Access denied with code 403 (phase 2). Match of "rx ^[0-9]+$" against "ARGS:id" required.

Conclusion

AWS WAF is a valuable service that provides protection against a range of web application attacks. However, it’s important to understand its limitations and potential bypass techniques. While AWS WAF provides a convenient and scalable solution for web application protection, considering the specific bypass discussed in this blog post, leveraging ModSecurity can provide an additional layer of defense. 

Based on my experience, when it comes to virtual patching, ModSecurity offers a distinct advantage over AWS WAF. With ModSecurity, virtual patching capabilities are more flexible and powerful, allowing for comprehensive protection against vulnerabilities in web applications. ModSecurity’s extensive rule set and customizable rule engine enable security practitioners to create targeted virtual patches that address specific application vulnerabilities.

Bonus Track: CRS or not CRS

Within AWS WAF, there is a managed rule group called Core rule set (CRS), which may cause some confusion due to its similarity to the well-known OWASP Core Rule Set (CRS) project. However, it’s important to note that the AWS WAF Core Rule Set is distinct from the OWASP CRS in terms of its scope and number of rules.

The AWS WAF “Core rule set” comprises a modest collection of 22 rules specifically designed to address common security threats and vulnerabilities. While this rule set provides a basic level of protection, it is significantly smaller in scale compared to the extensive OWASP CRS, which consists of more than 500 rules grouped into over 10 categories of attacks.

You can find more information about the OWASP Core Rule Set project at the website https://coreruleset.org

Picture of Andrea Menin

Andrea Menin

AppSec BU Manager

Follow

Follow Us

Recent Posts

Don't Be Next

Play Video

Don’t Stop Here

More To Explore

Sign up for our Newsletter

Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit