Skip to content

Manual BOLA Protection

Behavioral attacks such as Broken Object Level Authorization (BOLA) exploit the vulnerability of the same name. This vulnerability allows an attacker to access an object by its identifier via an API request and either read or modify its data, bypassing an authorization mechanism. This article describes BOLA protection measures provided by WAAP's triggers.

Other BOLA protection measures

Alternatively or additionally, you can configure Automatic BOLA protection for endpoints found by API Discovery.

Configuring

By default, Wallarm automatically discovers only vulnerabilities of the BOLA type (also known as IDOR) but does not detect its exploitation attempts. Consider the example below to learn how to configure protection from BOLA attacks.

Let us say your e-commerce wmall-example.com platform for online stores (shops) stores information for each hosted shop under /shops/<PARTICULAR_SHOP>/. You want to prevent malicious actors from getting the list of all hosted shop names. Such list can be obtained via a simple script manipulating the names in the list, replacing <PARTICULAR_SHOP> in the URL. To prevent this, for your shop hosting route, you can limit number of requests per time interval, and set to block IPs exceeding this limit:

  1. Open Wallarm Console → Triggers and open the window for trigger creation.

  2. Select the BOLA condition.

  3. Set the threshold 30 requests from the same IP per 30 seconds.

    Note that these are the example values - when configuring trigger for your own traffic, you should define a threshold considering a legitimate usage statistics.

  4. Set the URI filter as displayed on the screenshot, including:

    • * wildcard in the path meaning "any one component". They will cover all the wmall-example.com/shops/<PARTICULAR_SHOP>/financial_info addresses.

      BOLA trigger

  5. Do not use in this case:

    • The Application filter, but be aware that you can use it to set trigger only to react to the requests targeting domains or specific endpoints of selected applications.
    • The IP filter, but be aware that you can use it to set triggers only to react to specific IPs originating requests.
  6. Select the Denylist IP address - Block for 4 hour trigger reaction. Wallarm will put origin IP to the denylist after the threshold is exceeded and block all further requests from it.

  7. Select the Mark as BOLA trigger reaction. Requests received after exceeding the threshold will be marked as the BOLA attack and displayed in the Attacks section of Wallarm Console. Sometimes, you can use this reaction alone to have information about the attack, but not to block anything.

  8. Save the trigger and wait for the Cloud and node synchronization completion (usually it takes 2-4 minutes).

Testing

Testing in your environment

To test the BOLA trigger in your environment, in the trigger and the requests below, replace the domain with any public one (e.g. example.com).

To test the trigger described in the Configuring section:

  1. Send the number of requests that exceeds the configured threshold to the protected URI. For example, 50 requests with different values of {shop_id} to the endpoint https://wmall-example.com/shops/{shop_id}/financial_info:

    for (( i=0 ; $i<51 ; i++ )) ; do curl https://wmall-example.com/shops/$i/financial_info ; done
    
  2. If the trigger reaction is Denylist IP address, open Wallarm Console → IP listsDenylist and check that the source IP address is blocked.

    If the trigger reaction is Graylist IP address, check the section IP listsGraylist of Wallarm Console.

  3. Open the section Attacks and check that requests are displayed in the list as BOLA attack.

    BOLA attack in the UI

    The number of displayed requests corresponds to the number of requests sent after the trigger threshold was exceeded (more details on detecting behavioral attacks). If this number is higher than 5, request sampling is applied and request details are displayed only for the first 5 hits (more details on requests sampling).

    To search for BOLA attacks, you can use the bola search tag. All filters are described in the instructions on search use.

Requirements and restrictions

Requirements

To protect resources from BOLA attacks, real clients' IP addresses are required. If the filtering node is deployed behind a proxy server or load balancer, configure displaying real clients' IP addresses.

Restrictions

When searching for BOLA attack signs, Wallarm nodes analyze only HTTP requests that do not contain signs of other attack types.