Web Apps and Groups

WAS web applications are managed and grouped on the Scan Settings > Web Apps and Web App Groups pages. From here, you can create web app scanning target configurations and specify their risk weight and authentication methods. Additionally, web app configurations can be grouped to help you organize the web apps in your scanning environment.

Allotted Web Applications

Your account has an allotted number of web app domains available for scanning, as determined during WAS service activation. Only unique domains are counted towards this total. Therefore, you can have multiple web app configurations for a given domain without each configuration counting against your available web applications. This is useful for creating different configurations to meet different scanning needs for a single domain.

View the Number of Allotted Web Apps on Your Account

From the navigation menu, select Account > Service Subscriptions. Then, on the Service Subscriptions page select Web Application Scanning.

You can also view the number of utilized and allotted web apps on the Dashboard when you log in to WAS.

To add additional web applications to your WAS service, contact Fortra Technical Support.

Create or Modify a WAS Configuration

NOTE: Your account has an allotted number of web application domains available for scanning. If you have reached the maximum number of domains, you will still be able to configure additional domains but these new domains will have a not authorized status and will not be scanned. Only unique domains count towards the allotted web apps, allowing you to create multiple web app configurations for a single domain.
  1. From the navigation menu, select Scan Settings > Web Apps.

  2. Perform one of the following:

    1. To modify an existing web app, select a web application's name or the Edit button .
    2. To create a new web app, select + New web app.
  3. Enter or modify the web application settings (if you are deleting an application, select Delete, then Continue):

    1. Setttings

      1. Name: Enter the web application target’s name.

      2. Description (Optional): Enter a description of the web application.
      3. URL: Provide the URL of the web application target.
      4. URL blocklist regexes: (Optional) Exclude URLs from scanning by providing a string literal to be substring matched against page content, comma separated. The URL blocklist functionality can be used to prevent one or more URLs from being crawled / audited. This can be used to help prevent potentially negative impact to a scanned application, help prevent the scanner from accidentally logging itself out during an authenticated scan or getting stuck on some calendar-like functionality. These blocklist regexes are only used for the web application definition where they are defined. Multiple web applications in the same scan can all use different blocklist regexes. Additionally, multiple items can be added to the list, one per line.

        In addition to regular expressions, plain strings can be used such as "logout", "send_mail", "change_password", etc. (without quotes). This will prevent the scanner from hitting URLs such as http://example.com/admin/logout.php or http://example.com/admin/change_password.jsp.

        For more information on Regular Expression Fields, see: What are Regular Expression Fields?

      5. Extra paths: (Optional) Provide a list of directories that should be included in a scan, comma separated.

      6. Enable risk weight: (Optional) Enable to reveal a Weight sliding scale, which lets you weight the web application’s risk to your environment. The higher the weight, the more the web app affects your WAS Security GPA, and vice versa.

        TIP: Be aware that changing a risk weight can adversely affect your Security GPA.
      7. Favorite: (Optional) Enable for easy access when creating a new scan.

      8. Authentication type: If applicable, select the authentication type (basic, digest, header or form) and complete the relevant fields. For more information, see Authentication.

    2. Business Group ACLs
      1. Select Owner Business Group: Select the business group who can edit the scan.
      2. Select Accessor Business Group: Select the business group who should see the scan’s results (this cannot be updated after the scan has been run).
  4. Select Save.
    Your new web application is created and will be available on the targets list when creating a new scan.

Delete a Web Application

  1. From the navigation menu, select Scan Settings > Web Apps.
  2. Select a web application's name or the Edit button .
  3. Select Delete, then Continue.

Create or modify a Web App Group

  1. From the navigation menu, select Scan Settings > Web App Groups.
  2. Do one of the following:
    1. Select a web application group's name or the Edit button .
    2. Select + New web app group to create a new group.
  3. Enter or modify the following sections and associated fields (if you are deleting a web app group, select Delete, then Continue):
    1. General Information
      1. Group name: Enter a name for the group.
      2. Description (Optional): Enter a description of the web application.
      3. Favorite (Optional): Enable for easy access when creating a new scan.
      4. Label when scanned
    2. Member Web Applications
      1. To add a web application to the group, select + next to the web apps name. To remove a web app, select X.
    3. Business Group ACLs
      1. Select Owner Business Group: Select the business group who can edit the scan.
      2. Select Accessor Business Group: Select the business group who should see the scan’s results (this cannot be updated after the scan has been run).
  4. Select Save.
  5. Your new web application group is created and will be available on the targets list when creating a new scan.

Delete a Web Application Group

  1. From the navigation menu, select Scan Settings > Web App Groups.
  2. Select a web application group's name or the Edit button .
  3. Select Delete, then Continue.

Authentication

Only one type of authentication is configurable per web application definition, and only one set of credentials can be used per web application definition. If the same application needs to be scanned using multiple different types of authentication or using different user levels, this can be configured using multiple web application definitions.

If you select Authentication Type - None, the scan will still attempt to find easily guessable credentials, if enabled in Web Apps and Groups.

The most common types of authentication we encounter are Basic or Form based authentication. Additionally, the most reliable forms of authentication to use during scanning are Basic, Digest and Header because they are the simplest.

NOTE:
  • WAS will not support Form or prerecorded authentication if the application does not allow concurrent sessions for the same user.
  • WAS does not support NT Lan Manager (NTLM) authentication or two-factor authentication (2FA).

All authentication types will have a field for a "Success regex" and "Success URL." The success URL needs to be within the scope of the starting URL as defined by the web application definition URL. Additionally, this URL should ideally be a page that is only available after successfully authenticating to the web application. In the case of a single page application where the page content changes after authentication, but the URL is unchanged, checking against an API request or similar would also work.

Using the browser’s dev tools on the Network tab, you can view all the API requests that are made by a web application after logging in. This can give you some additional options to select a URL to use for the success URL.

NOTE: Do not use URLs that contain URL fragments. URL fragments are not sent to the server and are only used by JavaScript in the browser and are not supported for success URLs. You can easily identify a URL fragment because they start with a "#" character, such as the ones Fortra VM uses. If URL fragments are used in the URL to navigate the app, open the browser’s dev tools and look for API requests that are made when navigating, these can be used for the success URL instead of a URL with a fragment.

The "Success regex" will be checked against the response body of a request to the specified "Success URL." Depending on the application, much of what you see in the browser may be the result of JavaScript and will not be present when the scanner tries to use it to match against during the scan. To find the raw data returned in the response body from the web application, the browser’s dev tools can be used again.

On the Network tab, select a request that the browser made and then select the Response tab to view the data you can regex against to determine successful authentication. As mentioned earlier, since this is a "regex" field, a regular expression or string literal can be used and should only match against something present on the page when authentication is successful. Using a regex similar to ".*" will match any content returned and should not be used to determine success.

NOTE: